mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
534cd1efa7
Per-framework fixes to pass D5 e2e-deep probes: - agno: deduplicate agent_server routes - claude-sdk-python: handle ParsedContentBlockStopEvent (SDK v0.97+) - claude-sdk-typescript: remove orphan tool-rendering page - crewai-crews: add backend tool_rendering agent + shared_state fix - google-adk: add AGUIToolset to all ADK agents for frontend tools - langgraph-typescript: remove stale import - langroid: emit ToolCallResultEvent for backend tools + fix adapter - llamaindex: v2 provider import, book_call stub, PYTHONPATH fix - ms-agent-python: disable Responses API store for aimock compat - pydantic-ai: simplify gen-ui page component - spring-ai: raise tool iteration cap (1→5) + fix connection pooling - strands: shared tools symlink + requirements update
32 lines
856 B
Python
32 lines
856 B
Python
"""Schedule meeting tool implementation.
|
|
|
|
The HITL gating happens on the frontend via useHumanInTheLoop.
|
|
This tool just returns a pending approval status for the framework
|
|
wrapper to surface.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
def schedule_meeting_impl(
|
|
reason: str,
|
|
duration_minutes: int = 30,
|
|
) -> dict[str, Any]:
|
|
"""Schedule a meeting (requires human approval).
|
|
|
|
Returns a pending_approval status. The actual gating is done by the
|
|
frontend's useHumanInTheLoop hook — the agent pauses until the user
|
|
approves or rejects.
|
|
"""
|
|
return {
|
|
"status": "pending_approval",
|
|
"reason": reason,
|
|
"duration_minutes": duration_minutes,
|
|
"message": (
|
|
f"Meeting request: {reason} ({duration_minutes} min). "
|
|
"Awaiting human approval."
|
|
),
|
|
}
|