Skip to content

Commit 3d7904c

Browse files
authored
Update Cartesia plugin (#141)
* Update default voice to latest version * Bump Cartesia dependency * Fix missed VID
1 parent b32c56d commit 3d7904c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

plugins/cartesia/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requires-python = ">=3.10"
1212
license = "MIT"
1313
dependencies = [
1414
"vision-agents",
15-
"cartesia>=2.0.9",
15+
"cartesia>=2.0.15",
1616
]
1717

1818
[project.urls]

plugins/cartesia/vision_agents/plugins/cartesia/tts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __init__(
2222
self,
2323
api_key: Optional[str] = None,
2424
model_id: str = "sonic-3",
25-
voice_id: str | None = "f9836c6e-a0bd-460e-9d3c-f7299fa60f94",
25+
voice_id: str | None = "6ccbfb76-1fc6-48f7-b71d-91ac6298247b",
2626
sample_rate: int = 16000,
2727
client: Optional[AsyncCartesia] = None,
2828
) -> None:
@@ -47,7 +47,7 @@ def __init__(
4747
self.model_id = model_id
4848
# Ensure voice_id is always provided for API typing and calls
4949
self.voice_id: str = (
50-
voice_id if voice_id is not None else "f9836c6e-a0bd-460e-9d3c-f7299fa60f94"
50+
voice_id if voice_id is not None else "6ccbfb76-1fc6-48f7-b71d-91ac6298247b"
5151
)
5252
self.sample_rate = sample_rate
5353

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)