mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
bad05a2bdc
* Add initial harness console for python * Add textual to project * Add planning and approval flows with list selector * Address PR comments * Fix list selection bug * Fix PR #6312 round 2 review comments - Escape untrusted agent text with rich.markup.escape() in observers (text_output, planning_output, reasoning_display) to prevent markup injection - Remove non-functional 'Always approve' choices from tool_approval.py (framework lacks CreateAlwaysApproveToolResponse support) - Remove textual from root pyproject.toml dev deps (sample-specific) - Add PEP 723 inline script metadata to harness_research.py - Narrow except Exception to except NoMatches in list_selection.py Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix build error * Fix build errors --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
126 lines
3.3 KiB
Python
126 lines
3.3 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""Base class for console observers.
|
|
|
|
Observers participate in the agent streaming lifecycle, displaying events
|
|
and optionally returning follow-up actions.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from agent_framework import Agent, Content, Message
|
|
|
|
from ..app_state import FollowUpAction
|
|
from ..state_driver import IUXStateDriver
|
|
|
|
|
|
class ConsoleObserver:
|
|
"""Base class for console observers.
|
|
|
|
Observers participate in the agent streaming lifecycle, displaying
|
|
events (tool calls, errors, reasoning, etc.) and optionally returning
|
|
follow-up actions (questions, approval requests).
|
|
|
|
All methods have default no-op implementations, so subclasses only
|
|
override the methods they need.
|
|
"""
|
|
|
|
def configure_run_options(
|
|
self,
|
|
options: dict[str, Any],
|
|
agent: Agent,
|
|
session: Any,
|
|
) -> None:
|
|
"""Configure run options before agent invocation.
|
|
|
|
Override to set options such as response_format, max_tokens, etc.
|
|
|
|
Args:
|
|
options: Dictionary of chat options to modify.
|
|
agent: The AI agent.
|
|
session: The agent session.
|
|
"""
|
|
pass
|
|
|
|
async def on_response_update(
|
|
self,
|
|
ux: IUXStateDriver,
|
|
update: Message,
|
|
agent: Agent,
|
|
session: Any,
|
|
) -> None:
|
|
"""Called for each response update chunk.
|
|
|
|
Override to inspect update-level metadata or handle provider-specific
|
|
events in the raw representation.
|
|
|
|
Args:
|
|
ux: The UX state driver for UI updates.
|
|
update: The message update chunk.
|
|
agent: The AI agent.
|
|
session: The agent session.
|
|
"""
|
|
pass
|
|
|
|
async def on_content(
|
|
self,
|
|
ux: IUXStateDriver,
|
|
content: Content,
|
|
agent: Agent,
|
|
session: Any,
|
|
) -> None:
|
|
"""Called for each content item in the response.
|
|
|
|
Override to handle specific content types (function calls, errors, etc.).
|
|
|
|
Args:
|
|
ux: The UX state driver for UI updates.
|
|
content: The content item from the response.
|
|
agent: The AI agent.
|
|
session: The agent session.
|
|
"""
|
|
pass
|
|
|
|
async def on_text(
|
|
self,
|
|
ux: IUXStateDriver,
|
|
text: str,
|
|
agent: Agent,
|
|
session: Any,
|
|
) -> None:
|
|
"""Called for each text chunk in the response.
|
|
|
|
Override to accumulate and display streaming text.
|
|
|
|
Args:
|
|
ux: The UX state driver for UI updates.
|
|
text: The text chunk.
|
|
agent: The AI agent.
|
|
session: The agent session.
|
|
"""
|
|
pass
|
|
|
|
async def on_stream_complete(
|
|
self,
|
|
ux: IUXStateDriver,
|
|
agent: Agent,
|
|
session: Any,
|
|
) -> list[FollowUpAction] | None:
|
|
"""Called when streaming completes.
|
|
|
|
Override to return follow-up actions (questions to ask the user,
|
|
messages to inject into the next turn, etc.).
|
|
|
|
Args:
|
|
ux: The UX state driver for UI updates.
|
|
agent: The AI agent.
|
|
session: The agent session.
|
|
|
|
Returns:
|
|
Optional list of follow-up actions to queue, or None.
|
|
"""
|
|
return None
|