mirror of https://github.com/kortix-ai/suna.git
25 lines
690 B
Plaintext
25 lines
690 B
Plaintext
# LLM API Keys - Replace with your actual keys
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key
|
|
OPENAI_API_KEY=your-openai-api-key
|
|
MODEL_TO_USE=anthropic/claude-3-7-sonnet-latest
|
|
|
|
# Optional API Keys - Replace with your actual keys if needed
|
|
TAVILY_API_KEY=your-tavily-api-key
|
|
RAPID_API_KEY=your-rapid-api-key
|
|
|
|
EXA_API_KEY=your-exa-api-key
|
|
|
|
# URLs and Public Configuration
|
|
NEXT_PUBLIC_URL=http://localhost:3000
|
|
NEXT_PUBLIC_BACKEND_URL=http://localhost:8000/api
|
|
|
|
# Redis Configuration (local development)
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
REDIS_SSL=False
|
|
|
|
# Daytona Configuration
|
|
DAYTONA_API_KEY=your-daytona-api-key
|
|
DAYTONA_SERVER_URL=https://app.daytona.io/api
|
|
DAYTONA_TARGET=us |