-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
20 lines (16 loc) · 933 Bytes
/
example.env
File metadata and controls
20 lines (16 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Example .env file for AI Agent Builder
# Copy this file to .env and fill in your actual API keys
OPENAI_API_KEY=your-openai-api-key-here
ANTHROPIC_API_KEY=your-anthropic-api-key-here
ANACONDA_API_KEY=your-anaconda-api-key-here
# LLM Provider URLs
OLLAMA_BASE_URL=http://127.0.0.1:11434
OPENAI_BASE_URL=https://api.openai.com/v1
ANTHROPIC_BASE_URL=https://api.anthropic.com/v1
ANACONDA_BASE_URL=http://127.0.0.1:8080
# Anthropic models available to your account (comma-separated)
ANTHROPIC_MODELS=claude-sonnet-4, claude-sonnet-4-20250514,claude-opus-4, claude-opus-4-20250514,claude-3-5-haiku, claude-3-5-haiku-20241022,claude-3-7-sonnet, claude-3-7-sonnet-20250219,claude-3-5-sonnet-20241022,claude-3-5-sonnet-20240620,claude-3-haiku-20240307,claude-3-opus-20240229
# Default model for each provider (used if not specified in code)
OLLAMA_DEFAULT_MODEL=llama2
OPENAI_DEFAULT_MODEL=gpt-4
ANTHROPIC_DEFAULT_MODEL=claude-sonnet-4