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
+14
View File
@@ -0,0 +1,14 @@
"""Раз в ночь: голосовая ветка начинается заново в том же топике."""
from __future__ import annotations
from typing import TYPE_CHECKING
from beaver_agent.voice import rotate
if TYPE_CHECKING:
from beaver_gateway.jobs.scheduler import JobRun
async def rotate_voice(run: JobRun) -> None:
await rotate(run.conversations)