Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into dev/0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
plutoless committed Oct 29, 2024
2 parents c21ef0b + 76e8b72 commit 3fc9b72
Show file tree
Hide file tree
Showing 56 changed files with 3,029 additions and 161 deletions.
21 changes: 19 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WORKERS_MAX=100
# Worker quit timeout in seconds
WORKER_QUIT_TIMEOUT_SECONDES=60

# Agora App ID
# Agora App ID
# Agora App Certificate(only required if enabled in the Agora Console)
AGORA_APP_ID=
AGORA_APP_CERTIFICATE=
Expand Down Expand Up @@ -55,10 +55,18 @@ AZURE_STT_REGION=
AZURE_TTS_KEY=
AZURE_TTS_REGION=

# Extension: cartesia_tts
# Cartesia TTS key
CARTESIA_API_KEY=

# Extension: cosy_tts
# Cosy TTS key
COSY_TTS_KEY=

# Extension: deepgram_asr_python
# Deepgram ASR key
DEEPGRAM_API_KEY=

# Extension: elevenlabs_tts
# ElevenLabs TTS key
ELEVENLABS_TTS_KEY=
Expand Down Expand Up @@ -106,4 +114,13 @@ WEATHERAPI_API_KEY=

# Extension: bingsearch_tool_python
# Bing search API key
BING_API_KEY=
BING_API_KEY=

# Extension: tsdb_firestore
# Firestore certifications
FIRESTORE_PROJECT_ID=
FIRESTORE_PRIVATE_KEY_ID=
FIRESTORE_PRIVATE_KEY=
FIRESTORE_CLIENT_EMAIL=
FIRESTORE_CLIENT_ID=
FIRESTORE_CERT_URL=
1 change: 1 addition & 0 deletions agents/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
ten_packages/extension_group/
ten_packages/extension/agora_rtc
ten_packages/extension/azure_tts
ten_packages/extension/agora_sess_ctrl
ten_packages/extension/py_init_extension_cpp
ten_packages/system
.ten
Expand Down
18 changes: 18 additions & 0 deletions agents/manifest-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,24 @@
}
]
},
{
"type": "extension",
"name": "agora_sess_ctrl",
"version": "0.2.0",
"hash": "52f26dee2fb8fbd22d55ecc6bb197176a51f4a3bd2268788f75582f68cf1270b",
"dependencies": [
{
"type": "system",
"name": "ten_runtime"
}
],
"supports": [
{
"os": "linux",
"arch": "x64"
}
]
},
{
"type": "system",
"name": "azure_speech_sdk",
Expand Down
5 changes: 5 additions & 0 deletions agents/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
"name": "agora_rtc",
"version": "=0.8.0-rc2"
},
{
"type": "extension",
"name": "agora_sess_ctrl",
"version": "0.2.0"
},
{
"type": "system",
"name": "azure_speech_sdk",
Expand Down
Loading

0 comments on commit 3fc9b72

Please sign in to comment.