mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 23:11:37 +08:00
11 lines
347 B
Python
11 lines
347 B
Python
|
|
"""Realtime speech subpackage for the google_meet plugin (v2).
|
||
|
|
|
||
|
|
Provides a thin OpenAI Realtime API client and a file-queue speaker
|
||
|
|
wrapper so the Meet bot can play synthesized speech through the
|
||
|
|
virtual audio bridge.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .openai_client import RealtimeSession, RealtimeSpeaker # noqa: F401
|
||
|
|
|
||
|
|
__all__ = ["RealtimeSession", "RealtimeSpeaker"]
|