configure_ollama_council
Save your chosen Ollama Cloud council models and optional default model to ask-fable's config file to keep them across sessions.
Instructions
Save the user's chosen Ollama Cloud council so it sticks across sessions (written to ask_fable's config file, which overrides the ASK_FABLE_OLLAMA_* env defaults). Pass models as the list of cloud model ids to use for ask_ollama_council and the full tier (e.g. ['minimax-m3:cloud', 'glm-5.2:cloud', 'qwen3-coder:480b-cloud']; an 'ollama:' prefix is optional and a bare name like 'minimax-m3' is normalized to 'minimax-m3:cloud'). Optionally set default_model for the single-model ask_ollama tool. Confirm the selection with the user first — call list_ollama_models to ground it in what's actually available. Returns the saved config and its file path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| models | No | Ollama Cloud model ids for the council (e.g. ['minimax-m3:cloud','glm-5.2:cloud','qwen3-coder:480b-cloud']). An 'ollama:' prefix is optional; a bare name like 'minimax-m3' is normalized to 'minimax-m3:cloud'. This becomes ask_ollama_council's default and the `full` tier's Ollama members, persisted across sessions. | |
| default_model | No | Optional: the single model `ask_ollama` uses when none is passed (e.g. 'gpt-oss:120b-cloud'). |