Skip to content

Commit 160e3fb

Browse files
alyssachvastacopybara-github
authored andcommitted
Change default summarization method to aggregation
GitOrigin-RevId: d9d46788fd28de909e206146b478328374e62528
1 parent f4bd380 commit 160e3fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runner-cli/runner_utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export async function getSummary(
9393
// requirements (like requiring votes) would also need updated.
9494
return await sensemaker.summarize(
9595
comments,
96-
SummarizationType.GROUP_INFORMED_CONSENSUS,
96+
SummarizationType.AGGREGATE_VOTE,
9797
topics,
9898
additionalContext
9999
);

src/sensemaker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class Sensemaker {
9292
*/
9393
public async summarize(
9494
comments: Comment[],
95-
summarizationType: SummarizationType = SummarizationType.GROUP_INFORMED_CONSENSUS,
95+
summarizationType: SummarizationType = SummarizationType.AGGREGATE_VOTE,
9696
topics?: Topic[],
9797
additionalContext?: string
9898
): Promise<Summary> {

0 commit comments

Comments
 (0)