mwalker22's picture
Replace the debug_print function and environment variable dependency with a logger implementation. Logging level is now controlled via an API.
5f64962
raw
history blame contribute delete
836 Bytes
# CORS Settings
# Development: Use "*" to allow all origins
# Production: Specify exact origins, e.g., "https://yourdomain.com,https://api.yourdomain.com"
ALLOWED_ORIGINS=*
# Required API Keys
OPENAI_API_KEY=your_openai_api_key_here
TAVILY_API_KEY=your_tavily_api_key_here
LANGCHAIN_API_KEY=your_langchain_api_key_here
GOLFCOURSE_API_KEY=your_golfcourse_api_key_here
QDRANT_API_KEY=your_qdrant_api_key_here
#LangSmith Variables
LANGCHAIN_TRACING_V2=true
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
LANGCHAIN_PROJECT="your_project_name_here"
#Qdrant Variables
QDRANT_COLLECTION_NAME="your_collection_name"
EMBEDDING_MODEL="your_embedding_model_name_here"
# Environment Setting
# Development: Set to "development" to run API-only mode
# Production: Set to "production" to serve static frontend content
ENVIRONMENT=development