Spaces:
Sleeping
Sleeping
| # Example environment variables for Docker deployment | |
| # Copy this to .env and fill in your actual values | |
| # LangChain configuration | |
| LANGCHAIN_API_KEY=your_langchain_api_key_here | |
| LANGCHAIN_PROJECT=legisqa-local | |
| # LLM Provider API Keys | |
| OPENAI_API_KEY=your_openai_api_key_here | |
| ANTHROPIC_API_KEY=your_anthropic_api_key_here | |
| TOGETHER_API_KEY=your_together_api_key_here | |
| GOOGLE_API_KEY=your_google_api_key_here | |
| # Port configuration (optional, defaults to 8501 for local, 8505 for Docker) | |
| PORT=8505 | |
| # ChromaDB configuration | |
| # For local development: use ./chromadb (relative to project root) | |
| # For Docker: use /app/chroma_data (container path, will be mounted as volume) | |
| CHROMA_PERSIST_DIRECTORY=./chromadb | |
| CHROMA_COLLECTION_NAME=usc | |