diff --git a/.vscode/settings.json b/.vscode/settings.json index 20fba465..2ba6c5ff 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -80,6 +80,7 @@ "nometa", "numpy", "ollama", + "openaiapi", "opencode", "openrouter", "otiai", diff --git a/internal/plugins/ai/exolab/exolab.go b/internal/plugins/ai/exolab/exolab.go index 5bd02108..b3f4fabc 100644 --- a/internal/plugins/ai/exolab/exolab.go +++ b/internal/plugins/ai/exolab/exolab.go @@ -13,6 +13,7 @@ func NewClient() (ret *Client) { ret = &Client{} ret.Client = openai.NewClientCompatibleNoSetupQuestions("Exolab", ret.configure) + ret.ApiKey = ret.AddSetupQuestion("API Key", false) ret.ApiBaseURL = ret.AddSetupQuestion("API Base URL", true) ret.ApiBaseURL.Value = "http://localhost:52415"