mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 11:09:18 +02:00
10 lines
552 B
Markdown
10 lines
552 B
Markdown
# TODO
|
|
|
|
- [x] Investigate Mistral API 404 error
|
|
- [x] Fix Mistral provider configuration (changed api to "mistral-conversations" and baseUrl to "https://api.mistral.ai")
|
|
|
|
## Issue Resolution
|
|
The Mistral provider had two configuration errors:
|
|
1. Used deprecated `api: "openai-completions"` instead of `api: "mistral-conversations"`
|
|
2. Incorrect baseUrl with `/v1` suffix. The Mistral SDK's `serverURL` expects the base URL without path suffixes - it appends the API paths internally. Changed from `https://api.mistral.ai/v1` to `https://api.mistral.ai`
|