| # =================================== | |
| # DeepDiver Configuration Template | |
| # =================================== | |
| # Copy this file to .env and fill in your values | |
| # Custom LLM Service Configuration | |
| # Your own deployed LLM service endpoint | |
| MODEL_REQUEST_URL= | |
| MODEL_REQUEST_TOKEN= | |
| MODEL_NAME=pangu_auto | |
| PLANNER_MAX_ITERATION=40 | |
| INFORMATION_SEEKER_MAX_ITERATION=30 | |
| WRITER_MAX_ITERATION=40 | |
| PLANNER_MODE=auto # auto, writing, qa | |
| # Model Interaction Settings | |
| MODEL_TEMPERATURE=0.6 | |
| MODEL_MAX_TOKENS=8192 | |
| MODEL_REQUEST_TIMEOUT=180 | |
| # MCP Server Configuration | |
| MCP_SERVER_URL=http://localhost:6274/mcp | |
| MCP_AUTH_TOKEN= | |
| MCP_USE_STDIO=false | |
| # Search Engine Configuration | |
| SEARCH_ENGINE_BASE_URL= | |
| SEARCH_ENGINE_API_KEYS= | |
| # URL Crawler Configuration | |
| URL_CRAWLER_BASE_URL= | |
| URL_CRAWLER_API_KEYS= | |
| URL_CRAWLER_MAX_TOKENS=100000 | |
| # Tool Trajectory and Output Paths | |
| TRAJECTORY_STORAGE_PATH=./workspace | |
| REPORT_OUTPUT_PATH=./report | |
| DOCUMENT_ANALYSIS_PATH=./doc_analysis | |
| # General Settings | |
| DEBUG_MODE=false | |
| MAX_RETRIES=3 | |
| TIMEOUT=30 |