Skip to content

Commit 534b0d8

Browse files
committed
copilot review
1 parent 5244598 commit 534b0d8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/compass-generative-ai/tests/evals/use-cases/aggregate-query.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ export const aggregateQueries: GenAiUsecase[] = [
140140
userInput:
141141
'¿Qué alojamiento tiene el precio más bajo? devolver el número en un campo llamado "precio"',
142142
expectedOutput: `<aggregation>
143-
[{
144-
$project: {_id: 0, precio: "$price"},
145-
$sort: {price: 1},
146-
$limit: 1
147-
}]
143+
[
144+
{$project: {_id: 0, precio: "$price"}},
145+
{$sort: {price: 1}},
146+
{$limit: 1}
147+
]
148148
</aggregation>`,
149149
name: 'aggregate with non-english prompt',
150150
},

0 commit comments

Comments
 (0)