-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1.25 KB
/
Copy path.env.example
File metadata and controls
36 lines (29 loc) · 1.25 KB
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
34
35
36
# Support Ticket Summarizer - Environment Configuration
# Copy this file to .env and fill in your API keys
# ===== REQUIRED API KEYS =====
# OpenAI API Key (required for GPT models)
OPENAI_API_KEY=your_openai_api_key_here
# ===== LANGFUSE TRACING CONFIGURATION =====
# Langfuse Cloud configuration for telemetry and tracing
LANGFUSE_PUBLIC_KEY=pk-lf-1a0e1f4a-39f5-4bcb-8f2f-8dd319c3b81c
LANGFUSE_SECRET_KEY=sk-lf-4a9572dc-2dd6-41a4-b5c2-1a04393b879b
LANGFUSE_HOST=https://us.cloud.langfuse.com
LANGFUSE_TRACING=true
# ===== OPTIONAL API KEYS =====
# Cohere API Key (optional - for Cohere models)
COHERE_API_KEY=your_cohere_api_key_here
# Anthropic API Key (optional - for Claude models)
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ===== KAGGLE CONFIGURATION =====
# Kaggle API credentials (optional - for dataset processing)
KAGGLE_USERNAME=your_kaggle_username
KAGGLE_KEY=your_kaggle_api_key
# ===== DATABASE CONFIGURATION =====
# PostgreSQL Database URL (automatically provided by Replit)
DATABASE_URL=postgresql://user:password@host:port/database
# ===== STREAMLIT CONFIGURATION =====
# These are set automatically by Replit deployment
STREAMLIT_SERVER_PORT=5000
STREAMLIT_SERVER_ADDRESS=0.0.0.0
STREAMLIT_SERVER_HEADLESS=true
STREAMLIT_BROWSER_GATHER_USAGE_STATS=false