File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -179,25 +179,15 @@ guard := detector.New(
179179
180180** Setup (optional - for LLM features):**
181181
182- Create a ` .env ` file in your project directory :
182+ Copy ` .env.example ` to ` .env ` and add your API keys :
183183
184184``` bash
185- # OpenAI (defaults to gpt-5 if not set)
186- OPENAI_API_KEY=sk-...
187- OPENAI_MODEL=gpt-5
188-
189- # OpenRouter (defaults to anthropic/claude-sonnet-4.5 if not set)
190- # Provides access to Claude, Gemini, and other models
191- OPENROUTER_API_KEY=sk-or-...
192- OPENROUTER_MODEL=anthropic/claude-sonnet-4.5
193-
194- # Ollama (local, no API key needed)
195- # Defaults to llama3.1:8b (most common, runs on 8GB RAM)
196- # For better quality: OLLAMA_MODEL=llama3.3:70b-instruct-q2_K (needs 32GB+ RAM)
197- OLLAMA_MODEL=llama3.1:8b
198- OLLAMA_HOST=http://localhost:11434
185+ cp .env.example .env
186+ # Edit .env and add your API keys
199187```
200188
189+ See [ ` .env.example ` ] ( .env.example ) for all configuration options.
190+
201191Or set environment variables:
202192
203193``` bash
You can’t perform that action at this time.
0 commit comments