ollama - 💡(How to fix) Fix Add Mistral Vibe to ollama launch [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
ollama/ollama#14640Fetched 2026-04-08 00:33:25
View on GitHub
Comments
0
Participants
1
Timeline
3
Reactions
4
Participants
Assignees
Timeline (top)
assigned ×1labeled ×1marked_as_duplicate ×1
RAW_BUFFERClick to expand / collapse

It would be very nice to have and its very easy to do do you need to edit ~/.vibe/config.toml line 1 is active_model = "devstral-2" so you can set the model you want to start with for ollama launch then you need to add a provider:

[[providers]] name = "ollama" api_base = "http://localhost:11434/v1" api_key_env_var = "" api_style = "openai" backend = "generic"

The last step is to just add the model:

[[models]] name = "glm-4.7-flash:latest" provider = "ollama" alias = "GLM-4.7-Flash" temperature = 0.2 input_price = 0.0 output_price = 0.0

extent analysis

Fix Plan

To configure the Vibe model and provider, follow these steps:

  • Edit the ~/.vibe/config.toml file to set the active model.
  • Add a provider configuration for Ollama.
  • Add the desired model configuration.

Configuration Steps

  1. Set the active model: Update the first line of ~/.vibe/config.toml to:

active_model = "devstral-2"

2. **Add the Ollama provider**: Append the following configuration to `~/.vibe/config.toml`:
   ```toml
[[providers]]
name = "ollama"
api_base = "http://localhost:11434/v1"
api_key_env_var = ""
api_style = "openai"
backend = "generic"
  1. Add the model configuration: Append the following configuration to ~/.vibe/config.toml:

[[models]] name = "glm-4.7-flash:latest" provider = "ollama" alias = "GLM-4.7-Flash" temperature = 0.2 input_price = 0.0 output_price = 0.0


### Verification
After updating the configuration file, restart the Vibe service and verify that the new model is active and functional. You can check the Vibe logs or UI to confirm the changes. 

### Extra Tips
* Ensure the Ollama API is running and accessible at `http://localhost:11434/v1`.
* Update the `api_key_env_var` field if you need to authenticate with the Ollama API.
* You can add more models and providers as needed by following the same configuration pattern.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

ollama - 💡(How to fix) Fix Add Mistral Vibe to ollama launch [1 participants]