Skip to content

Commit 8990d85

Browse files
BenWeekesbenagoraYiminW
authored
fix: add missing config keyword in deepgram tts log (#2138)
* fix: add missing config keyword in deepgram tts log message the deepgram tts extension logs its config without a "config:" prefix, causing QA test regex to fail when validating vendor_config. all other tts extensions include this prefix. add it to match the convention. * feat: update version --------- Co-authored-by: Ben Weeks <ben@agora.io> Co-authored-by: YiminW <wym0207@outlook.com>
1 parent 9bc52fd commit 8990d85

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ai_agents/agents/ten_packages/extension/deepgram_tts/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async def on_init(self, ten_env: AsyncTenEnv) -> None:
5959
self.config = DeepgramTTSConfig.model_validate_json(config_json_str)
6060
self.config.update_params()
6161
ten_env.log_info(
62-
self.config.to_str(sensitive_handling=True),
62+
f"config: {self.config.to_str(sensitive_handling=True)}",
6363
category=LOG_CATEGORY_KEY_POINT,
6464
)
6565

ai_agents/agents/ten_packages/extension/deepgram_tts/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "extension",
33
"name": "deepgram_tts",
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"dependencies": [
66
{
77
"type": "system",

0 commit comments

Comments
 (0)