Feature Request: OpenAI-compatible base_url support (Cerebras, Groq, Ollama, LMStudio) #92
tailorgunjan93
started this conversation in
General
Replies: 1 comment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Feature Request: OpenAI-compatible
base_urlconfigProblem
Currently git-lrc only supports 5 hardcoded AI providers (Gemini, OpenAI, Claude, DeepSeek, OpenRouter).
Many popular providers — Cerebras, Groq, Ollama, LMStudio, Together AI — all expose an
OpenAI-compatible API but cannot be used today.
Proposed Solution
Add an
openai_compatconnector type with a configurablebase_urlandmodelfield:Since the existing OpenAI connector already handles auth + chat completions,
this would reuse that code with just the base URL swapped out.
Why This Matters
Implementation Hint
In the OpenAI connector, replace the hardcoded base URL:
This is a low-effort, high-impact change.
All reactions