P3-06: Only OpenAI-compatible chat/completions format supported — no Anthropic/Gemini/local #24
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: P3 (Low)
File:
decider/llm.pyProblem
call_llm()hardcodes the OpenAI chat completions API format:This means the decider cannot use:
The config claims multi-provider support, but it only supports OpenAI-clones.
Fix
Add provider-specific request formatters, or use a universal adapter like LiteLLM or the Hermes LLM gateway that normalizes API formats.