-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.env.example
More file actions
65 lines (53 loc) · 1.66 KB
/
.env.example
File metadata and controls
65 lines (53 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
# Do not share your API key with anyone! It should remain a secret.
# VT.ai Environment Variables
# Copy this to .env and fill in your actual values
# Do not share your API key with anyone! It should remain a secret.
OPENAI_API_KEY=
COHERE_API_KEY=
HUGGINGFACE_API_KEY=
ANTHROPIC_API_KEY=
GROQ_API_KEY=
OPENROUTER_API_KEY=
GEMINI_API_KEY=
MISTRAL_API_KEY=
TAVILY_API_KEY=
DEEPSEEK_API_KEY=
## LM Studio
LM_STUDIO_API_BASE=
LM_STUDIO_API_KEY= # optional, default is empty
# Enable LiteLLM Debug Logging
LITELLM_LOG_LEVEL=
# Supabase Configuration
# PRODUCTION: https://moykyctcjahifdkmhybt.supabase.co
SUPABASE_URL=
SUPABASE_ANON_KEY=
# DEV: run `$ supabase start` will connect a local instance
# API URL for database operations
# SUPABASE_URL=http://127.0.0.1:54321
# # Anonymous key for client-side operations
# SUPABASE_ANON_KEY=
# Optional: Additional local Supabase configuration
# Studio URL: http://127.0.0.1:54323
# DB URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres
# Optional: Override default ports
# CHAINLIT_PORT="8000"
# NEXTJS_PORT="3000"
# OAUTH
OAUTH_GOOGLE_CLIENT_ID=
OAUTH_GOOGLE_CLIENT_SECRET=
OAUTH_GITHUB_CLIENT_ID=
OAUTH_GITHUB_CLIENT_SECRET=
# IMPORTANT CHAINLIT AUTH SECRET
CHAINLIT_AUTH_SECRET=
# Force consent prompt for all providers
OAUTH_PROMPT=consent
# Override specific provider to force login
OAUTH_GITHUB_PROMPT=login
# Optional: If you want to use a custom encryption key for sensitive data
ENCRYPTION_KEY=
# Enable authentication (set to 1 to enable, 0 to disable)
VT_AUTH_ENABLE=1
# Enable Supabase integration (set to 1 to enable, 0 to disable)
VT_SUPABASE_ENABLE=1
# Enable development mode (set to 1 to enable, 0 to disable)
VT_DEV_MODE=1