-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
31 lines (24 loc) · 1.14 KB
/
env.example
File metadata and controls
31 lines (24 loc) · 1.14 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
# SPC & Quality Management System - Environment Variables
# Copy this file to .env and fill in your API keys
# ========================================
# LLM API Keys (based on your chosen provider in config.yaml)
# ========================================
# Groq API Key (default provider)
# Get your key at: https://console.groq.com/keys
GROQ_API_KEY=your_groq_api_key_here
# OpenAI API Key (if using OpenAI provider)
# Get your key at: https://platform.openai.com/api-keys
# OPENAI_API_KEY=your_openai_api_key_here
# Anthropic API Key (if using Anthropic/Claude provider)
# Get your key at: https://console.anthropic.com/
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Ollama (if using local Ollama)
# No API key needed - just ensure Ollama is running locally
# OLLAMA_BASE_URL=http://localhost:11434
# ========================================
# Instructions:
# ========================================
# 1. Copy this file: cp env.example .env
# 2. Edit .env and add your actual API keys
# 3. Set the provider in agent_config/config.yaml to match your key (groq, openai, anthropic, etc.)
# 4. Never commit .env to version control (it's in .gitignore)