backend-deploy / .env.example
sanilahmed2019's picture
Update backend logic
ce4595c
raw
history blame contribute delete
727 Bytes
# RAG Agent and API Layer Environment Variables
# OpenRouter API Configuration
OPENROUTER_API_KEY=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
# Qdrant Configuration
QDRANT_URL=https://72888a6e-0dfc-4620-bf85-0b9025951e0c.us-east4-0.gcp.cloud.qdrant.io:6333
QDRANT_API_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2Nlc3MiOiJtIn0.BDBAtGf7x_XGCu3lO4-kNxgJeVgnSTKUjHeZBT6qJkQ
QDRANT_COLLECTION_NAME=rag_embedding
REACT_APP_RAG_API_URL=http://localhost:8000
# Cohere Configuration (for query embeddings)
COHERE_API_KEY=RGfPBR6t5Ev2VXgIA00o5XcHiuXYkyCVL8TjkSZs
# Application Configuration
DEFAULT_CONTEXT_WINDOW=5
DEFAULT_TEMPERATURE=0.1
LOG_LEVEL=INFO
# Server Configuration
HOST=0.0.0.0
PORT=8000