Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runner/src/coval_bench/providers/tts/murf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
logger: structlog.BoundLogger = structlog.get_logger(__name__)

_VALID_MODELS = ("falcon-2",)
_WS_URL = "wss://us-east.api.murf.ai/v1/speech/stream-input"
_WS_URL = "wss://global.api.murf.ai/v1/speech/stream-input"
_SAMPLE_RATE = 24000


Expand Down
4 changes: 2 additions & 2 deletions runner/src/coval_bench/registries/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,8 +811,8 @@ class RegisteredModel(BaseModel, frozen=True, extra="forbid"):
benchmark=_TTS,
provider="murf",
model="falcon-2",
voice="Natalie",
voices=("Natalie", "Gordon"),
voice="Amara",
voices=("Amara", "Gordon"),
tags=(_STREAMING, _MULTI, _STREAM),
status=_EARLY_ACCESS,
arena_enabled=False,
Expand Down
4 changes: 2 additions & 2 deletions runner/tests/providers/tts/test_murf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from .conftest import FakeWebSocket, make_pcm_bytes

_VOICE = "Natalie"
_VOICE = "Amara"


def _settings() -> Settings:
Expand Down Expand Up @@ -84,7 +84,7 @@ def connect_side_effect(url: str, **kwargs: object) -> FakeWebSocket:
assert result.error is None
parts = urlsplit(captured["url"])
assert parts.scheme == "wss"
assert parts.netloc == "us-east.api.murf.ai"
assert parts.netloc == "global.api.murf.ai"
assert parts.path == "/v1/speech/stream-input"
assert parse_qs(parts.query) == {
"api-key": ["test-murf-key"],
Expand Down