mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-03 15:10:15 +00:00

* fix import issue related to agentchat update #4245 * update uv lock file * fix db auto_upgrade logic issue. * im prove msg rendering issue * Support termination condition combination. Closes #4325 * fix db instantiation bug * update yarn.lock, closes #4260 #4262 * remove deps for now with vulnerabilities found by dependabot #4262 * update db tests * add ability to load sessions from db .. * format updates, add format checks to ags * format check fixes * linting and ruff check fixes * make tests for ags non-parrallel to avoid db race conditions. * format updates * fix concurrency issue * minor ui tweaks, move run start to websocket * lint fixes * update uv.lock * Update python/packages/autogen-studio/autogenstudio/datamodel/types.py Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> * Update python/packages/autogen-studio/autogenstudio/teammanager.py Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> * reuse user proxy from agentchat * ui tweaks --------- Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> Co-authored-by: Hussein Mozannar <hmozannar@microsoft.com>
64 lines
2.3 KiB
Python
64 lines
2.3 KiB
Python
import time
|
|
from typing import AsyncGenerator, Callable, Optional, Union
|
|
|
|
from autogen_agentchat.base import TaskResult
|
|
from autogen_agentchat.messages import AgentMessage, ChatMessage
|
|
from autogen_core.base import CancellationToken
|
|
|
|
from .database import Component, ComponentFactory
|
|
from .datamodel import ComponentConfigInput, TeamResult
|
|
|
|
|
|
class TeamManager:
|
|
def __init__(self) -> None:
|
|
self.component_factory = ComponentFactory()
|
|
|
|
async def _create_team(self, team_config: ComponentConfigInput, input_func: Optional[Callable] = None) -> Component:
|
|
"""Create team instance with common setup logic"""
|
|
return await self.component_factory.load(team_config, input_func=input_func)
|
|
|
|
def _create_result(self, task_result: TaskResult, start_time: float) -> TeamResult:
|
|
"""Create TeamResult with timing info"""
|
|
return TeamResult(task_result=task_result, usage="", duration=time.time() - start_time)
|
|
|
|
async def run_stream(
|
|
self,
|
|
task: str,
|
|
team_config: ComponentConfigInput,
|
|
input_func: Optional[Callable] = None,
|
|
cancellation_token: Optional[CancellationToken] = None,
|
|
) -> AsyncGenerator[Union[AgentMessage, ChatMessage, TaskResult], None]:
|
|
"""Stream the team's execution results"""
|
|
start_time = time.time()
|
|
|
|
try:
|
|
team = await self._create_team(team_config, input_func)
|
|
stream = team.run_stream(task=task, cancellation_token=cancellation_token)
|
|
|
|
async for message in stream:
|
|
if cancellation_token and cancellation_token.is_cancelled():
|
|
break
|
|
|
|
if isinstance(message, TaskResult):
|
|
yield self._create_result(message, start_time)
|
|
else:
|
|
yield message
|
|
|
|
except Exception as e:
|
|
raise e
|
|
|
|
async def run(
|
|
self,
|
|
task: str,
|
|
team_config: ComponentConfigInput,
|
|
input_func: Optional[Callable] = None,
|
|
cancellation_token: Optional[CancellationToken] = None,
|
|
) -> TeamResult:
|
|
"""Original non-streaming run method with optional cancellation"""
|
|
start_time = time.time()
|
|
|
|
team = await self._create_team(team_config, input_func)
|
|
result = await team.run(task=task, cancellation_token=cancellation_token)
|
|
|
|
return self._create_result(result, start_time)
|