From 2cc0fa906c64329a0721295ee27e1596f13d7a10 Mon Sep 17 00:00:00 2001 From: Michael Overhorst Date: Wed, 5 Feb 2025 06:41:00 +0100 Subject: [PATCH] Updated the mistral url. --- src/api/providers/mistral.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/providers/mistral.ts b/src/api/providers/mistral.ts index c4377f0003..408863ed6f 100644 --- a/src/api/providers/mistral.ts +++ b/src/api/providers/mistral.ts @@ -21,7 +21,7 @@ export class MistralHandler implements ApiHandler { constructor(options: ApiHandlerOptions) { this.options = options this.client = new Mistral({ - serverURL: "https://codestral.mistral.ai", + serverURL: "https://api.mistral.ai/v1", apiKey: this.options.mistralApiKey, }) }