use mistral-large-latest instead of mistral-medium

This commit is contained in:
nirae
2026-03-18 18:04:35 +01:00
committed by calesthio
parent 7a9c957909
commit 05b63a68af
3 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ export class MistralProvider extends LLMProvider {
super(config);
this.name = 'mistral';
this.apiKey = config.apiKey;
this.model = config.model || 'mistral-medium';
this.model = config.model || 'mistral-large-latest';
}
get isConfigured() { return !!this.apiKey; }