From d5bde52de4855f94baba5cd92dc03ae78ac055e5 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Fri, 6 Sep 2024 14:08:11 -0700 Subject: [PATCH] docs: fix api_endpoint for chat config in mistral.md --- website/docs/references/models-http-api/mistral-ai.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/references/models-http-api/mistral-ai.md b/website/docs/references/models-http-api/mistral-ai.md index a9031932de0a..d20a9febdb83 100644 --- a/website/docs/references/models-http-api/mistral-ai.md +++ b/website/docs/references/models-http-api/mistral-ai.md @@ -8,12 +8,14 @@ To connect Tabby with Mistral's models, you need to apply the following configur # Completion Model [model.completion.http] kind = "mistral/completion" +model_name = "codestral-latest" api_endpoint = "https://api.mistral.ai" api_key = "secret-api-key" # Chat Model [model.chat.http] kind = "mistral/chat" -api_endpoint = "https://api.mistral.ai" +model_name = "codestral-latest" +api_endpoint = "https://api.mistral.ai/v1" api_key = "secret-api-key" ```