forked from restsend/rustpbx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (20 loc) · 791 Bytes
/
.env.example
File metadata and controls
28 lines (20 loc) · 791 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
26
27
28
# Tencent Cloud credentials
# Replace with your own credentials from Tencent Cloud console
# https://console.cloud.tencent.com/cam/capi
# AppID (Project ID)
TENCENT_APPID=your_tencent_appid
# SecretID
TENCENT_SECRET_ID=your_tencent_secret_id
# SecretKey
TENCENT_SECRET_KEY=your_tencent_secret_key
# OpenAI Configuration
# OpenAI API Key - required for LLM integration
OPENAI_API_KEY=your_openai_api_key
# OpenAI Organization ID (optional)
# OPENAI_ORG_ID=your_org_id
# OpenAI Base URL (optional) - can be used for API proxies or alternative endpoints
# OPENAI_BASE_URL=https://api.openai.com/v1
# Maximum number of conversation turns to keep in context (optional, default: 10)
# OPENAI_MAX_TURNS=10
# Other environment variables
RUST_LOG=info # Log level (debug, info, warn, error)