We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b65eaa commit fc252ccCopy full SHA for fc252cc
src/tasks/summarization_subtasks/topics.ts
@@ -127,7 +127,7 @@ Differences of opinion: ${differencesSummary}
127
this.additionalInstructions
128
)
129
);
130
- return summary + getCommentCitations(commonGroundComments);
+ return (await summary) + getCommentCitations(commonGroundComments);
131
}
132
133
/**
@@ -144,6 +144,6 @@ Differences of opinion: ${differencesSummary}
144
145
146
147
- return summary + getCommentCitations(topDisagreeCommentsAcrossGroups);
+ return (await summary) + getCommentCitations(topDisagreeCommentsAcrossGroups);
148
149
0 commit comments