fed8b2eed7
Backend release / release (push) Waiting to run
Bandit Security Scan / bandit_scan (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / manifest (push) Blocked by required conditions
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / manifest (push) Blocked by required conditions
Python linting / ruff (push) Waiting to run
Run python tests with pytest / Run tests and count coverage (3.12) (push) Waiting to run
React Widget Build / build (push) Waiting to run
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
# EXAMPLE — copy this file to ../mistral.yaml (or to your
|
|
# MODELS_CONFIG_DIR) and set MISTRAL_API_KEY in your environment.
|
|
#
|
|
# This is the entire integration. No Python required: the
|
|
# `openai_compatible` plugin reads `api_key_env` and `base_url` from
|
|
# the file and routes calls through the OpenAI wire format.
|
|
#
|
|
# Files in this `examples/` directory are NOT loaded by the registry
|
|
# (the loader globs *.yaml at the top level only).
|
|
|
|
provider: openai_compatible
|
|
display_provider: mistral # shown in /api/models response
|
|
api_key_env: MISTRAL_API_KEY # env var the plugin reads
|
|
base_url: https://api.mistral.ai/v1 # OpenAI-compatible endpoint
|
|
|
|
defaults:
|
|
supports_tools: true
|
|
context_window: 128000
|
|
|
|
models:
|
|
- id: mistral-large-latest
|
|
display_name: Mistral Large
|
|
description: Top-tier reasoning model
|
|
|
|
- id: mistral-small-latest
|
|
display_name: Mistral Small
|
|
description: Fast, cost-efficient
|
|
|
|
- id: codestral-latest
|
|
display_name: Codestral
|
|
description: Code-specialized model
|