feat(voice,agents,memory): voice points get their own branch, agent and keys
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user