# MCP WebScout Environment Configuration
# Copy this file to .env and fill in your actual values
# =============================================================================
# DeepSeek API Configuration (Required for LLM extraction mode)
# =============================================================================
# Your DeepSeek API key (required)
# Get your API key from: https://platform.deepseek.com/
DEEPSEEK_API_KEY=your_deepseek_api_key_here
# DeepSeek API base URL (optional, defaults to https://api.deepseek.com/v1)
# DEEPSEEK_API_BASE=https://api.deepseek.com/v1
# Default model for LLM extraction (optional, defaults to deepseek-chat)
# DEEPSEEK_DEFAULT_MODEL=deepseek-chat
# =============================================================================
# Proxy Configuration (Required for users in mainland China)
# =============================================================================
# Your proxy URL (optional, defaults to http://127.0.0.1:7890)
# Common proxy ports:
# - Clash: http://127.0.0.1:7890
# - V2RayN: http://127.0.0.1:10809
# - Shadowsocks: http://127.0.0.1:1080
PROXY_URL=http://127.0.0.1:7890
# Whether to use proxy by default (optional, defaults to true)
USE_PROXY=true
# =============================================================================
# Default Parameters (Optional)
# =============================================================================
# Default maximum length for fetched content (optional, defaults to 5000)
DEFAULT_MAX_LENGTH=5000
# Default timeout for web requests in seconds (optional, defaults to 30)
DEFAULT_TIMEOUT=30
# =============================================================================
# Browser Configuration (Optional)
# =============================================================================
# Playwright browsers installation path (optional)
# PLAYWRIGHT_BROWSERS_PATH=0
# =============================================================================
# Windows UTF-8 Support (Optional, for Windows users)
# =============================================================================
# Set to 1 to enable UTF-8 mode on Windows
PYTHONUTF8=1