From 436dda0f2f4c9c46c2b4b77434ae017213110ec4 Mon Sep 17 00:00:00 2001 From: DevBroco <84507903+BroccoliFin@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:55:39 +0300 Subject: [PATCH] docs: add .env.example examples for Ollama and OpenAI-compatible (#110) * docs: add .env.example examples for Ollama and OpenAI-compatible * docs: update .env.example with commented examples --------- Co-authored-by: BroccoliFin --- .env.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.env.example b/.env.example index e3b629ee..8de0c2fc 100644 --- a/.env.example +++ b/.env.example @@ -11,6 +11,21 @@ NEARAI_BASE_URL=https://cloud-api.near.ai NEARAI_AUTH_URL=https://private.near.ai # NEARAI_SESSION_PATH=~/.ironclaw/session.json # optional, default shown +# Local LLM Providers (Ollama, LM Studio, vLLM, LiteLLM) +# LLM_BACKEND=nearai # default +# Possible values: nearai, ollama, openai_compatible, openai, anthropic + +# === Ollama === +# OLLAMA_MODEL=llama3.2 +# LLM_BACKEND=ollama +# OLLAMA_BASE_URL=http://localhost:11434 # default + +# === OpenAI-compatible (LM Studio, vLLM, Anything-LLM) === +# LLM_MODEL=llama-3.2-3b-instruct-q4_K_M +# LLM_BACKEND=openai_compatible +# LLM_BASE_URL=http://localhost:1234/v1 +# LLM_API_KEY=sk-... # optional for local servers + # Channel Configuration # CLI is always enabled