-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
35 lines (25 loc) · 1.07 KB
/
.env.example
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
# --------------------------------------------
# 🌐 FASTAPI BACKEND CONFIGURATION
# --------------------------------------------
# The port on which the FastAPI server will run
PORT=3002
# Bearer token for authenticating with your local LLM endpoint (optional)
LOCAL_TOKEN=YOUR_LOCAL_TOKEN_HERE
# Your Cohere API key
COHERE_API_KEY=YOUR_COHERE_API_KEY_HERE
# Reference Data API URL. We use this to feed our live site with real-time event schedules,
# data, or anything you want the LLM to reference (Optional). A more simple approach is hard-coding this data locally.
REF_DATA_API_URL=
# Local LLM endpoint
LOCAL_LLM_ENDPOINT_URL=
# Cohere chat API endpoint
COHERE_CHAT_ENDPOINT_URL=
# Allowed CORS origin (Frontend or other services using the API)
ALLOWED_ORIGIN=https://your-frontend.com
# --------------------------------------------
# 🤖 DISCORD BOT CONFIGURATION
# --------------------------------------------
# Discord Bot Token (Required)
DISCORD_TOKEN=your-discord-bot-token
# Backend API URL (Should match FastAPI deployment)
BACKEND_API_URL=http://localhost:3002/chat