Skip to main content

mistral-vibe

Mistral AI released the Devstral 2 series and a CLI coding agent tool called mistral-vibe.

With uv installed, you can run mistral-vibe without installing the package.

uvx --from mistral-vibe vibe

You can add custom LLM providers and models by manually editing the config file: .vibe/config.toml.

To add a new provider:

[[providers]]
name = "lmstudio"
api_base = "http://127.0.0.1:1234/v1"
api_key_env_var = ""
api_style = "openai"
backend = "generic"

To add a new model:

[[models]]
name = "qwen3-coder-30b"
provider = "lmstudio"
alias = "local"
temperature = 0.7
input_price = 0.0
output_price = 0.0