The AI Counsel — API & MCP Skill
Overview
The AI Counsel has two operating modes:
- Council mode — 3-stage multi-LLM deliberation: individual responses → anonymous peer ranking → chairman synthesis
- Advisor mode — Named personas debate a question across configurable rounds, reaching consensus or delivering a structured verdict
Use Council for direct answers, creative prompts, factual questions, and "give me the best response" synthesis. Use Advisor only when the user wants named personas to debate a decision, tradeoff, risk review, prioritization, strategy, ethics, or genuine disagreement. Simple prompts can drift off-topic in Advisor mode because advisor prompts intentionally force positions, rebuttals, consensus scoring, and verdicts.
Transport rule (read first): If The AI Counsel MCP tools are available in your session, call them — do not shell out to curl for the same operation. This skill’s REST sections are the fallback reference when MCP is missing, the SSE session is stale, or you need raw SSE/admin export.
MCP server (v0.13.0): Built-in SSE at http://localhost:8001/mcp/sse (stdio: python -m the_ai_counsel_mcp). Exposes 10 action-based tools (not 25). Verify via GET /api/health → "mcp": {"tools": 10, "sse_url": "..."}.
The server's connect message is minimal by design — it does not list the tools. Use the roster below.
Default base URL (REST fallback only): http://localhost:8001 (override with PORT_BACKEND / LLM_COUNCIL_BIND_PORT)
Remote server: replace with http://<server-ip>:8001
MCP-first routing
When to use MCP (preferred)
Use MCP when your tool list includes any of these 10 tools (server may appear as the-ai-counsel, ai-counsel, or user-the-ai-counsel):
| You want to… | MCP tool | Action(s) | Do not use curl |
|---|---|---|---|
| Check server / providers | providers |
health |
GET /api/health |
| Test an API key | providers |
test |
POST /api/settings/test-provider |
| List models | providers |
list_models |
GET /api/models… |
| Read council config (+ presets) | council_settings |
get |
GET /api/settings |
| Update council members/chairman/mode | council_settings |
update |
PUT /api/settings |
| Council preset CRUD | council_settings |
list_presets, save_preset, delete_preset, set_default_preset |
PUT /api/settings |
| Set search provider / API key | providers |
set_search, set_api_key |
PUT /api/settings |
| Backup / restore / reset config | config_backup |
export, import, reset |
|
| Full deliberation | council_deliberate |
full |
/api/ask or message stream |
| Stage 1 / 2 / 3 only | council_deliberate |
stage1, stage2, stage3 |
|
| One-shot model chat | model_chat |
quick |
POST /api/ask |
| Multi-turn chat with a model | model_chat |
multi_turn |
|
| List / read conversations | conversations |
list, get |
|
| Check active run progress | conversations |
progress |
GET /api/conversations/{id}/progress |
| List / read / edit personas | personas |
list, get, update, reset |
/api/personas |
| Create / delete custom personas | (no MCP action) | (Advisor Setup or REST) | POST /api/personas / DELETE /api/personas/{id} |
| Read advisor defaults (+ presets) | advisor_settings |
get |
GET /api/settings |
| Update advisor defaults | advisor_settings |
update |
PUT /api/settings |
| Advisor preset CRUD | advisor_settings |
list_presets, save_preset, delete_preset, set_default_preset |
PUT /api/settings |
| Run advisor debate | advisor_debate |
(direct params) | debate/stream |
| Run multi-round debate | run_iterative_debate |
(direct params) |
Breaking change (v0.5.2): Legacy 25-tool names (run_deliberation, get_council_config, check_health, etc.) were removed. Always use the 10 tools above with action parameters.
MCP Tool Catalog (10 tools)
| Tool | Actions / usage |
|---|---|
council_deliberate |
stage1, stage2, stage3, full |
model_chat |
quick, multi_turn |
advisor_debate |
Direct params: question, persona_ids (2–4), optional max_rounds, models |
run_iterative_debate |
Direct params: query, optional debate_rounds (1–5), critique_mode (freeform/paragraph/claim), auto_converge (bool), convergence_threshold (1–3), web_search, models |
council_settings |
get, update (members/chairman/temps/mode/prompts/provider toggles/debate config), list_presets, save_preset, delete_preset, set_default_preset |
advisor_settings |
Same preset actions + get, update |
personas |
list, get, update, reset (custom create/delete via UI or REST) |
conversations |
list, get, progress |
providers |
list_models, health, test, set_api_key, set_search |
config_backup |
export, import, reset |
In Claude Code, tools appear as mcp__the-ai-counsel__<name> (server identifier may vary). Full parameters: docs/mcp/TOOLS.md.
Document inputs: council_deliberate, model_chat, advisor_debate, and run_iterative_debate accept optional documents. Pass already extracted text as {name, mime_type, text} or source files as {name, mime_type, data_base64}. Base64 documents are extracted by the backend before model calls; providers receive normalized text context, not raw file bytes.
Agent checklist before running curl:
- Are MCP tools for this server visible in my tool list?
- Is there a row in the table above for this task?
- If yes to both → call the MCP tool. Only use REST if the MCP call fails or the task is in “REST only” below.
When to use REST (fallback)
| Scenario | Why REST, not MCP |
|---|---|
| Cron / CI / non-MCP scripts | No MCP transport |
| MCP errors (connection refused, stale SSE, tool not found) | Fallback per this skill |
| Raw SSE event parsing (custom UIs) | MCP deliberation tools return consolidated results, not per-event SSE |
| Admin export with bearer token | GET /api/settings/export — manual admin action |
| Disconnect all providers | POST /api/settings/disconnect-all-providers — no MCP action yet |
| Credential storage / relay-ai import / OAuth device login | REST only (see Credentials section below) |
See docs/mcp/TOOLS.md for MCP parameters and docs/mcp/EXAMPLES.md for walkthroughs.
Credentials & secrets (v0.11.0)
User guide: docs/CREDENTIALS.md.
Rules for agents:
- Secrets live in the credential store (
data/credentials.jsonor OS keystore servicethe-ai-counsel) — not insettings.json. GET /api/settingsreturns*_api_key_set/*_oauth_connectedonly — never plaintext keys.- Set a key via
PUT /api/settingswith the*_api_keyfield, or MCPproviders→set_api_key. Empty string = Disconnect (clears store + ignores env for that secret until a new key is saved). - Retest with an empty
api_keybody reads the credential store (resolve_api_key) — do not assume keys are still on the Settings model. - relay-ai import copies from Keychain service
relay-aiinto Counsel’s store; it does not share or overwrite therelay-aiservice. Switching Counsel storage to keychain writes servicethe-ai-counselonly. - Disconnect All Providers:
POST /api/settings/disconnect-all-providers(admin/loopback). Clears all secrets + disables provider toggles; keeps council/prompts. - Docker/containers always use file storage — OS keystore is unavailable.
Quick Reference (REST fallback)
Use this table only when MCP tools are unavailable or the operation has no MCP equivalent (see routing above).
| Operation | Method | Endpoint |
|---|---|---|
| Health check | GET | /api/health (includes "mcp": {"tools": 10}) |
| One-shot query (persisted, no prior history) | POST | /api/ask |
| Get settings (council + advisor config) | GET | /api/settings |
| Update settings | PUT | /api/settings |
| List all models | GET | /api/models + /api/models/direct + /api/ollama/tags + /api/custom-endpoint/models |
| List conversations | GET | /api/conversations |
| Create conversation | POST | /api/conversations |
| Get conversation | GET | /api/conversations/{id} |
| Get live run progress | GET | /api/conversations/{id}/progress |
| Extract uploaded documents | POST | /api/documents/extract |
| Extract JSON/base64 documents | POST | /api/documents/extract-json |
| Send message (sync JSON) | POST | /api/conversations/{id}/message |
| Send message (SSE stream) | POST | /api/conversations/{id}/message/stream |
| Run council debate (SSE stream) | POST | /api/conversations/{id}/message/debate |
| Run advisor debate (SSE stream) | POST | /api/conversations/{id}/debate/stream |
| List all personas | GET | /api/personas |
| Create a custom persona | POST | /api/personas |
| Update a persona | PATCH | /api/personas/{id} |
| Reset persona to defaults | DELETE | /api/personas/{id}/override |
| Delete a custom persona | DELETE | /api/personas/{id} |
| Test a provider | POST | /api/settings/test-provider |
| Export settings (backup) | GET | /api/settings/export |
| Import settings (restore) | POST | /api/settings/import |
| Reset settings to defaults | POST | /api/settings/reset |
| Disconnect all providers (keys + OAuth) | POST | /api/settings/disconnect-all-providers |
Model ID prefix format:
openrouter:anthropic/claude-sonnet-4 → Cloud via OpenRouter
ollama:llama3.1:latest → Local Ollama
anthropic:claude-sonnet-4 → Direct Anthropic API
openai:gpt-4.1 → Direct OpenAI API
custom:nvidia/nemotron-3-super-120b → Custom endpoint
groq:llama3-70b-8192 → Groq fast inference
opencode-zen:glm-5.1 → Direct OpenCode Zen (chat/completions only, v1)
opencode-go:kimi-k2.5 → Direct OpenCode Go (chat/completions only, v1; subscription)
xai-oauth:grok-4 → xAI SuperGrok (subscription OAuth)
openai-oauth:gpt-5 → ChatGPT Plus/Pro (subscription OAuth; Codex Responses)
github-copilot:gpt-4.1 → GitHub Copilot (subscription OAuth)
Subscription OAuth (device-code login):
| Action | Method | Path |
|---|---|---|
| Start login | POST | /api/oauth/{provider_id}/start (xai-oauth | openai-oauth | github-copilot) |
| Poll status | GET | /api/oauth/{provider_id}/status?session_id= |
| Disconnect | DELETE | /api/oauth/{provider_id} |
| Credential storage mode | POST | /api/settings/credential-storage body {mode: "file"|"keyring"} |
| Discover relay-ai keys | GET | /api/credentials/import/relay-ai/discover |
| Import relay-ai keys | POST | /api/credentials/import/relay-ai body {ids:[], replace_existing?} |
GET /api/settings exposes *_oauth_connected booleans, credential_storage* fields, and (when Copilot is connected) github_copilot_plan / github_copilot_is_free_plan; secrets are never returned. OS keystore mode is desktop-only (not available in Docker).
Disconnect API keys: PUT /api/settings with an empty string for any *_api_key field clears that secret from the credential store and ignores a matching process env override (e.g. OPENCODE_API_KEY) until a new non-empty key is saved. Applies to OpenRouter, Groq, OpenCode, direct providers, custom endpoint, and search provider keys.
Disconnect all: POST /api/settings/disconnect-all-providers — wipe credential store + OAuth, set disabled_secret_ids for all known secrets, disable all provider toggles. Returns {status, cleared, message, ...settings}.
OpenCode note (v0.8.0): The OpenCode provider only exposes models that route to /v1/chat/completions. GPT Responses, Anthropic Messages, and per-model Gemini are not supported in v1 and are filtered out of /v1/models. A single shared opencode_api_key field covers both products; Go users can also use Zen's free models. Direct Go requests automatically carry the current Counsel conversation ID as x-opencode-session across all turns, stages, and retries, plus the identifying the-ai-counsel/<version> user agent; standalone provider calls generate one fallback session ID per logical query. Use POST /api/settings/test-opencode to validate both products at once.
Choosing the Right Endpoint
| Scenario | Endpoint | Why |
|---|---|---|
| One-shot query, no history needed | POST /api/ask |
Simplest path. One call; the completed run is saved and returns conversation_id. |
| One-shot query with web search | POST /api/ask with web_search: true |
Same simplicity, adds search context. |
| Full deliberation, don't need live progress | POST /api/ask with execution_mode: "full" |
Returns all stages in one JSON response. |
| Multi-turn conversation with follow-ups | POST /api/conversations/{id}/message |
Models see full prior context. JSON response. |
| Multi-turn with live SSE progress | POST /api/conversations/{id}/message/stream |
Real-time stage updates + multi-turn context. |
| Persona-driven debate | POST /api/conversations/{id}/debate/stream |
Named advisors argue across rounds; returns verdict. |
| Multi-round council debate | POST /api/conversations/{id}/message/debate |
Iterative debate with critique modes; streams council debate rounds. |
| Monitor an active run | GET /api/conversations/{id}/progress |
Poll partial results of a run started by another client. |
Key principles:
- Never mutate global config for ad-hoc queries. Use per-request
models/council_models/chairman_modeloverrides instead. - Use optional
documentson/api/ask, conversation message endpoints, council debate, and advisor debate when prompts need file context. - Use conversation endpoints when you need follow-up questions — models automatically receive prior turns as context.
/api/askdoes not load prior history. Each successful call creates a new saved conversation visible in the UI and returns itsconversation_id.- Advisor debates always require a conversation — create one first, then stream the debate to it.
- Use
GET /api/conversations/{id}/progressto check on an active run started by another client (MCP, UI, or another script) — returns{active: false}when no run is in progress.
Provider & model availability
Provider toggles are global:
enabled_providers and direct_provider_toggles (Settings → Council Config) control which providers appear in all model pickers — Council Setup, Advisor Setup, and Settings temperature controls. A provider must be both configured (API key set / Ollama connected) and enabled (toggle on) for its models to appear. By default, providers are enabled when first configured.
REST/MCP agents listing models should call the model list endpoints directly (/api/models, /api/models/direct, /api/ollama/tags, /api/custom-endpoint/models). Availability depends on credentials, not UI toggles.
Cost reporting
All council runs, iterative council debates, advisor debates, /api/ask responses, saved conversation metadata, and MCP deliberation outputs expose cost data:
- Per model call:
usage(normalized token counts) andcost(provider, tokens, USD cost, pricing source, confidence, status). - Per run:
cost_reportwith total USD cost, input/output/total token totals, call totals, known/unknown/estimated/free counts, breakdown by model and stage, and raw call rows.
Token semantics:
input_tokensare prompt/context tokens.output_tokensare visible generated output tokens.reasoning_tokensare preserved insideusageand call rows when providers report them. When providers bill reasoning as output, the estimated output cost includes those reasoning tokens.total_tokensis the provider-reported total when available; otherwise it falls back to input plus output.
Pricing order:
- Provider-reported cost when available. OpenRouter
usage.cost/usage.total_costis treated as known. - Known-free rules report
$0:ollama:*,nvidia:*, OpenRouter models ending in:free, subscription OAuth prefixes (xai-oauth:*,openai-oauth:*,github-copilot:*), the known freeopencode-zen:*models, and custom endpoints whose configuredendpoint_urlcontains the officialopencode.aihost. - OpenCode hardcoded pricing table for paid OpenCode Go and Zen models (
pricing_source: "table:opencode",cost_status: "estimated"). - Catalog estimate from
https://ai-model-pricing.com/api/v1/pricing.json, cached locally indata/model_pricing_cache.json. - Fallback catalog estimate from LiteLLM's
model_prices_and_context_window.json. - If usage is present but pricing cannot be matched, the report preserves token usage and marks cost as unknown.
Environment overrides:
| Variable | Default |
|---|---|
LLM_COUNCIL_PRICING_SOURCE_URL |
https://ai-model-pricing.com/api/v1/pricing.json |
LLM_COUNCIL_LITELLM_PRICING_URL |
https://raw.githubusercontent.com/BerriAI/litellm/main/model_prices_and_context_window.json |
LLM_COUNCIL_PRICING_CACHE_TTL_SECONDS |
86400 |
Custom endpoint note: custom OpenAI-compatible endpoints do not have a universal billing API. OpenCode Zen and OpenCode Go are first-class direct providers (opencode-zen: and opencode-go: prefixes) with their own pricing table in costs.py — see "OpenCode note" above. Other custom endpoints use catalog estimates only when the upstream model ID can be matched, otherwise cost is unknown.
Document uploads and extraction
Document inputs are converted to plain text before model calls so they work consistently across OpenRouter, Ollama, Groq, direct providers, custom endpoints, REST, MCP, and the UI.
Supported v1 formats:
- PDFs
- Text-like files:
.txt,.md,.csv,.json,.yaml,.xml,.html - Logs, source code, and common config files
REST endpoints:
POST /api/documents/extractaccepts multipart uploads from the UI and returns extracted document payloads plus warnings.POST /api/documents/extract-jsonaccepts JSON documents withdata_base64and returns extracted document payloads plus warnings.
Request bodies that accept documents:
POST /api/askPOST /api/conversations/{id}/messagePOST /api/conversations/{id}/message/streamPOST /api/conversations/{id}/message/debatePOST /api/conversations/{id}/debate/stream
Document payload shape:
{
"name": "notes.txt",
"mime_type": "text/plain",
"text": "Meeting notes..."
}
For source files over MCP/JSON, use data_base64 instead of text; the MCP client extracts those files through /api/documents/extract-json before starting the model run.
Conversation history stores attachment metadata only: file name, MIME type, byte size, extracted character count, page count when available, and warnings. It does not store raw file bytes or extracted text.
PDF handling:
- Embedded text extraction uses
pdfplumber. - OCR is optional. Set
LLM_COUNCIL_OCR_ENABLED=1and install OCRmyPDF, Tesseract, Ghostscript, and qpdf in the backend runtime. - If OCR is disabled or unavailable, extraction continues with embedded text and warnings.
Examples (REST fallback)
1. One-Shot Query (scripts / REST-only environments)
The simplest way to query a model. Each successful call creates a new
conversation visible in the UI and returns its conversation_id; no prior
conversation history is loaded.
curl -X POST http://localhost:8001/api/ask \
-H "Content-Type: application/json" \
-d '{
"content": "What is the capital of France?",
"models": ["custom:moonshotai/kimi-k2.6"],
"execution_mode": "chat_only"
}'
# → {"conversation_id": "...", "response": "The capital of France is Paris.", "model": "custom:moonshotai/kimi-k2.6", "error": null}
import httpx
async def ask(query, model, web_search=False, base_url="http://localhost:8001"):
async with httpx.AsyncClient(timeout=120) as client:
r = await client.post(f"{base_url}/api/ask", json={
"content": query,
"models": [model],
"web_search": web_search,
"execution_mode": "chat_only",
})
return r.json()["response"]
# Usage:
# answer = await ask("Explain quantum tunneling", "openai:gpt-4.1")
Request body:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
content |
string | Yes | — | The question/prompt |
models |
array of strings | No | Global council config | 1+ model IDs to query |
chairman_model |
string | No | Global chairman config | Override chairman for full mode |
web_search |
boolean | No | false |
Enable web search context |
execution_mode |
string | No | "chat_only" |
chat_only, chat_ranking, or full |
documents |
array | No | [] |
Extracted document payloads from /api/documents/extract or /api/documents/extract-json |
Response shapes by mode:
chat_only+ 1 model:{"conversation_id": "...", "response": "...", "model": "...", "error": null, "usage": {...}, "cost": {...}, "cost_report": {...}}chat_only+ N models:{"conversation_id": "...", "responses": [{model, response, error, usage, cost}, ...], "cost_report": {...}}chat_ranking:{"conversation_id": "...", "responses": [...], "rankings": [...], "aggregate_rankings": [...], "label_to_model": {...}, "cost_report": {...}}full:{"conversation_id": "...", "response": "...", "chairman_model": "...", "responses": [...], "rankings": [...], "aggregate_rankings": [...], "label_to_model": {...}, "cost_report": {...}}
conversation_id identifies the saved UI conversation. cost_report is always
in USD. It summarizes total_cost, input_tokens, output_tokens,
total_tokens, total_calls, known_cost_calls, unknown_cost_calls,
estimated_calls, free_calls, by_model, by_stage, and raw calls.
2. One-Shot with Multiple Models
curl -X POST http://localhost:8001/api/ask \
-H "Content-Type: application/json" \
-d '{
"content": "Compare REST vs GraphQL",
"models": ["openai:gpt-4.1", "anthropic:claude-sonnet-4", "custom:moonshotai/kimi-k2.6"],
"execution_mode": "chat_only"
}'
# → {"responses": [{model, response, error}, {model, response, error}, ...]}
3. One-Shot Full Deliberation
async def deliberate(query, models, base_url="http://localhost:8001"):
async with httpx.AsyncClient(timeout=300) as client:
r = await client.post(f"{base_url}/api/ask", json={
"content": query,
"models": models,
"execution_mode": "full",
"web_search": True,
})
data = r.json()
return data["response"] # Chairman's synthesized answer
No conversation setup. No config mutation. One call; use the returned
conversation_id to inspect the saved run.
4. Streaming with Per-Request Overrides (REST-only — live SSE progress)
When you need SSE events for real-time progress (stage1_progress, stage2_progress, etc.), use the streaming endpoint with per-request model overrides:
import asyncio, httpx, json
async def stream_deliberation(query, models, chairman=None, web_search=False, base_url="http://localhost:8001"):
async with httpx.AsyncClient(timeout=300) as client:
# Create conversation (only needed for stream endpoint)
conv = (await client.post(f"{base_url}/api/conversations", json={})).json()
conv_id = conv["id"]
# Stream with per-request overrides — global config untouched
payload = {
"content": query,
"web_search": web_search,
"execution_mode": "full",
"council_models": models, # per-request override
"chairman_model": chairman, # per-request override
}
stage3 = {}
async with client.stream("POST", f"{base_url}/api/conversations/{conv_id}/message/stream", json=payload) as resp:
async for line in resp.aiter_lines():
if not line.startswith("data: "):
continue
event = json.loads(line[6:])
t = event.get("type")
if t == "stage3_complete":
stage3 = event["data"]
return stage3.get("response")
Per-request override fields (available on both /message and /message/stream):
| Field | Type | Description |
|---|---|---|
council_models |
array of strings | Override which models run in Stage 1+2 |
chairman_model |
string | Override which model runs Stage 3 synthesis |
These fields are optional. If omitted, the global config is used. They never mutate settings.
5. Multi-Turn Conversations (Follow-Up Questions)
Conversation endpoints automatically pass prior turns as context to the models. The models see the full chat history, so follow-up questions work naturally.
import httpx
async def multi_turn_chat(base_url="http://localhost:8001"):
async with httpx.AsyncClient(timeout=120) as client:
# Create conversation once
conv = (await client.post(f"{base_url}/api/conversations", json={})).json()
conv_id = conv["id"]
# First question
r1 = await client.post(f"{base_url}/api/conversations/{conv_id}/message", json={
"content": "What is a monad in functional programming?",
"execution_mode": "chat_only",
"council_models": ["openai:gpt-4.1"],
})
print("A1:", r1.json()["stage1"][0]["response"])
# Follow-up — the model remembers the previous exchange
r2 = await client.post(f"{base_url}/api/conversations/{conv_id}/message", json={
"content": "Can you give me a concrete example in Python?",
"execution_mode": "chat_only",
"council_models": ["openai:gpt-4.1"],
})
print("A2:", r2.json()["stage1"][0]["response"])
# Third turn — full context of turns 1+2 is available
r3 = await client.post(f"{base_url}/api/conversations/{conv_id}/message", json={
"content": "How does this compare to Rust's Result type?",
"execution_mode": "chat_only",
"council_models": ["openai:gpt-4.1"],
})
print("A3:", r3.json()["stage1"][0]["response"])
How context works:
- Each message sent to a conversation endpoint includes all prior user/assistant turns as chat history
- For assistant context, the system uses the chairman synthesis (stage3) when available, otherwise the first successful model response from stage1
/api/askcreates a new saved conversation per call but has no multi-turn memory (use conversation message endpoints for follow-ups)- You can reuse the same
conversation_idacross sessions — history is persisted to disk
When to use multi-turn vs one-shot:
| Scenario | Endpoint | Multi-turn? |
|---|---|---|
| Independent questions, no follow-up needed | POST /api/ask |
No |
| Research session with follow-ups | POST /api/conversations/{id}/message |
Yes |
| Interactive exploration with live progress | POST /api/conversations/{id}/message/stream |
Yes |
6. Sync Conversation Endpoint (JSON, saves to history)
For when you want conversation history but don't need SSE streaming:
# Create conversation first
CONV_ID=$(curl -s -X POST http://localhost:8001/api/conversations -H "Content-Type: application/json" -d '{}' | python3 -c "import sys,json; print(json.load(sys.stdin)['id'])")
# Send message (returns JSON, saves to conversation)
curl -X POST "http://localhost:8001/api/conversations/$CONV_ID/message" \
-H "Content-Type: application/json" \
-d '{
"content": "Explain monads in simple terms",
"execution_mode": "chat_only",
"council_models": ["openai:gpt-4.1"]
}'
Response includes all stages that were executed:
{
"stage1": [{"model": "openai:gpt-4.1", "response": "...", "error": null, "usage": {...}, "cost": {...}}],
"stage2": null,
"stage3": null,
"aggregate_rankings": null,
"label_to_model": null,
"cost_report": {...}
}
7. Health Check
curl http://localhost:8001/api/health
# → {"status": "ok", "service": "LLM Council API"}
8. Get Current Council Configuration
curl http://localhost:8001/api/settings | python3 -m json.tool
Key fields returned:
council_models— list of model IDs in the councilchairman_model— model that synthesizes the final answerexecution_mode—"full"/"chat_ranking"/"chat_only"(persisted; omitted from some GET responses — use export for full blob)search_provider— active search providerenabled_providers— global provider toggles (openrouter,ollama,groq,direct,custom) — apply to all model pickers (Council, Advisors, Settings)direct_provider_toggles— per-direct-provider toggles (also global)date_format— display date format ("auto","MM/DD/YYYY","DD/MM/YYYY","YYYY-MM-DD")font_size— global UI text scale ("default"= 110%,"large"= 150%); applies to existing and future chatsresponse_language— language for council/advisor model responses (default"English")valid_response_languages— read-only list of allowedresponse_languagevalues (canonical source:VALID_RESPONSE_LANGUAGESinbackend/prompts.py)response_language_default— default language string ("English")advisor_presets— saved advisor lineups (see §18)council_presets— saved council lineups (members + chairman; see §18b)*_api_key_set— boolean flags (never returns actual keys)custom_endpoint_name/custom_endpoint_url— custom provider details
9. Update Global Council Configuration
curl -X PUT http://localhost:8001/api/settings \
-H "Content-Type: application/json" \
-d '{
"council_models": ["custom:z-ai/glm-5.1", "ollama:granite4.1:8b", "custom:moonshotai/kimi-k2.6"],
"chairman_model": "custom:nvidia/nemotron-3-super-120b-a12b",
"execution_mode": "full"
}'
All fields are optional — only provided fields are updated. Requires minimum 1 model.
Valid execution_mode values:
"full"— all 3 stages (individual → peer review → chairman synthesis)"chat_ranking"— stages 1+2 (no chairman synthesis)"chat_only"— stage 1 only (fastest, individual responses)
Accessibility display preference: font_size accepts default or large and can be updated through PUT /api/settings. The setting is global to the UI and does not alter conversation data.
Temperature fields:
| Field | Default | Description |
|---|---|---|
council_temperature |
0.5 |
Stage 1 creativity (higher = more varied individual responses) |
chairman_temperature |
0.4 |
Stage 3 synthesis creativity |
stage2_temperature |
0.3 |
Stage 2 ranking consistency (lower = more deterministic) |
Provider note: some models only accept their default temperature. The backend omits temperature automatically for known restricted models so preflight and calls do not fail on provider-specific temperature validation.
10. Configure System Prompts, Search Tuning, and Provider Toggles
curl -X PUT http://localhost:8001/api/settings \
-H "Content-Type: application/json" \
-d '{
"stage1_prompt": "You are an expert analyst. Answer with evidence and cite sources.",
"stage2_prompt": "Rank the responses below by accuracy and depth.",
"stage3_prompt": "Synthesize the best elements from all responses into a definitive answer.",
"enabled_providers": {"openrouter": true, "ollama": false, "groq": true, "direct": false},
"direct_provider_toggles": {"openai": true, "anthropic": true, "google": false, "nvidia": true}
}'
Editable system prompt fields:
| Field | Description |
|---|---|
stage1_prompt |
System prompt for Stage 1 individual model responses |
stage2_prompt |
System prompt for Stage 2 peer ranking |
stage3_prompt |
System prompt for Stage 3 chairman synthesis |
stage4_prompt |
System prompt for Stage 4 corrected draft (multi-round debate only) |
title_prompt |
Prompt used to generate conversation titles |
query_prompt |
Prompt used to reformulate user query for web search (LLM mode) |
Search tuning fields:
| Field | Default | Description |
|---|---|---|
search_result_count |
8 |
Number of web search results to retrieve (5–15) |
search_hybrid_mode |
true |
DuckDuckGo: combine web + news results for better current-events coverage |
full_content_results |
3 |
How many top results to fetch full article text via Jina Reader (0 = disabled) |
enabled_providers keys: openrouter, ollama, groq, direct (master toggle for all direct), custom
Note: These toggles are global — they filter model lists in all pickers (Council Setup, Advisor Setup, and Settings).
direct_provider_toggles keys: openai, anthropic, google, mistral, deepseek, groq, nvidia, opencode-zen, opencode-go
11. Set API Keys
curl -X PUT http://localhost:8001/api/settings \
-H "Content-Type: application/json" \
-d '{"openrouter_api_key": "sk-or-...", "openai_api_key": "sk-..."}'
| Provider | Field name |
|---|---|
| OpenRouter | openrouter_api_key |
| OpenAI | openai_api_key |
| Anthropic | anthropic_api_key |
google_api_key |
|
| Mistral | mistral_api_key |
| DeepSeek | deepseek_api_key |
| Groq | groq_api_key |
| Nvidia | nvidia_api_key |
| OpenCode (Zen + Go) | opencode_api_key |
| TinyFish | tinyfish_api_key |
| Tavily | tavily_api_key |
| Brave | brave_api_key |
| Serper | serper_api_key |
Note: GET /api/settings returns *_api_key_set booleans for security — it never returns plaintext keys. GET /api/settings/export does return plaintext keys but is admin-gated: it only accepts requests from loopback, or from callers presenting Authorization: Bearer $LLM_COUNCIL_ADMIN_TOKEN when that env var is set. Do not invoke /api/settings/export automatically on behalf of a user; treat it as a manual administrative action.
Security/admin environment variables:
| Variable | Default | Purpose |
|---|---|---|
LLM_COUNCIL_ADMIN_TOKEN |
unset | Enables remote access to settings export/import/reset when callers send Authorization: Bearer <token>. If unset, these admin endpoints accept only direct loopback clients and reject proxied external clients. |
LLM_COUNCIL_BIND_HOST |
127.0.0.1 |
Local dev launcher bind host for python -m backend.main. Set to 0.0.0.0 for intentional LAN access. |
LLM_COUNCIL_BIND_PORT |
8001 |
Legacy override for PORT_BACKEND; takes precedence when set. |
PORT_BACKEND |
8001 |
Backend / MCP SSE listen port. Also used by Vite in local dev as the API port. |
PORT_FRONTEND |
5173 |
Vite dev/preview server port. Not used by the Docker image, which serves the built UI from the backend port. |
12. List All Available Models
import asyncio, httpx
async def list_all_models(base_url="http://localhost:8001"):
async with httpx.AsyncClient(timeout=30) as client:
results = []
for endpoint in ["/api/models", "/api/models/direct",
"/api/ollama/tags", "/api/custom-endpoint/models"]:
try:
r = await client.get(f"{base_url}{endpoint}")
if r.status_code == 200:
results.extend(r.json().get("models", []))
except Exception:
pass
return results
models = asyncio.run(list_all_models())
for m in models[:10]:
print(m.get("id"), "—", m.get("name"))
12b. List Conversations (index metadata)
GET /api/conversations returns lightweight index entries (not full message bodies):
[
{
"id": "uuid",
"created_at": "2026-06-03T19:41:00+00:00",
"title": "Remote-First vs Hybrid Policy",
"mode": "council",
"message_count": 2,
"run_summary": "2 rnd · Paragraph · Auto-converge · Search",
"total_cost": 0.0042,
"cost_status": "known",
"total_calls": 12
}
]
run_summaryis optional — present only after the conversation has a real title (not"New Conversation") and the latest assistant message has derivable metadata.total_cost,cost_status(known|estimated|partial|free), andtotal_callsare optional — cumulative across all assistant messages withmetadata.cost_report.- Existing conversations backfill on next save or after
rebuild_index().
13. Retrieve a Past Conversation
async def get_conversation(conv_id, base_url="http://localhost:8001"):
async with httpx.AsyncClient() as client:
conv = (await client.get(f"{base_url}/api/conversations/{conv_id}")).json()
for msg in conv.get("messages", []):
if msg["role"] == "user":
print("Q:", msg["content"])
elif msg["role"] == "assistant":
s3 = msg.get("stage3", {})
if s3:
print("A (chairman):", s3.get("response", "")[:500])
return conv
13b. Check Live Progress of an Active Run
Poll this endpoint to observe an in-progress council deliberation or multi-round debate from another client. Returns partial stage results as they stream.
curl http://localhost:8001/api/conversations/$CONV_ID/progress | python3 -m json.tool
Response when a run is active:
{
"active": true,
"stage": "stage1",
"execution_mode": "full",
"progress": {
"stage1": {"count": 2, "total": 4},
"stage2": {"count": 0, "total": 0}
},
"stage1": [
{"model": "openai:gpt-4.1", "response": "...", "error": null},
{"model": "anthropic:claude-sonnet-4", "response": "...", "error": null}
],
"stage2": null,
"stage3": null,
"stage4": null
}
Response when no run is active:
{"active": false}
import asyncio, httpx
async def poll_progress(conv_id: str, base_url="http://localhost:8001"):
async with httpx.AsyncClient() as client:
while True:
r = await client.get(f"{base_url}/api/conversations/{conv_id}/progress")
data = r.json()
if not data.get("active"):
print("Run complete or no active run.")
break
s1 = data["progress"]["stage1"]
print(f"Stage: {data['stage']} — {s1['count']}/{s1['total']} models done")
await asyncio.sleep(2)
Use cases:
- Frontend auto-reconnects to in-progress runs when navigating back to a conversation
- MCP agents or scripts can monitor a deliberation started elsewhere
- Dashboard / status views that show active council activity
14. List and Inspect Personas
# List the 12 built-in personas plus any custom personas
curl http://localhost:8001/api/personas | python3 -m json.tool
# Each persona has: id, name, r
…(truncated)