Spaces:
Runtime error
Runtime error
| # Environment configuration file | |
| # Copy to .env and fill in your values | |
| # OpenAI Configuration | |
| OPENAI_API_KEY=sk-your-key-here | |
| OPENAI_API_BASE=https://api.openai.com/v1 | |
| OPENAI_MODEL=gpt-4 | |
| # MCP Server Configuration | |
| MCP_SERVER_HOST=127.0.0.1 | |
| MCP_SERVER_PORT=8001 | |
| # Gradio Server Configuration | |
| GRADIO_SERVER_HOST=0.0.0.0 | |
| GRADIO_SERVER_PORT=7860 | |
| # Web Search Configuration | |
| SEARCH_MAX_RESULTS=5 | |
| SEARCH_RATE_LIMIT=2.0 | |
| REQUEST_TIMEOUT=10 | |
| # Logging | |
| LOG_LEVEL=INFO | |