livekit-plugins-voho 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- livekit/plugins/voho/__init__.py +53 -0
- livekit/plugins/voho/_api.py +86 -0
- livekit/plugins/voho/log.py +3 -0
- livekit/plugins/voho/models.py +40 -0
- livekit/plugins/voho/py.typed +0 -0
- livekit/plugins/voho/stt.py +255 -0
- livekit/plugins/voho/tts.py +300 -0
- livekit/plugins/voho/version.py +1 -0
- livekit_plugins_voho-0.1.0.dist-info/METADATA +152 -0
- livekit_plugins_voho-0.1.0.dist-info/RECORD +12 -0
- livekit_plugins_voho-0.1.0.dist-info/WHEEL +4 -0
- livekit_plugins_voho-0.1.0.dist-info/licenses/LICENSE +202 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"""Voho for LiveKit Agents: Arabic speech, Saudi and Gulf dialects.
|
|
2
|
+
|
|
3
|
+
from livekit.plugins import voho
|
|
4
|
+
|
|
5
|
+
session = AgentSession(
|
|
6
|
+
stt=voho.STT(language="ar-SA"),
|
|
7
|
+
tts=voho.TTS(voice="layla"),
|
|
8
|
+
llm=...,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
Set ``VOHO_API_KEY`` or pass ``api_key=``. Keys are created at
|
|
12
|
+
https://app.voho.ai/tokens and billed there. Docs: https://docs.voho.ai/livekit
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from .models import DEFAULT_LANGUAGE, DEFAULT_MODEL, DEFAULT_VOICE, STTLanguage, TTSModel, TTSVoice
|
|
16
|
+
from .stt import STT, RecognizeStream
|
|
17
|
+
from .tts import TTS, ChunkedStream, SynthesizeStream
|
|
18
|
+
from .version import __version__
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"STT",
|
|
22
|
+
"TTS",
|
|
23
|
+
"RecognizeStream",
|
|
24
|
+
"ChunkedStream",
|
|
25
|
+
"SynthesizeStream",
|
|
26
|
+
"STTLanguage",
|
|
27
|
+
"TTSModel",
|
|
28
|
+
"TTSVoice",
|
|
29
|
+
"DEFAULT_LANGUAGE",
|
|
30
|
+
"DEFAULT_MODEL",
|
|
31
|
+
"DEFAULT_VOICE",
|
|
32
|
+
"__version__",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
from livekit.agents import Plugin # noqa: E402
|
|
36
|
+
|
|
37
|
+
from .log import logger # noqa: E402
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class VohoPlugin(Plugin):
|
|
41
|
+
def __init__(self) -> None:
|
|
42
|
+
super().__init__(__name__, __version__, __package__, logger)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Plugin.register_plugin(VohoPlugin())
|
|
46
|
+
|
|
47
|
+
# Cleanup docs of unexported modules
|
|
48
|
+
_module = dir()
|
|
49
|
+
NOT_IN_ALL = [m for m in _module if m not in __all__]
|
|
50
|
+
|
|
51
|
+
__pdoc__ = {}
|
|
52
|
+
for n in NOT_IN_ALL:
|
|
53
|
+
__pdoc__[n] = False
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"""The little that both halves of the plugin share: where the API is, how it
|
|
2
|
+
is authenticated, and how its errors become LiveKit's.
|
|
3
|
+
|
|
4
|
+
Kept apart from the STT and TTS modules so a change to the error contract is
|
|
5
|
+
one edit. Voho errors are ``{"error": {"code", "message"}}`` with an HTTP
|
|
6
|
+
status, and the code is the part worth surfacing: a developer whose agent
|
|
7
|
+
stopped talking wants to see ``insufficient_credit`` in the log, not a 402.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
import asyncio
|
|
13
|
+
import json
|
|
14
|
+
import os
|
|
15
|
+
from typing import Any
|
|
16
|
+
|
|
17
|
+
import aiohttp
|
|
18
|
+
|
|
19
|
+
from livekit.agents import APIConnectionError, APIStatusError, APITimeoutError
|
|
20
|
+
|
|
21
|
+
DEFAULT_BASE_URL = "https://app.voho.ai"
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def resolve_api_key(api_key: str | None) -> str:
|
|
25
|
+
key = api_key or os.environ.get("VOHO_API_KEY")
|
|
26
|
+
if not key:
|
|
27
|
+
raise ValueError(
|
|
28
|
+
"Voho API key is required: pass api_key=... or set VOHO_API_KEY. "
|
|
29
|
+
"Create one at https://app.voho.ai/tokens"
|
|
30
|
+
)
|
|
31
|
+
return key
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def resolve_base_url(base_url: str | None) -> str:
|
|
35
|
+
return (base_url or os.environ.get("VOHO_BASE_URL") or DEFAULT_BASE_URL).rstrip("/")
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def ws_url(base_url: str, path: str) -> str:
|
|
39
|
+
if base_url.startswith("https://"):
|
|
40
|
+
return "wss://" + base_url[len("https://") :] + path
|
|
41
|
+
if base_url.startswith("http://"):
|
|
42
|
+
return "ws://" + base_url[len("http://") :] + path
|
|
43
|
+
return base_url + path
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def headers(api_key: str) -> dict[str, str]:
|
|
47
|
+
return {"Authorization": f"Bearer {api_key}", "User-Agent": "livekit-plugins-voho"}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def error_from_body(status: int, body: bytes | str) -> APIStatusError:
|
|
51
|
+
"""A Voho error body, turned into the exception LiveKit retries or reports on."""
|
|
52
|
+
code, message = "http_error", f"HTTP {status}"
|
|
53
|
+
try:
|
|
54
|
+
parsed = json.loads(body if isinstance(body, str) else body.decode("utf-8", "replace"))
|
|
55
|
+
err = parsed.get("error") if isinstance(parsed, dict) else None
|
|
56
|
+
if isinstance(err, dict):
|
|
57
|
+
code = str(err.get("code", code))
|
|
58
|
+
message = str(err.get("message", message))
|
|
59
|
+
except (ValueError, AttributeError):
|
|
60
|
+
pass
|
|
61
|
+
# 4xx other than rate limiting is the caller's to fix; retrying a bad key
|
|
62
|
+
# or an empty balance just spends the retry budget on the same answer.
|
|
63
|
+
retryable = status >= 500 or status == 429
|
|
64
|
+
return APIStatusError(f"voho: {code}: {message}", status_code=status, body=None, retryable=retryable)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def error_from_frame(frame: dict[str, Any]) -> APIStatusError:
|
|
68
|
+
"""The ``{"type": "error"}`` frame a Voho socket sends, as an exception."""
|
|
69
|
+
err = frame.get("error") or {}
|
|
70
|
+
code = str(err.get("code", "socket_error"))
|
|
71
|
+
message = str(err.get("message", "The socket reported an error."))
|
|
72
|
+
terminal = code in {"unauthorized", "insufficient_credit", "unknown_voice", "unknown_model", "unknown_format", "invalid_request", "text_too_long"}
|
|
73
|
+
return APIStatusError(f"voho: {code}: {message}", status_code=-1, body=None, retryable=not terminal)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
def translate(exc: BaseException) -> BaseException:
|
|
77
|
+
"""Anything aiohttp or asyncio raises, as the exception LiveKit expects."""
|
|
78
|
+
if isinstance(exc, (APIStatusError, APIConnectionError, APITimeoutError)):
|
|
79
|
+
return exc
|
|
80
|
+
if isinstance(exc, asyncio.TimeoutError):
|
|
81
|
+
return APITimeoutError()
|
|
82
|
+
if isinstance(exc, aiohttp.ClientResponseError):
|
|
83
|
+
return APIStatusError(f"voho: HTTP {exc.status}: {exc.message}", status_code=exc.status, body=None)
|
|
84
|
+
if isinstance(exc, aiohttp.ClientError):
|
|
85
|
+
return APIConnectionError(f"voho: {exc}")
|
|
86
|
+
return APIConnectionError(f"voho: {exc!r}")
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""Names the API accepts, so a typo is a type error rather than a 400 at runtime.
|
|
2
|
+
|
|
3
|
+
These mirror the catalogue served by ``GET /v1/voices``. The literal types are
|
|
4
|
+
for editor completion and static checking; any string is still passed through,
|
|
5
|
+
so a voice added to the catalogue after this release works without an upgrade.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from typing import Literal, Union
|
|
9
|
+
|
|
10
|
+
TTSModel = Literal["sada-1", "nabra-1"]
|
|
11
|
+
"""``sada-1`` is the flagship and the only tier with a streaming path."""
|
|
12
|
+
|
|
13
|
+
TTSVoice = Union[
|
|
14
|
+
Literal[
|
|
15
|
+
# Najdi — Riyadh and the centre
|
|
16
|
+
"layla", "nouf", "faisal", "omar",
|
|
17
|
+
# Hijazi — Jeddah, Makkah, Madinah
|
|
18
|
+
"salma", "rawan", "hisham", "tariq",
|
|
19
|
+
# Omani — Muscat and the interior
|
|
20
|
+
"maryam", "salim",
|
|
21
|
+
# Gulf, Egyptian, Modern Standard
|
|
22
|
+
"reem", "maha", "khalid", "yousef",
|
|
23
|
+
# English
|
|
24
|
+
"astra", "bancroft", "clementine", "marlow", "vespera", "cupola",
|
|
25
|
+
],
|
|
26
|
+
str,
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
STTLanguage = Union[Literal["ar-SA", "ar-OM", "ar-AE", "ar-EG", "ar", "en-US", "en-GB"], str]
|
|
30
|
+
"""Any Arabic code also transcribes English mixed into the same sentence."""
|
|
31
|
+
|
|
32
|
+
DEFAULT_VOICE: TTSVoice = "layla"
|
|
33
|
+
DEFAULT_MODEL: TTSModel = "sada-1"
|
|
34
|
+
DEFAULT_LANGUAGE: STTLanguage = "ar-SA"
|
|
35
|
+
|
|
36
|
+
TTS_SAMPLE_RATE = 24000
|
|
37
|
+
"""What ``format=pcm`` streams: 16-bit little-endian mono at 24 kHz."""
|
|
38
|
+
|
|
39
|
+
STT_SAMPLE_RATE = 16000
|
|
40
|
+
"""What the transcription socket is opened at. Input is resampled to this."""
|
|
File without changes
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
"""Voho speech-to-text for LiveKit Agents.
|
|
2
|
+
|
|
3
|
+
Arabic with English mixed in, which is how the Gulf speaks on the phone: a
|
|
4
|
+
caller starts in Najdi and says the product name in English, and a
|
|
5
|
+
transcriber locked to one language writes nonsense at exactly that moment.
|
|
6
|
+
Any ``ar-*`` language code here transcribes both.
|
|
7
|
+
|
|
8
|
+
``recognize(buffer)`` sends a finished utterance to ``POST /v1/transcribe``.
|
|
9
|
+
``stream()`` opens ``/v1/transcribe/ws`` and sends audio frames as they arrive,
|
|
10
|
+
getting interim results back while the person is still talking — which is
|
|
11
|
+
what LiveKit's turn detection and interruption handling are built to consume.
|
|
12
|
+
Input is resampled to 16 kHz mono by the base class before it reaches here.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import asyncio
|
|
18
|
+
import json
|
|
19
|
+
from dataclasses import dataclass, replace
|
|
20
|
+
|
|
21
|
+
import aiohttp
|
|
22
|
+
from livekit import rtc
|
|
23
|
+
|
|
24
|
+
from livekit.agents import (
|
|
25
|
+
DEFAULT_API_CONNECT_OPTIONS,
|
|
26
|
+
APIConnectOptions,
|
|
27
|
+
stt,
|
|
28
|
+
utils,
|
|
29
|
+
)
|
|
30
|
+
from livekit.agents.types import NOT_GIVEN, NotGivenOr
|
|
31
|
+
from livekit.agents.utils import AudioBuffer, is_given
|
|
32
|
+
|
|
33
|
+
from . import _api
|
|
34
|
+
from .log import logger
|
|
35
|
+
from .models import DEFAULT_LANGUAGE, STT_SAMPLE_RATE, STTLanguage
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
@dataclass
|
|
39
|
+
class _Options:
|
|
40
|
+
language: str
|
|
41
|
+
base_url: str
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class STT(stt.STT):
|
|
45
|
+
def __init__(
|
|
46
|
+
self,
|
|
47
|
+
*,
|
|
48
|
+
language: STTLanguage = DEFAULT_LANGUAGE,
|
|
49
|
+
api_key: str | None = None,
|
|
50
|
+
base_url: str | None = None,
|
|
51
|
+
http_session: aiohttp.ClientSession | None = None,
|
|
52
|
+
) -> None:
|
|
53
|
+
"""Voho STT.
|
|
54
|
+
|
|
55
|
+
Args:
|
|
56
|
+
language: ``ar-SA`` by default. Any Arabic code also picks up English
|
|
57
|
+
in the same sentence. ``en-US`` for an English-only line.
|
|
58
|
+
api_key: A ``voho_sk_live_…`` key, or ``VOHO_API_KEY``.
|
|
59
|
+
base_url: Override for a private or Saudi-hosted deployment, or
|
|
60
|
+
``VOHO_BASE_URL``.
|
|
61
|
+
http_session: Share LiveKit's session rather than opening one.
|
|
62
|
+
"""
|
|
63
|
+
super().__init__(capabilities=stt.STTCapabilities(streaming=True, interim_results=True))
|
|
64
|
+
self._api_key = _api.resolve_api_key(api_key)
|
|
65
|
+
self._opts = _Options(language=language, base_url=_api.resolve_base_url(base_url))
|
|
66
|
+
self._session = http_session
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def model(self) -> str:
|
|
70
|
+
return "voho-transcribe"
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
def provider(self) -> str:
|
|
74
|
+
return "Voho"
|
|
75
|
+
|
|
76
|
+
def _ensure_session(self) -> aiohttp.ClientSession:
|
|
77
|
+
if not self._session:
|
|
78
|
+
self._session = utils.http_context.http_session()
|
|
79
|
+
return self._session
|
|
80
|
+
|
|
81
|
+
def update_options(self, *, language: NotGivenOr[STTLanguage] = NOT_GIVEN) -> None:
|
|
82
|
+
if is_given(language):
|
|
83
|
+
self._opts = replace(self._opts, language=language)
|
|
84
|
+
|
|
85
|
+
async def _recognize_impl(
|
|
86
|
+
self,
|
|
87
|
+
buffer: AudioBuffer,
|
|
88
|
+
*,
|
|
89
|
+
language: NotGivenOr[str] = NOT_GIVEN,
|
|
90
|
+
conn_options: APIConnectOptions,
|
|
91
|
+
) -> stt.SpeechEvent:
|
|
92
|
+
lang = language if is_given(language) else self._opts.language
|
|
93
|
+
wav = rtc.combine_audio_frames(buffer).to_wav_bytes()
|
|
94
|
+
|
|
95
|
+
form = aiohttp.FormData()
|
|
96
|
+
form.add_field("file", wav, filename="utterance.wav", content_type="audio/wav")
|
|
97
|
+
form.add_field("language", lang)
|
|
98
|
+
|
|
99
|
+
try:
|
|
100
|
+
async with self._ensure_session().post(
|
|
101
|
+
f"{self._opts.base_url}/v1/transcribe",
|
|
102
|
+
headers=_api.headers(self._api_key),
|
|
103
|
+
data=form,
|
|
104
|
+
timeout=aiohttp.ClientTimeout(total=60, sock_connect=conn_options.timeout),
|
|
105
|
+
) as resp:
|
|
106
|
+
if resp.status >= 400:
|
|
107
|
+
raise _api.error_from_body(resp.status, await resp.read())
|
|
108
|
+
body = await resp.json()
|
|
109
|
+
except BaseException as exc:
|
|
110
|
+
raise _api.translate(exc) from exc
|
|
111
|
+
|
|
112
|
+
return stt.SpeechEvent(
|
|
113
|
+
type=stt.SpeechEventType.FINAL_TRANSCRIPT,
|
|
114
|
+
request_id=utils.shortuuid("voho_"),
|
|
115
|
+
alternatives=[
|
|
116
|
+
stt.SpeechData(
|
|
117
|
+
language=lang,
|
|
118
|
+
text=str(body.get("text") or ""),
|
|
119
|
+
confidence=float(body.get("confidence") or 0.0),
|
|
120
|
+
)
|
|
121
|
+
],
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
def stream(
|
|
125
|
+
self,
|
|
126
|
+
*,
|
|
127
|
+
language: NotGivenOr[str] = NOT_GIVEN,
|
|
128
|
+
conn_options: APIConnectOptions = DEFAULT_API_CONNECT_OPTIONS,
|
|
129
|
+
) -> RecognizeStream:
|
|
130
|
+
return RecognizeStream(
|
|
131
|
+
stt=self,
|
|
132
|
+
language=language if is_given(language) else self._opts.language,
|
|
133
|
+
conn_options=conn_options,
|
|
134
|
+
)
|
|
135
|
+
|
|
136
|
+
async def aclose(self) -> None:
|
|
137
|
+
pass
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class RecognizeStream(stt.RecognizeStream):
|
|
141
|
+
"""Frames in, transcripts out, on one socket for the life of the stream."""
|
|
142
|
+
|
|
143
|
+
def __init__(self, *, stt: STT, language: str, conn_options: APIConnectOptions) -> None:
|
|
144
|
+
super().__init__(stt=stt, conn_options=conn_options, sample_rate=STT_SAMPLE_RATE)
|
|
145
|
+
self._stt: STT = stt
|
|
146
|
+
self._language = language
|
|
147
|
+
|
|
148
|
+
async def _run(self) -> None:
|
|
149
|
+
opts = self._stt._opts
|
|
150
|
+
request_id = utils.shortuuid("voho_")
|
|
151
|
+
ws: aiohttp.ClientWebSocketResponse | None = None
|
|
152
|
+
|
|
153
|
+
try:
|
|
154
|
+
ws = await asyncio.wait_for(
|
|
155
|
+
self._stt._ensure_session().ws_connect(
|
|
156
|
+
_api.ws_url(opts.base_url, "/v1/transcribe/ws"),
|
|
157
|
+
headers=_api.headers(self._stt._api_key),
|
|
158
|
+
),
|
|
159
|
+
self._conn_options.timeout,
|
|
160
|
+
)
|
|
161
|
+
await _expect(ws, "ready")
|
|
162
|
+
await ws.send_str(
|
|
163
|
+
json.dumps(
|
|
164
|
+
{"type": "start", "language": self._language, "sample_rate": STT_SAMPLE_RATE, "encoding": "pcm"}
|
|
165
|
+
)
|
|
166
|
+
)
|
|
167
|
+
await _expect(ws, "started")
|
|
168
|
+
|
|
169
|
+
async def send() -> None:
|
|
170
|
+
assert ws is not None
|
|
171
|
+
async for item in self._input_ch:
|
|
172
|
+
if isinstance(item, self._FlushSentinel):
|
|
173
|
+
# A flush is a hint that an utterance has ended. The
|
|
174
|
+
# server segments on silence itself, so there is
|
|
175
|
+
# nothing to send; the final result follows on its own.
|
|
176
|
+
continue
|
|
177
|
+
await ws.send_bytes(item.data.tobytes())
|
|
178
|
+
await ws.send_str(json.dumps({"type": "stop"}))
|
|
179
|
+
|
|
180
|
+
async def receive() -> None:
|
|
181
|
+
assert ws is not None
|
|
182
|
+
speaking = False
|
|
183
|
+
async for msg in ws:
|
|
184
|
+
if msg.type != aiohttp.WSMsgType.TEXT:
|
|
185
|
+
if msg.type in (aiohttp.WSMsgType.CLOSED, aiohttp.WSMsgType.CLOSE, aiohttp.WSMsgType.ERROR):
|
|
186
|
+
break
|
|
187
|
+
continue
|
|
188
|
+
frame = json.loads(msg.data)
|
|
189
|
+
kind = frame.get("type")
|
|
190
|
+
if kind == "transcript":
|
|
191
|
+
text = str(frame.get("text") or "")
|
|
192
|
+
if not text:
|
|
193
|
+
continue
|
|
194
|
+
final = bool(frame.get("final"))
|
|
195
|
+
data = stt.SpeechData(
|
|
196
|
+
language=str(frame.get("language") or self._language),
|
|
197
|
+
text=text,
|
|
198
|
+
confidence=float(frame.get("confidence") or 0.0),
|
|
199
|
+
)
|
|
200
|
+
if not speaking:
|
|
201
|
+
speaking = True
|
|
202
|
+
self._event_ch.send_nowait(
|
|
203
|
+
stt.SpeechEvent(type=stt.SpeechEventType.START_OF_SPEECH, request_id=request_id)
|
|
204
|
+
)
|
|
205
|
+
self._event_ch.send_nowait(
|
|
206
|
+
stt.SpeechEvent(
|
|
207
|
+
type=stt.SpeechEventType.FINAL_TRANSCRIPT if final else stt.SpeechEventType.INTERIM_TRANSCRIPT,
|
|
208
|
+
request_id=request_id,
|
|
209
|
+
alternatives=[data],
|
|
210
|
+
)
|
|
211
|
+
)
|
|
212
|
+
if final:
|
|
213
|
+
speaking = False
|
|
214
|
+
self._event_ch.send_nowait(
|
|
215
|
+
stt.SpeechEvent(type=stt.SpeechEventType.END_OF_SPEECH, request_id=request_id)
|
|
216
|
+
)
|
|
217
|
+
elif kind == "done":
|
|
218
|
+
return
|
|
219
|
+
elif kind == "error":
|
|
220
|
+
raise _api.error_from_frame(frame)
|
|
221
|
+
else:
|
|
222
|
+
logger.debug("voho stt: ignoring frame %s", kind)
|
|
223
|
+
# The server closed without saying done; if we were still
|
|
224
|
+
# sending, that is a dropped connection and LiveKit may retry.
|
|
225
|
+
if not self._input_ch.closed:
|
|
226
|
+
raise aiohttp.ClientConnectionError("voho: transcription socket closed unexpectedly")
|
|
227
|
+
|
|
228
|
+
send_task = asyncio.create_task(send(), name="voho-stt-send")
|
|
229
|
+
recv_task = asyncio.create_task(receive(), name="voho-stt-recv")
|
|
230
|
+
try:
|
|
231
|
+
await asyncio.gather(send_task, recv_task)
|
|
232
|
+
finally:
|
|
233
|
+
for t in (send_task, recv_task):
|
|
234
|
+
if not t.done():
|
|
235
|
+
t.cancel()
|
|
236
|
+
except BaseException as exc:
|
|
237
|
+
raise _api.translate(exc) from exc
|
|
238
|
+
finally:
|
|
239
|
+
if ws is not None:
|
|
240
|
+
try:
|
|
241
|
+
await ws.close()
|
|
242
|
+
except Exception:
|
|
243
|
+
pass
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
async def _expect(ws: aiohttp.ClientWebSocketResponse, kind: str) -> dict:
|
|
247
|
+
async for msg in ws:
|
|
248
|
+
if msg.type != aiohttp.WSMsgType.TEXT:
|
|
249
|
+
continue
|
|
250
|
+
frame = json.loads(msg.data)
|
|
251
|
+
if frame.get("type") == kind:
|
|
252
|
+
return frame
|
|
253
|
+
if frame.get("type") == "error":
|
|
254
|
+
raise _api.error_from_frame(frame)
|
|
255
|
+
raise aiohttp.ClientConnectionError(f"voho: socket closed while waiting for {kind}")
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
"""Voho text-to-speech for LiveKit Agents.
|
|
2
|
+
|
|
3
|
+
Two paths, because LiveKit asks for two:
|
|
4
|
+
|
|
5
|
+
``synthesize(text)`` has the whole sentence up front and wants audio back as
|
|
6
|
+
fast as it can be produced. That is ``POST /v1/speech/stream`` with a raw
|
|
7
|
+
PCM body: chunked HTTP, first audio in roughly 200 ms.
|
|
8
|
+
|
|
9
|
+
``stream()`` is fed tokens as an LLM emits them and must start speaking before
|
|
10
|
+
the sentence is finished. That is ``/v1/speech/ws``: text frames in, audio
|
|
11
|
+
frames out, pipelined rather than batched at the end.
|
|
12
|
+
|
|
13
|
+
Sockets are pooled. Opening one costs a TLS handshake and a key check, several
|
|
14
|
+
hundred milliseconds that a caller hears as the agent hesitating before every
|
|
15
|
+
sentence; once open, first audio follows the text in about 200 ms. So a socket
|
|
16
|
+
that has finished an utterance goes back to the pool for the next, ``prewarm()``
|
|
17
|
+
opens one before the first sentence is needed, and a socket idle for longer
|
|
18
|
+
than the proxy in front of the API allows is replaced rather than reused.
|
|
19
|
+
|
|
20
|
+
Audio is 16-bit little-endian mono PCM at 24 kHz in both cases. LiveKit
|
|
21
|
+
resamples for the room, so nothing here does.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
from __future__ import annotations
|
|
25
|
+
|
|
26
|
+
import asyncio
|
|
27
|
+
import json
|
|
28
|
+
from dataclasses import dataclass, replace
|
|
29
|
+
|
|
30
|
+
import aiohttp
|
|
31
|
+
|
|
32
|
+
from livekit.agents import (
|
|
33
|
+
DEFAULT_API_CONNECT_OPTIONS,
|
|
34
|
+
APIConnectOptions,
|
|
35
|
+
tts,
|
|
36
|
+
utils,
|
|
37
|
+
)
|
|
38
|
+
from livekit.agents.types import NOT_GIVEN, NotGivenOr
|
|
39
|
+
from livekit.agents.utils import is_given
|
|
40
|
+
|
|
41
|
+
from . import _api
|
|
42
|
+
from .log import logger
|
|
43
|
+
from .models import DEFAULT_MODEL, DEFAULT_VOICE, TTS_SAMPLE_RATE, TTSModel, TTSVoice
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
@dataclass
|
|
47
|
+
class _Options:
|
|
48
|
+
voice: str
|
|
49
|
+
model: str
|
|
50
|
+
base_url: str
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class TTS(tts.TTS):
|
|
54
|
+
def __init__(
|
|
55
|
+
self,
|
|
56
|
+
*,
|
|
57
|
+
voice: TTSVoice = DEFAULT_VOICE,
|
|
58
|
+
model: TTSModel = DEFAULT_MODEL,
|
|
59
|
+
api_key: str | None = None,
|
|
60
|
+
base_url: str | None = None,
|
|
61
|
+
http_session: aiohttp.ClientSession | None = None,
|
|
62
|
+
) -> None:
|
|
63
|
+
"""Voho TTS.
|
|
64
|
+
|
|
65
|
+
Args:
|
|
66
|
+
voice: A voice id from ``GET /v1/voices`` — ``layla`` (Najdi) by
|
|
67
|
+
default; ``salma`` for Hijazi, ``maryam`` for Omani, ``clementine``
|
|
68
|
+
for English. The dialect is the voice.
|
|
69
|
+
model: ``sada-1`` (default, streaming) or ``nabra-1`` (cheaper,
|
|
70
|
+
chunked only). Passing ``nabra-1`` makes ``stream()`` fall back to
|
|
71
|
+
per-sentence synthesis.
|
|
72
|
+
api_key: A ``voho_sk_live_…`` key, or ``VOHO_API_KEY``.
|
|
73
|
+
base_url: Override for a private or Saudi-hosted deployment, or
|
|
74
|
+
``VOHO_BASE_URL``.
|
|
75
|
+
http_session: Share LiveKit's session rather than opening one.
|
|
76
|
+
"""
|
|
77
|
+
super().__init__(
|
|
78
|
+
capabilities=tts.TTSCapabilities(streaming=model == "sada-1"),
|
|
79
|
+
sample_rate=TTS_SAMPLE_RATE,
|
|
80
|
+
num_channels=1,
|
|
81
|
+
)
|
|
82
|
+
self._api_key = _api.resolve_api_key(api_key)
|
|
83
|
+
self._opts = _Options(voice=voice, model=model, base_url=_api.resolve_base_url(base_url))
|
|
84
|
+
self._session = http_session
|
|
85
|
+
self._pool = utils.ConnectionPool[aiohttp.ClientWebSocketResponse](
|
|
86
|
+
connect_cb=self._connect_ws,
|
|
87
|
+
close_cb=self._close_ws,
|
|
88
|
+
# Idle sockets are cut by the proxy at 120 s; refresh on use, so a
|
|
89
|
+
# socket in steady use lives on and one left idle is replaced.
|
|
90
|
+
max_session_duration=50,
|
|
91
|
+
mark_refreshed_on_get=True,
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
async def _connect_ws(self, timeout: float) -> aiohttp.ClientWebSocketResponse:
|
|
95
|
+
ws = await asyncio.wait_for(
|
|
96
|
+
self._ensure_session().ws_connect(
|
|
97
|
+
_api.ws_url(self._opts.base_url, "/v1/speech/ws"),
|
|
98
|
+
headers=_api.headers(self._api_key),
|
|
99
|
+
),
|
|
100
|
+
timeout,
|
|
101
|
+
)
|
|
102
|
+
try:
|
|
103
|
+
await asyncio.wait_for(_expect(ws, "ready"), timeout)
|
|
104
|
+
except BaseException:
|
|
105
|
+
await ws.close()
|
|
106
|
+
raise
|
|
107
|
+
return ws
|
|
108
|
+
|
|
109
|
+
async def _close_ws(self, ws: aiohttp.ClientWebSocketResponse) -> None:
|
|
110
|
+
await ws.close()
|
|
111
|
+
|
|
112
|
+
def prewarm(self) -> None:
|
|
113
|
+
"""Open a socket before the first sentence, so it is not paid for then."""
|
|
114
|
+
if self._opts.model == "sada-1":
|
|
115
|
+
self._pool.prewarm()
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
def model(self) -> str:
|
|
119
|
+
return self._opts.model
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
def provider(self) -> str:
|
|
123
|
+
return "Voho"
|
|
124
|
+
|
|
125
|
+
def _ensure_session(self) -> aiohttp.ClientSession:
|
|
126
|
+
if not self._session:
|
|
127
|
+
self._session = utils.http_context.http_session()
|
|
128
|
+
return self._session
|
|
129
|
+
|
|
130
|
+
def update_options(
|
|
131
|
+
self,
|
|
132
|
+
*,
|
|
133
|
+
voice: NotGivenOr[TTSVoice] = NOT_GIVEN,
|
|
134
|
+
model: NotGivenOr[TTSModel] = NOT_GIVEN,
|
|
135
|
+
) -> None:
|
|
136
|
+
"""Change the voice or model for subsequent requests. Switching dialect
|
|
137
|
+
mid-call — a Hijazi caller on a Najdi line — is this and nothing else."""
|
|
138
|
+
if is_given(voice):
|
|
139
|
+
self._opts = replace(self._opts, voice=voice)
|
|
140
|
+
if is_given(model):
|
|
141
|
+
self._opts = replace(self._opts, model=model)
|
|
142
|
+
|
|
143
|
+
def synthesize(
|
|
144
|
+
self, text: str, *, conn_options: APIConnectOptions = DEFAULT_API_CONNECT_OPTIONS
|
|
145
|
+
) -> ChunkedStream:
|
|
146
|
+
return ChunkedStream(tts=self, input_text=text, conn_options=conn_options)
|
|
147
|
+
|
|
148
|
+
def stream(
|
|
149
|
+
self, *, conn_options: APIConnectOptions = DEFAULT_API_CONNECT_OPTIONS
|
|
150
|
+
) -> SynthesizeStream:
|
|
151
|
+
if self._opts.model != "sada-1":
|
|
152
|
+
# The economy tier has no streaming path upstream; LiveKit's own
|
|
153
|
+
# adapter turns sentence-at-a-time synthesis into a stream.
|
|
154
|
+
return super().stream(conn_options=conn_options) # type: ignore[return-value]
|
|
155
|
+
return SynthesizeStream(tts=self, conn_options=conn_options)
|
|
156
|
+
|
|
157
|
+
async def aclose(self) -> None:
|
|
158
|
+
# The pool is ours; the HTTP session is LiveKit's or the caller's.
|
|
159
|
+
await self._pool.aclose()
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
class ChunkedStream(tts.ChunkedStream):
|
|
163
|
+
"""Whole text in, chunked PCM out."""
|
|
164
|
+
|
|
165
|
+
def __init__(self, *, tts: TTS, input_text: str, conn_options: APIConnectOptions) -> None:
|
|
166
|
+
super().__init__(tts=tts, input_text=input_text, conn_options=conn_options)
|
|
167
|
+
self._tts: TTS = tts
|
|
168
|
+
|
|
169
|
+
async def _run(self, output_emitter: tts.AudioEmitter) -> None:
|
|
170
|
+
opts = self._tts._opts
|
|
171
|
+
request_id = utils.shortuuid("voho_")
|
|
172
|
+
try:
|
|
173
|
+
async with self._tts._ensure_session().post(
|
|
174
|
+
f"{opts.base_url}/v1/speech/stream",
|
|
175
|
+
headers={**_api.headers(self._tts._api_key), "Accept": "audio/L16"},
|
|
176
|
+
json={"text": self._input_text, "voice": opts.voice, "model": opts.model, "format": "pcm"},
|
|
177
|
+
timeout=aiohttp.ClientTimeout(total=60, sock_connect=self._conn_options.timeout),
|
|
178
|
+
) as resp:
|
|
179
|
+
if resp.status >= 400:
|
|
180
|
+
raise _api.error_from_body(resp.status, await resp.read())
|
|
181
|
+
|
|
182
|
+
output_emitter.initialize(
|
|
183
|
+
request_id=request_id,
|
|
184
|
+
sample_rate=self._tts.sample_rate,
|
|
185
|
+
num_channels=1,
|
|
186
|
+
mime_type="audio/pcm",
|
|
187
|
+
frame_size_ms=50,
|
|
188
|
+
)
|
|
189
|
+
async for data, _ in resp.content.iter_chunks():
|
|
190
|
+
output_emitter.push(data)
|
|
191
|
+
output_emitter.flush()
|
|
192
|
+
except BaseException as exc:
|
|
193
|
+
raise _api.translate(exc) from exc
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
class SynthesizeStream(tts.SynthesizeStream):
|
|
197
|
+
"""Tokens in as they arrive, PCM out as it is produced, on a pooled socket."""
|
|
198
|
+
|
|
199
|
+
def __init__(self, *, tts: TTS, conn_options: APIConnectOptions) -> None:
|
|
200
|
+
super().__init__(tts=tts, conn_options=conn_options)
|
|
201
|
+
self._tts: TTS = tts
|
|
202
|
+
|
|
203
|
+
async def _run(self, output_emitter: tts.AudioEmitter) -> None:
|
|
204
|
+
output_emitter.initialize(
|
|
205
|
+
request_id=utils.shortuuid("voho_"),
|
|
206
|
+
sample_rate=self._tts.sample_rate,
|
|
207
|
+
num_channels=1,
|
|
208
|
+
mime_type="audio/pcm",
|
|
209
|
+
# LiveKit holds 200 ms of audio before its first frame by default.
|
|
210
|
+
# On a phone line that is 200 ms of silence before every sentence.
|
|
211
|
+
frame_size_ms=50,
|
|
212
|
+
stream=True,
|
|
213
|
+
)
|
|
214
|
+
pool = self._tts._pool
|
|
215
|
+
|
|
216
|
+
async def acquire() -> aiohttp.ClientWebSocketResponse:
|
|
217
|
+
# A pooled socket can have been closed by the far end while it sat
|
|
218
|
+
# idle; that one is discarded and the next is tried.
|
|
219
|
+
for _ in range(3):
|
|
220
|
+
ws = await pool.get(timeout=self._conn_options.timeout)
|
|
221
|
+
if not ws.closed:
|
|
222
|
+
return ws
|
|
223
|
+
pool.remove(ws)
|
|
224
|
+
raise aiohttp.ClientConnectionError("voho: could not obtain an open speech socket")
|
|
225
|
+
|
|
226
|
+
async def utterance(first: str) -> bool:
|
|
227
|
+
"""Speak one segment. Returns False when input ended without a flush."""
|
|
228
|
+
opts = self._tts._opts
|
|
229
|
+
ws = await acquire()
|
|
230
|
+
ok = False
|
|
231
|
+
try:
|
|
232
|
+
await ws.send_str(json.dumps({"type": "start", "voice": opts.voice, "model": opts.model, "format": "pcm"}))
|
|
233
|
+
await _expect(ws, "started")
|
|
234
|
+
output_emitter.start_segment(segment_id=utils.shortuuid("seg_"))
|
|
235
|
+
self._mark_started()
|
|
236
|
+
|
|
237
|
+
async def receive() -> None:
|
|
238
|
+
async for msg in ws:
|
|
239
|
+
if msg.type == aiohttp.WSMsgType.BINARY:
|
|
240
|
+
output_emitter.push(msg.data)
|
|
241
|
+
elif msg.type == aiohttp.WSMsgType.TEXT:
|
|
242
|
+
frame = json.loads(msg.data)
|
|
243
|
+
if frame.get("type") == "done":
|
|
244
|
+
return
|
|
245
|
+
if frame.get("type") == "error":
|
|
246
|
+
raise _api.error_from_frame(frame)
|
|
247
|
+
elif msg.type in (aiohttp.WSMsgType.CLOSED, aiohttp.WSMsgType.CLOSE, aiohttp.WSMsgType.ERROR):
|
|
248
|
+
break
|
|
249
|
+
raise aiohttp.ClientConnectionError("voho: socket closed before the utterance finished")
|
|
250
|
+
|
|
251
|
+
recv = asyncio.create_task(receive(), name="voho-tts-recv")
|
|
252
|
+
try:
|
|
253
|
+
await ws.send_str(json.dumps({"type": "text", "text": first}))
|
|
254
|
+
flushed = False
|
|
255
|
+
async for item in self._input_ch:
|
|
256
|
+
if isinstance(item, self._FlushSentinel):
|
|
257
|
+
flushed = True
|
|
258
|
+
break
|
|
259
|
+
if item:
|
|
260
|
+
await ws.send_str(json.dumps({"type": "text", "text": item}))
|
|
261
|
+
if recv.done():
|
|
262
|
+
recv.result() # surface a receive-side failure now
|
|
263
|
+
await ws.send_str(json.dumps({"type": "flush"}))
|
|
264
|
+
await recv
|
|
265
|
+
finally:
|
|
266
|
+
if not recv.done():
|
|
267
|
+
recv.cancel()
|
|
268
|
+
output_emitter.end_segment()
|
|
269
|
+
ok = True
|
|
270
|
+
return flushed
|
|
271
|
+
finally:
|
|
272
|
+
# A socket that finished cleanly goes back for the next
|
|
273
|
+
# sentence; anything else is closed, never reused half-way.
|
|
274
|
+
if ok:
|
|
275
|
+
pool.put(ws)
|
|
276
|
+
else:
|
|
277
|
+
pool.remove(ws)
|
|
278
|
+
|
|
279
|
+
try:
|
|
280
|
+
async for item in self._input_ch:
|
|
281
|
+
if isinstance(item, self._FlushSentinel) or not item:
|
|
282
|
+
continue
|
|
283
|
+
if not await utterance(item):
|
|
284
|
+
break
|
|
285
|
+
except BaseException as exc:
|
|
286
|
+
raise _api.translate(exc) from exc
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
async def _expect(ws: aiohttp.ClientWebSocketResponse, kind: str) -> dict:
|
|
290
|
+
"""Read control frames until the one we are waiting for, raising on error."""
|
|
291
|
+
async for msg in ws:
|
|
292
|
+
if msg.type != aiohttp.WSMsgType.TEXT:
|
|
293
|
+
continue
|
|
294
|
+
frame = json.loads(msg.data)
|
|
295
|
+
if frame.get("type") == kind:
|
|
296
|
+
return frame
|
|
297
|
+
if frame.get("type") == "error":
|
|
298
|
+
raise _api.error_from_frame(frame)
|
|
299
|
+
logger.debug("voho tts: ignoring frame %s while waiting for %s", frame.get("type"), kind)
|
|
300
|
+
raise aiohttp.ClientConnectionError(f"voho: socket closed while waiting for {kind}")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: livekit-plugins-voho
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Saudi Arabic voice for LiveKit Agents: Najdi and Hijazi accents, Arabic-English code-switching, streaming speech-to-text and text-to-speech.
|
|
5
|
+
Project-URL: Documentation, https://docs.voho.ai/livekit
|
|
6
|
+
Project-URL: Website, https://voho.ai
|
|
7
|
+
Project-URL: Source, https://github.com/yar-malik/livekit-plugins-voho
|
|
8
|
+
Project-URL: Issues, https://github.com/yar-malik/livekit-plugins-voho/issues
|
|
9
|
+
Author-email: Voho <hello@voho.ai>
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: arabic,arabic stt,arabic tts,gulf arabic,hijazi,ksa,livekit,livekit-agents,najdi,saudi accent,saudi arabic,speech-to-text,text-to-speech,voice-agent
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Natural Language :: Arabic
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
19
|
+
Classifier: Topic :: Multimedia :: Video
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Requires-Dist: aiohttp>=3.9
|
|
23
|
+
Requires-Dist: livekit-agents>=1.0
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: numpy; extra == 'dev'
|
|
26
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
|
|
27
|
+
Requires-Dist: pytest>=8; extra == 'dev'
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
|
|
30
|
+
# livekit-plugins-voho
|
|
31
|
+
|
|
32
|
+
**Saudi Arabic voice for LiveKit Agents.** Speech-to-text and text-to-speech that sound like the Kingdom answers the phone: Najdi for Riyadh, Hijazi for Jeddah and Makkah, plus Omani, Gulf, Egyptian and Modern Standard Arabic. It also handles English mixed into the same sentence, because that is how Saudi callers actually talk.
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install livekit-plugins-voho
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
from livekit.agents import AgentSession
|
|
40
|
+
from livekit.plugins import voho
|
|
41
|
+
|
|
42
|
+
session = AgentSession(
|
|
43
|
+
stt=voho.STT(language="ar-SA"), # Saudi Arabic, with English mixed in
|
|
44
|
+
tts=voho.TTS(voice="layla"), # a Najdi voice from Riyadh
|
|
45
|
+
llm=..., # any LiveKit LLM plugin
|
|
46
|
+
vad=..., # e.g. silero
|
|
47
|
+
)
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Get a key at [app.voho.ai](https://app.voho.ai), then `export VOHO_API_KEY=voho_sk_live_...`.
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Why a Saudi-specific plugin
|
|
55
|
+
|
|
56
|
+
Most "Arabic" voices are Modern Standard Arabic: the register of the news, not of a phone call. A Riyadh caller hears it as a recording. A Jeddah caller hears a Najdi agent as out of town, the way a London voice sounds in Glasgow. The dialect is not a detail. It is whether the caller stays on the line.
|
|
57
|
+
|
|
58
|
+
Voho is built around that:
|
|
59
|
+
|
|
60
|
+
- **Saudi dialects as separate voices.** Pick Najdi or Hijazi by name, and switch mid-call when a Jeddah caller rings a Riyadh line.
|
|
61
|
+
- **Arabic and English in one sentence.** "أبغى أغيّر الـ delivery address" is transcribed as said, rather than turned into nonsense at the switch.
|
|
62
|
+
- **Streaming both ways.** Text is spoken while the LLM is still writing the sentence, and transcripts arrive while the caller is still talking, so LiveKit's turn-taking and barge-in work as designed.
|
|
63
|
+
- **Telephone-ready.** Put a LiveKit SIP trunk in front of it and it answers a Saudi 9200, 800 or geographic number.
|
|
64
|
+
- **Saudi hosting for enterprise.** The same plugin points at an in-Kingdom or on-premise Voho deployment with one `base_url` change.
|
|
65
|
+
|
|
66
|
+
## Voices
|
|
67
|
+
|
|
68
|
+
The dialect is the voice.
|
|
69
|
+
|
|
70
|
+
| Voice | Dialect | Where it sounds local | Good for |
|
|
71
|
+
| --- | --- | --- | --- |
|
|
72
|
+
| `layla` | Najdi, female | Riyadh, Qassim, the centre | Reception, appointments (default) |
|
|
73
|
+
| `nouf` | Najdi, female | Riyadh | Collections, compliance, escalations |
|
|
74
|
+
| `faisal` | Najdi, male | Riyadh | Banking, government, long policy text |
|
|
75
|
+
| `omar` | Najdi, male | Riyadh | Outbound confirmations, offers |
|
|
76
|
+
| `salma` | Hijazi, female | Jeddah, Makkah, Madinah | Everyday customer service |
|
|
77
|
+
| `rawan` | Hijazi, female | Jeddah | Retail, delivery |
|
|
78
|
+
| `hisham` | Hijazi, male | Jeddah | Banking, insurance |
|
|
79
|
+
| `tariq` | Hijazi, male | Jeddah | Bookings, follow-ups |
|
|
80
|
+
| `maryam` | Omani, female | Muscat, the interior | Energy, logistics, marine |
|
|
81
|
+
| `salim` | Omani, male | Muscat | Fleet, retail |
|
|
82
|
+
| `reem` | Gulf, female | UAE | Light, conversational |
|
|
83
|
+
| `maha` | Egyptian, female | Egypt | Reassuring, unhurried |
|
|
84
|
+
| `khalid`, `yousef` | Modern Standard | Region-neutral | Announcements, IVR |
|
|
85
|
+
| `clementine`, `astra`, `marlow`, `vespera` | English | | Expat and international lines |
|
|
86
|
+
|
|
87
|
+
```python
|
|
88
|
+
tts.update_options(voice="salma") # a Jeddah caller on a Riyadh line
|
|
89
|
+
stt.update_options(language="en-US") # an English-only stretch
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**The voice sets the sound. The words set the dialect.** Tell your LLM which dialect to write in, or a Najdi voice will be reading Fusha. A Najdi agent says الحين, وش, زين and أبشر; a Hijazi one says دحين, إيش, إيوه and never says أبشر. [`examples/agent.py`](examples/agent.py) has a Najdi instruction that works.
|
|
93
|
+
|
|
94
|
+
## A Saudi customer-service agent in one file
|
|
95
|
+
|
|
96
|
+
[`examples/agent.py`](examples/agent.py) is a complete agent for a Riyadh retailer: it speaks Najdi, follows the caller into English and back, stops when interrupted, and looks up an order with a tool mid-call.
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
pip install "livekit-agents[openai,silero]" livekit-plugins-voho
|
|
100
|
+
export VOHO_API_KEY=... OPENAI_API_KEY=...
|
|
101
|
+
python examples/agent.py console
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
To answer a phone number, create a LiveKit SIP inbound trunk and dispatch rule. The [LiveKit guide](https://docs.voho.ai/livekit) walks through it.
|
|
105
|
+
|
|
106
|
+
## What the plugin calls
|
|
107
|
+
|
|
108
|
+
| Method | Voho API | |
|
|
109
|
+
| --- | --- | --- |
|
|
110
|
+
| `TTS.synthesize()` | `POST /v1/speech/stream` | Whole sentence in, chunked PCM out |
|
|
111
|
+
| `TTS.stream()` | `WS /v1/speech/ws` | Tokens in as the LLM writes, audio out as it is produced |
|
|
112
|
+
| `STT.recognize()` | `POST /v1/transcribe` | One utterance |
|
|
113
|
+
| `STT.stream()` | `WS /v1/transcribe/ws` | Interim and final transcripts while the caller speaks |
|
|
114
|
+
|
|
115
|
+
Audio is 16-bit mono PCM: 24 kHz from the TTS, 16 kHz into the STT. LiveKit resamples for the room.
|
|
116
|
+
|
|
117
|
+
## Pricing
|
|
118
|
+
|
|
119
|
+
| | |
|
|
120
|
+
| --- | --- |
|
|
121
|
+
| Text-to-speech (`sada-1`, streaming) | 5¢ per 1,000 characters |
|
|
122
|
+
| Text-to-speech (`nabra-1`) | 2¢ per 1,000 characters |
|
|
123
|
+
| Speech-to-text | 3¢ per started minute |
|
|
124
|
+
|
|
125
|
+
Prepaid, per key. `GET /v1/usage` returns what a key used this month, in the units it was billed in.
|
|
126
|
+
|
|
127
|
+
## Data and hosting
|
|
128
|
+
|
|
129
|
+
- Audio is not stored. Billing keeps character and minute counts, nothing else.
|
|
130
|
+
- The public API runs in London.
|
|
131
|
+
- In-Kingdom and on-premise deployments are available for enterprise contracts, with the same API and plugin. See [docs.voho.ai/on-prem/residency](https://docs.voho.ai/on-prem/residency).
|
|
132
|
+
|
|
133
|
+
## Errors
|
|
134
|
+
|
|
135
|
+
Voho error codes appear in the exception message (`unauthorized`, `insufficient_credit`, `unknown_voice`, `text_too_long`), so the log says what to fix. Client errors are not retried. Server errors and rate limits are, using LiveKit's `APIConnectOptions`.
|
|
136
|
+
|
|
137
|
+
## Development
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
pip install -e ".[dev]"
|
|
141
|
+
pytest # against a local mock of the API, no key needed
|
|
142
|
+
VOHO_API_KEY=... pytest -m live # real synthesis, and a speak-then-transcribe round trip in Arabic
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## Links
|
|
146
|
+
|
|
147
|
+
- LiveKit guide: [docs.voho.ai/livekit](https://docs.voho.ai/livekit)
|
|
148
|
+
- API reference: [docs.voho.ai](https://docs.voho.ai)
|
|
149
|
+
- Hear the voices: [voho.ai/demos](https://voho.ai/demos)
|
|
150
|
+
- Contact: support@voho.ai
|
|
151
|
+
|
|
152
|
+
Apache-2.0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
livekit/plugins/voho/__init__.py,sha256=vqg1zMQbm_1ymFENQ9b4psCeJLTYGhd3Qpoc86hTFiY,1274
|
|
2
|
+
livekit/plugins/voho/_api.py,sha256=qi7xTX-BvhfHssjBCZiOafIGn-kCe2qswgsGVpZuqoY,3579
|
|
3
|
+
livekit/plugins/voho/log.py,sha256=D-_pO223s83CTrzuRvATMF0YPOiY9qCeHNBsofOoJLs,67
|
|
4
|
+
livekit/plugins/voho/models.py,sha256=gFdvML5EoxD437vX9rCijQ26j-9d5tXajdgu0G6vpys,1430
|
|
5
|
+
livekit/plugins/voho/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
livekit/plugins/voho/stt.py,sha256=TBFMHMKwwJZlIsyZs-awvE4D0uWPRXemAbJQm5hGqFw,9938
|
|
7
|
+
livekit/plugins/voho/tts.py,sha256=HtCTHboXamQL6_nqa0pHHKcZlcopp3z9Htvcc3TJAg0,12229
|
|
8
|
+
livekit/plugins/voho/version.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
|
|
9
|
+
livekit_plugins_voho-0.1.0.dist-info/METADATA,sha256=HZIC3S0fncFvDXp2UWDnn3ShtXQAa4mJgoZXJhEK87Q,7432
|
|
10
|
+
livekit_plugins_voho-0.1.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
|
|
11
|
+
livekit_plugins_voho-0.1.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
12
|
+
livekit_plugins_voho-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|