diff --git a/.config/doom/config.el b/.config/doom/config.el index 995d2c6e..8afb801d 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -492,7 +492,7 @@ Now, write the commit message in this exact format: (setenv "ANTHROPIC_API_KEY" anthropic-key) (setenv "OPENAI_API_KEY" openai-key) (setenv "GEMINI_API_KEY" gemini-key) - (setenv "OLLAMA_API_BASE" "https://ollama.rogs.casa") + (setenv "OLLAMA_API_BASE" ollama-api-base) ;; General settings (setq aidermacs-use-architect-mode t) diff --git a/.config/doom/config.org b/.config/doom/config.org index c5629f1f..1bece679 100644 --- a/.config/doom/config.org +++ b/.config/doom/config.org @@ -872,7 +872,7 @@ Now, write the commit message in this exact format: (setenv "ANTHROPIC_API_KEY" anthropic-key) (setenv "OPENAI_API_KEY" openai-key) (setenv "GEMINI_API_KEY" gemini-key) - (setenv "OLLAMA_API_BASE" "https://ollama.rogs.casa") + (setenv "OLLAMA_API_BASE" ollama-api-base) ;; General settings (setq aidermacs-use-architect-mode t) diff --git a/.config/doom/custom-packages/private.el.example b/.config/doom/custom-packages/private.el.example index 9e812d14..85c4e09f 100644 --- a/.config/doom/custom-packages/private.el.example +++ b/.config/doom/custom-packages/private.el.example @@ -3,5 +3,6 @@ (defvar openai-key "a-big-openai-key") (defvar anthropic-key "a-big-anthropic-key") (defvar gemini-key "a-big-gemini-key") +(defvar ollama-api-base "my-ollama-api") (provide 'private)