Spaces:
Running
Running
| # OpenAI Configuration | |
| OPENAI_API_KEY=your-api-key-here | |
| OPENAI_MODEL=gpt-4-turbo | |
| OPENAI_TEMPERATURE=0.7 | |
| OPENAI_MAX_TOKENS=800 | |
| # Embedding Configuration | |
| EMBEDDING_MODEL=text-embedding-3-small | |
| EMBEDDING_DIMENSION=1536 | |
| # Knowledge Base Configuration | |
| KB_CHUNK_SIZE=1024 | |
| KB_CHUNK_OVERLAP=20 | |
| KB_SIMILARITY_TOP_K=5 | |
| KB_PERSIST_DIR=./kb_storage | |
| DOCS_PATH=./docs | |
| # Pinecone Configuration (Optional) | |
| USE_PINECONE=false | |
| PINECONE_API_KEY=your-pinecone-key-here | |
| PINECONE_INDEX_NAME=ecomcp-knowledge | |
| # Server Configuration | |
| SERVER_HOST=0.0.0.0 | |
| SERVER_PORT=7860 | |
| # Logging Configuration | |
| LOG_LEVEL=INFO | |
| # Feature Flags | |
| ENABLE_KNOWLEDGE_SEARCH=true | |
| ENABLE_VALIDATION=true | |