We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5244598 commit 534b0d8Copy full SHA for 534b0d8
packages/compass-generative-ai/tests/evals/use-cases/aggregate-query.ts
@@ -140,11 +140,11 @@ export const aggregateQueries: GenAiUsecase[] = [
140
userInput:
141
'¿Qué alojamiento tiene el precio más bajo? devolver el número en un campo llamado "precio"',
142
expectedOutput: `<aggregation>
143
- [{
144
- $project: {_id: 0, precio: "$price"},
145
- $sort: {price: 1},
146
- $limit: 1
147
- }]
+ [
+ {$project: {_id: 0, precio: "$price"}},
+ {$sort: {price: 1}},
+ {$limit: 1}
+ ]
148
</aggregation>`,
149
name: 'aggregate with non-english prompt',
150
},
0 commit comments