From aef714d6c70a6dd3cf387a1da80b32490835e85c Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sun, 26 Jul 2026 22:59:11 +0000 Subject: [PATCH] chore: stop tracking local LLM credentials --- config/llm_settings.example.json | 21 +++++++++++++++++++++ config/llm_settings.json | 21 --------------------- 2 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 config/llm_settings.example.json delete mode 100644 config/llm_settings.json diff --git a/config/llm_settings.example.json b/config/llm_settings.example.json new file mode 100644 index 0000000..d6ae77b --- /dev/null +++ b/config/llm_settings.example.json @@ -0,0 +1,21 @@ +{ + "provider": "ollama", + "model": "qwen3.5:27b", + "providers": { + "ollama": { + "base_url": "http://127.0.0.1:11434" + }, + "lmstudio": { + "base_url": "http://127.0.0.1:1234" + }, + "openai": { + "api_key": "" + }, + "anthropic": { + "api_key": "" + }, + "openrouter": { + "api_key": "" + } + } +} diff --git a/config/llm_settings.json b/config/llm_settings.json deleted file mode 100644 index 8661cb4..0000000 --- a/config/llm_settings.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "provider": "ollama", - "model": "gemma4:12b-mlx", - "providers": { - "ollama": { - "base_url": "http://100.79.255.5:11434" - }, - "lmstudio": { - "base_url": "http://100.100.242.21:1234" - }, - "openai": { - "api_key": "" - }, - "anthropic": { - "api_key": "" - }, - "openrouter": { - "api_key": "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" - } - } -} \ No newline at end of file