-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 899 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 899 Bytes
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
# PromptDiff Configuration
# Copy this file to .env and fill in your values
# The .env file is gitignored and will not be committed
# OpenAI API Configuration
OPENAI_API_KEY=sk-your-openai-api-key-here
# Optional: Custom OpenAI base URL (for OpenAI-compatible APIs)
# OPENAI_BASE_URL=https://api.openai.com/v1
# Anthropic API Configuration
ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
# Ollama Configuration
# Optional: Custom Ollama base URL (default: http://localhost:11434)
OLLAMA_BASE_URL=http://localhost:11434
# Embedding Model Configuration
# Optional: Custom embedding model for semantic diff (default: sentence-transformers/all-MiniLM-L6-v2)
# EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
# Model Default Parameters
# Optional: Default temperature for model calls
# DEFAULT_TEMPERATURE=0.7
# Optional: Default max tokens for model calls
# DEFAULT_MAX_TOKENS=1024