Multi-provider AI support: OpenAI, Anthropic, and Ollama (local) #80
singret
announced in
Announcements
Replies: 0 comments
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.
What changed
Regen now supports three AI providers out of the box. You can switch between them from Settings → System → AI Provider — no restart required.
Switching providers
In the UI → Settings → System → AI Provider dropdown. Each provider shows only the fields it needs (key, model name, or base URL).
Via environment variables:
Existing deployments with
OPENAI_API_KEYset continue to work without any changes —AI_PROVIDERdefaults toopenai.Running fully local with Ollama
Add to your
docker-compose.yml:Pull the model once:
docker exec <ollama-container> ollama pull llama3.1:8bRecommended models:
llama3.1:8b(minimum),llama3.1:70b(best quality).See the README for the full Ollama setup guide.
All reactions