-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(): update devcontainer.json with additional VS Code extensions and settings for c++/golang/python * feat(): configuration uses .env, supporting dynamic setting of Graph * fix(): fix * fix(): fix type * chore(): specify platform * chore(): adjust manifest.json to property.json * chore(): modify docker-compose.yml * chore(): restore the previous VSCode extensions * chore(): delete property.json.graphs_examples * chore(): rename PROXY_URL to OPENAI_PROXY_URL
- Loading branch information
1 parent
1dc1302
commit d467300
Showing
16 changed files
with
648 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# ------------------------------ | ||
# Environment Variables for server & worker | ||
# ------------------------------ | ||
|
||
# ------------------------------ | ||
# Server Configuration | ||
# ------------------------------ | ||
|
||
# Log path | ||
LOG_PATH=/tmp | ||
# Server port | ||
SERVER_PORT=8080 | ||
# Maximum number of workers | ||
WORKERS_MAX=100 | ||
# Worker quit timeout in seconds | ||
WORKER_QUIT_TIMEOUT_SECONDES=60 | ||
|
||
# Agora App ID and Agora App Certificate | ||
# required: this variable must be set | ||
AGORA_APP_ID= | ||
AGORA_APP_CERTIFICATE= | ||
|
||
# ------------------------------ | ||
# Worker Configuration | ||
# ------------------------------ | ||
|
||
# Extension: bedrock_llm | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_BEDROCK_MODEL= | ||
AWS_REGION= | ||
|
||
# Extension: agora_rtc | ||
# Azure STT key and region | ||
AZURE_STT_KEY= | ||
AZURE_STT_REGION= | ||
|
||
# Extension: azure_tts | ||
# Azure TTS key and region | ||
AZURE_TTS_KEY= | ||
AZURE_TTS_REGION= | ||
|
||
# Extension: cosy_tts | ||
# Cosy TTS key | ||
COSY_TTS_KEY= | ||
|
||
# Extension: elevenlabs_tts | ||
# ElevenLabs TTS key | ||
ELEVENLABS_TTS_KEY= | ||
|
||
# Extension: openai_chatgpt | ||
# OpenAI API key | ||
OPENAI_API_KEY= | ||
# OpenAI base URL | ||
# if using OpenAI, keep default. using other OpenAI-compatible providers, then set it to the other provider's address | ||
OPENAI_BASE_URL= | ||
# OpenAI Model | ||
OPENAI_MODEL=gpt-4o-mini | ||
# OpenAI proxy URL | ||
OPENAI_PROXY_URL= | ||
|
||
# Extension: qwen_llm | ||
# Qwen API key | ||
QWEN_API_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.