# DocRAG Configuration # Copy this file to .env and fill in your values # Server Configuration HOST=0.0.0.0 PORT=8000 DEBUG=false # Model Configuration MODEL_NAME=DocRAG-GLM-4.7 UPSTREAM_MODEL=glm-4.7 # API Keys ZAI_API_KEY=your-zai-api-key-here # RAG Configuration EMBEDDING_MODEL=text-embedding-3-small VECTOR_STORE_PATH=./data/vectors DOCUMENTS_PATH=./data/documents CHUNK_SIZE=1000 CHUNK_OVERLAP=200 TOP_K_RESULTS=5 # Tool Configuration ENABLE_TOOLS=true MAX_TOOL_ITERATIONS=3