Spaces:
Sleeping
Sleeping
| # AI Agent UN - Configuration Template | |
| # Copy this file to .env and fill in your values | |
| # ========================================== | |
| # Cloud API Configuration | |
| # ========================================== | |
| # OpenAI API Key (for GPT models) | |
| OPENAI_API_KEY=your_openai_api_key_here | |
| # Anthropic API Key (for Claude models) | |
| ANTHROPIC_API_KEY=your_anthropic_api_key_here | |
| # Custom API Base URL (optional - for OpenAI-compatible APIs) | |
| # Examples: https://api.openrouter.ai/v1, http://localhost:11434/v1 | |
| API_BASE_URL= | |
| # Default model name for cloud API | |
| # Examples: gpt-4, gpt-4-turbo, claude-3-opus-20240229 | |
| MODEL_NAME=gpt-4 | |
| # ========================================== | |
| # Local Model Configuration | |
| # ========================================== | |
| # Local model name (for Ollama) | |
| # Examples: llama3, mistral, mixtral | |
| LOCAL_MODEL_NAME=llama3 | |
| # Local model path (optional) | |
| LOCAL_MODEL_PATH= | |
| # ========================================== | |
| # Simulation Settings | |
| # ========================================== | |
| # Default provider: cloud or local | |
| DEFAULT_PROVIDER=cloud | |