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 d9cac62 commit a6cb992Copy full SHA for a6cb992
src/api/providers/mistral.ts
@@ -102,8 +102,8 @@ export class MistralHandler extends BaseProvider implements SingleCompletionHand
102
// Create a modified info object with reduced context window for better performance
103
info = {
104
...info,
105
- contextWindow: 41000,
106
- maxTokens: 41000,
+ contextWindow: 41000 as any, // Use reduced context for better performance
+ maxTokens: 41000 as any, // Match the context window limit
107
}
108
109
0 commit comments