-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (20 loc) · 887 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (20 loc) · 887 Bytes
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
# LLM Provider Selection (options: "openai", "gemini", "both")
LLM_PROVIDER=openai
# OpenAI Configuration
OPENAI_API_KEY=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
OPENAI_MODEL=gpt-4o-mini
OPENAI_TEMPERATURE=0.7
# Gemini Configuration
GEMINI_API_KEY=AIzaSyCfdrvDQq9yiea9g031jtjR2jDYfKukDjs
GEMINI_MODEL=gemini-2.0-flash
GEMINI_TEMPERATURE=0.7
# FastAPI Configuration
APP_NAME=VSP Chatbot API
DEBUG=False
CORS_ORIGINS=["http://localhost:3000", "http://127.0.0.1:3000"]
# Database Configuration
# DATABASE_URL=postgresql://vsp_dummy_user:password@localhost:5432/vsp_dummy
DATABASE_URL=postgresql://vsp_user:vsp%40123@localhost:5432/vsp_db
# NextAuth Configuration
NEXTAUTH_SECRET=sJOLvZC+gPIUSNaL+wOZQ8r3Kk38bGIGykgZ72k0BEg=
NEXTAUTH_URL=http://localhost:3000