-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
32 lines (24 loc) · 924 Bytes
/
.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
# Database Configuration
DATABASE_URL=postgres://username:password@localhost/fluentcli_web_services
# Server Configuration
SERVER_HOST=0.0.0.0
SERVER_PORT=8000
# JWT Configuration
JWT_SECRET=your_jwt_secret_key
JWT_EXPIRATION=86400 # 24 hours in seconds
# FluentCLI Configuration
FLUENTCLI_PATH=/path/to/fluentcli
# File Storage Configuration
UPLOAD_DIR=/path/to/upload/directory
# LLM Provider Configuration
DEFAULT_LLM_PROVIDER=openai
ALLOWED_LLM_PROVIDERS=openai,gpt3,gpt4 # Comma-separated list of allowed providers
OPENAI_API_KEY=your_openai_api_key
# Chat Configuration
MAX_CONVERSATION_HISTORY=50 # Maximum number of messages to keep in conversation history
MAX_ATTACHMENT_SIZE=5242880 # Maximum attachment size in bytes (5MB)
MAX_MESSAGE_LENGTH=4096 # Maximum length of a single message in characters
# Logging Configuration
LOG_LEVEL=info
# Frontend Configuration
VITE_API_BASE_URL=http://localhost:8000/api