From c1bf1642cf996f16ade56103b0cb17b3244bb223 Mon Sep 17 00:00:00 2001 From: lc6464 <64722907+lc6464@users.noreply.github.com> Date: Wed, 1 Apr 2026 23:33:03 +0800 Subject: [PATCH] feat(config): add Venice API base URL and local LM Studio configuration --- pkg/config/defaults.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/config/defaults.go b/pkg/config/defaults.go index 4dbfc7e0a..8857040fd 100644 --- a/pkg/config/defaults.go +++ b/pkg/config/defaults.go @@ -189,6 +189,7 @@ func DefaultConfig() *Config { { ModelName: "venice-uncensored", Model: "venice/venice-uncensored", + APIBase: "https://api.venice.ai/v1", }, // Google Gemini - https://ai.google.dev/ @@ -341,6 +342,13 @@ func DefaultConfig() *Config { APIBase: "http://localhost:8000/v1", }, + // LM Studio (local) - http://localhost:1234 + { + ModelName: "lmstudio-local", + Model: "lmstudio/openai/gpt-oss-20b", + APIBase: "http://localhost:1234/v1", + }, + // Azure OpenAI - https://portal.azure.com // model_name is a user-friendly alias; the model field's path after "azure/" is your deployment name {