feat(voice,agents,memory): voice points get their own branch, agent and keys

This commit is contained in:
hh
2026-09-06 23:26:35 +02:00
parent b9eb95d8c0
commit 4dd199147c
14 changed files with 747 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
"""Голосовые точки по квартире: своя ветка, свой дешёвый агент, свои ключи."""
from beaver_agent.voice.frontend import VoiceFrontend
from beaver_agent.voice.texts import KEY, PROMPT, TITLE
from beaver_agent.voice.thread import AGENT, FRONTEND, current, open_thread, rotate
__all__ = [
"AGENT",
"FRONTEND",
"KEY",
"PROMPT",
"TITLE",
"VoiceFrontend",
"current",
"open_thread",
"rotate",
]