File size: 792 Bytes
176fa4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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

#LangSmith Variables
LANGCHAIN_TRACING_V2=true
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
LANGCHAIN_PROJECT="your_project_name_here"

# Environment Setting
# Development: Set to "development" to run API-only mode
# Production: Set to "production" to serve static frontend content
ENVIRONMENT=development 

# Debug Mode - a simple way to print debug messages to the console. FUTURE: Use a logging module.
DEBUG=false