TMD-SDG-via-LangGraph / .env.template
mwalker22's picture
Initial project scaffolding.
176fa4e
raw
history blame contribute delete
792 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
#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