23 lines
583 B
Bash
23 lines
583 B
Bash
# LLM (DeepSeek, OpenAI-compatible)
|
|
# Fill your real key below.
|
|
LLM_API_KEY=sk-aac48115300845be97a032444fc11560
|
|
LLM_BASE_URL=https://api.deepseek.com/v1
|
|
LLM_MODEL=deepseek-chat
|
|
LLM_TIMEOUT=20
|
|
LLM_MAX_TOKENS=300
|
|
|
|
# Web service
|
|
WEBRTC_HOST=0.0.0.0
|
|
WEBRTC_PORT=8018
|
|
STUN_URL=stun:stun.l.google.com:19302
|
|
CORS_ORIGINS=*
|
|
|
|
# HTTPS (for cross-device mic/WebRTC)
|
|
SSL_CERTFILE=/home/xsl/code/product/certs/dev-cert.pem
|
|
SSL_KEYFILE=/home/xsl/code/product/certs/dev-key.pem
|
|
|
|
# 3D avatar driver mode
|
|
AVATAR_DRIVER_MODE=blendshape_stream
|
|
AVATAR_CONTROL_PROTOCOL=ws
|
|
AVATAR_BLENDSHAPE_SCHEMA=arkit
|