-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: upgrade runtime 0.4.0 with build pass * fix: compatible with runtime 0.4.0 * feat: use property for predefined_graphs * fix: type * Feature/seperate graphs (#147) * 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 * chore(): support graph designer (#151) * chore(): support graph designer * chore(): keep SERVER_PORT * chore(): modify comment * Feature/seperate graphs (#153) * chore(): merge all manifest.json.example into property.json.example * chore(): remove version * chore(): remove the pcm_frame under the agora_rtc extension * chore(): adjust README (#154) * fix: fix readme * fix: readme update * chore(): default start graph designer server (#156) * chore(): default start graph designer server * chore(): update image version * chore(): merge commit 09ca830, PR 127 (#157) Co-authored-by: Bin Chen <[email protected]> * feat: upgrade build image version * fix: fix polly folder name & readme * feat: readme update --------- Co-authored-by: Jay Zhang <[email protected]> Co-authored-by: sunshinexcode <[email protected]> Co-authored-by: Bin Chen <[email protected]>
- Loading branch information
1 parent
1e1cc87
commit 38e1738
Showing
65 changed files
with
2,197 additions
and
2,060 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,67 @@ | ||
# ------------------------------ | ||
# Environment Variables for server & worker | ||
# ------------------------------ | ||
|
||
# ------------------------------ | ||
# Server Configuration | ||
# ------------------------------ | ||
|
||
# Log path | ||
LOG_PATH=/tmp | ||
# Graph designer server port | ||
GRAPH_DESIGNER_SERVER_PORT=49483 | ||
# 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 | ||
# Extension: polly_tts | ||
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
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 |
---|---|---|
|
@@ -26,3 +26,4 @@ session_control.conf.agora | |
xdump_config | ||
.vscode | ||
*.pyc | ||
property.json |
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.