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
+3
View File
@@ -16,6 +16,8 @@ from beaver_gateway.frontends.turn_record import slugify
from beaver_agent import texts
from beaver_agent.vault import ATTACHMENTS, BEAVER, CHATS, TZ, VAULT
from beaver_agent.voice import AGENT as VOICE
from beaver_agent.voice import VoiceFrontend
if TYPE_CHECKING:
from pathlib import Path
@@ -62,4 +64,5 @@ frontends: list[Frontend] = [
MarkdownFrontend(
vault_path=CHATS, default_agent=DEEP, log_all_chats=True, chat_path=chat_path
),
VoiceFrontend(agent=VOICE),
]