Spaces:
Sleeping
Sleeping
File size: 715 Bytes
c19c7bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# ClientSphere RAG Backend Configuration # Rename this file to .env and fill in your values # LLM Provider (gemini or openai) LLM_PROVIDER=gemini # Gemini API Key (get from https://makersuite.google.com/app/apikey) GEMINI_API_KEY=your_gemini_api_key_here # OpenAI API Key (optional, if using OpenAI instead) # OPENAI_API_KEY=your_openai_api_key_here # Model names (optional, defaults provided) # GEMINI_MODEL=gemini-pro # OPENAI_MODEL=gpt-3.5-turbo # Embedding model (optional, default is all-MiniLM-L6-v2) # EMBEDDING_MODEL=all-MiniLM-L6-v2 # Chunking settings (optional) # CHUNK_SIZE=500 # CHUNK_OVERLAP=100 # Retrieval settings (optional) # TOP_K=6 # SIMILARITY_THRESHOLD=0.35 # Debug mode DEBUG=true |