# Multi-Agent Research System - Environment Configuration # Copy this file to .env and fill in your actual values # REQUIRED: HuggingFace API Token # Get it from: https://huggingface.co/settings/tokens HF_TOKEN=hf_your_token_here # OPTIONAL: Anthropic API Key (for future extensions) # Get it from: https://console.anthropic.com/ ANTHROPIC_API_KEY=sk_your_key_here # OPTIONAL: OpenAI API Key (for future extensions) # Get it from: https://platform.openai.com/api-keys OPENAI_API_KEY=sk_your_key_here # Application Configuration APP_NAME=Multi-Model Research System APP_VERSION=1.0.0 DEBUG=false # Server Configuration SERVER_HOST=0.0.0.0 SERVER_PORT=7860 SHARE=false # Model Configuration DEFAULT_MODEL_QUERY=qwen-2.5-7b DEFAULT_MODEL_LEADERS=qwen-2.5-72b DEFAULT_MODEL_PRACTICES=qwen-2.5-72b DEFAULT_MODEL_QUALITY=qwen-2.5-72b DEFAULT_MODEL_RECOMMENDATIONS=qwen-2.5-72b # Research Configuration RESEARCH_TIMEOUT=120 MAX_RETRIES=3 WEB_SEARCH_ENABLED=true QUALITY_REVIEW_ENABLED=true # Logging Configuration LOG_LEVEL=INFO LOG_SEARCHES=true LOG_MODEL_USAGE=true LOG_EXECUTION_TIME=true