This repository was archived by the owner on Apr 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (30 loc) · 3.62 KB
/
.env.example
File metadata and controls
35 lines (30 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# ═══════════════════════════════════════════════════════════════════════════════
# Dymo Code - API Configuration
# Copy this file to .env and fill in your API keys
# ═══════════════════════════════════════════════════════════════════════════════
# ─────────────────────────────────────────────────────────────────────────────────
# Groq API (for Llama, GPT-OSS, Compound models)
# Get your key at: https://console.groq.com
# ─────────────────────────────────────────────────────────────────────────────────
GROQ_API_KEY=your_groq_api_key_here
# ─────────────────────────────────────────────────────────────────────────────────
# OpenRouter API (access 100+ models)
# Get your key at: https://openrouter.ai/keys
# ─────────────────────────────────────────────────────────────────────────────────
OPENROUTER_API_KEY=your_openrouter_api_key_here
# ─────────────────────────────────────────────────────────────────────────────────
# Anthropic API (for Claude models)
# Get your key at: https://console.anthropic.com
# ─────────────────────────────────────────────────────────────────────────────────
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ─────────────────────────────────────────────────────────────────────────────────
# OpenAI API (for GPT-4o, o1 models)
# Get your key at: https://platform.openai.com/api-keys
# ─────────────────────────────────────────────────────────────────────────────────
OPENAI_API_KEY=your_openai_api_key_here
# ─────────────────────────────────────────────────────────────────────────────────
# Ollama (local LLM inference)
# Default: http://localhost:11434
# Change if Ollama runs on a different host/port
# ─────────────────────────────────────────────────────────────────────────────────
OLLAMA_BASE_URL=http://localhost:11434