Removed /v1 from the url and tested several models.

This commit is contained in:
Michael Overhorst 2025-02-05 06:51:02 +01:00
parent 2cc0fa906c
commit fd676ef047

View file

@ -21,7 +21,7 @@ export class MistralHandler implements ApiHandler {
constructor(options: ApiHandlerOptions) {
this.options = options
this.client = new Mistral({
serverURL: "https://api.mistral.ai/v1",
serverURL: "https://api.mistral.ai",
apiKey: this.options.mistralApiKey,
})
}