-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (43 loc) · 1.84 KB
/
Copy path.env.example
File metadata and controls
52 lines (43 loc) · 1.84 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# ===========================================
# AGENTIC RAG CONFIGURATION
# ===========================================
# Copy this file to .env and fill in your values:
# cp .env.example .env
# ===========================================
# SUPABASE CONFIGURATION (Required)
# ===========================================
# Get these from: https://supabase.com → Your Project → Settings → API
SUPABASE_URL=https://your-project-ref.supabase.co
SUPABASE_ANON_KEY=your_anon_key_here
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key_here
# ===========================================
# AI PROVIDER CONFIGURATION (Required)
# ===========================================
# Choose your AI provider: "openai" or "anthropic"
AI_PROVIDER=openai
# OpenAI Configuration
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-your_openai_api_key_here
OPENAI_EMBED_MODEL=text-embedding-3-small
OPENAI_CHAT_MODEL=gpt-4o
# Anthropic Configuration (optional, if using Anthropic)
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
ANTHROPIC_CHAT_MODEL=claude-3-5-sonnet-20241022
# ===========================================
# GOOGLE API CONFIGURATION (For Tools - Optional)
# ===========================================
# Required only if you want to use calendar/email tools.
# See README.md for setup instructions.
# Path to your service account JSON key file
GOOGLE_SERVICE_ACCOUNT_PATH=credentials/service_account.json
# The email address the service account will impersonate
# (must have domain-wide delegation set up)
GOOGLE_CALENDAR_EMAIL=your-email@yourcompany.com
# Calendar ID to create events in ("primary" = main calendar)
GOOGLE_CALENDAR_ID=primary
# ===========================================
# APPLICATION SETTINGS
# ===========================================
ENVIRONMENT=development
LOG_LEVEL=INFO