ask_ollama_council
Cross-check a contentious, hard-to-reverse software decision by querying several Ollama Cloud models at once and get one synthesized answer with raw responses included.
Instructions
DIRECTIONAL — the Ollama-only counterpart to ask_council: reserve it for a contentious or hard-to-reverse decision you want several cloud models to cross-check, not for routine questions (default to ask; at most one council call per problem, and check quorum/degraded in the result). Ask several Ollama Cloud models the same SOFTWARE/ENGINEERING question at once, then get back one answer that Fable synthesizes by reconciling all of them (each raw answer is also returned under sources). Pass models as a list of cloud model ids (e.g. ['qwen3-coder:480b-cloud', 'nemotron-3-ultra:cloud','kimi-k2.7-code:cloud']); an 'ollama:' prefix is optional. Omit models to use the server's configured set (ASK_FABLE_OLLAMA_COUNCIL). Reached via a local signed-in ollama daemon by default (no API key needed). Use ask_council instead to mix Ollama models with Fable/MiniMax/GLM/DeepSeek in one council. Same scope as ask: broad and conceptual engineering questions (including brainstorming) are fine; direct offensive-security asks and non-software domain knowledge (biology/medicine refused; neuroscience, cognitive science, AI/ML, and CS are in-scope) are refused.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| models | No | Ollama Cloud model ids (e.g. ['kimi-k2.7-code:cloud', 'gpt-oss:120b-cloud']); an 'ollama:' prefix is optional. Omit to use the server's configured set (ASK_FABLE_OLLAMA_COUNCIL). Requires ASK_FABLE_OLLAMA_API_KEY on the server. | |
| context | No | Optional code snippets, file paths, or structural context (shared by all models). | |
| session | No | Optional coordination key for the cross-agent hub (`session_list` / `session_peek`). Reuse the same key across agents working the same decision so turns group together. Defaults to the tool name (`ask_council` / `ask_chain` / `ask_debate` / …) when omitted. | |
| question | Yes | A specific software/engineering question to ask several Ollama Cloud models; Fable then synthesizes their answers into one. | |
| context_ref | No | Key(s) of context saved with `context_write` to pull in and prepend to `context` — paste a big context ONCE, reference it by key here. Missing keys are reported, not fatal. |