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
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
"""Barrel exports for all shared showcase tool implementations."""
|
|
|
|
from .types import (
|
|
SalesStage,
|
|
SalesTodo,
|
|
Flight,
|
|
WeatherResult,
|
|
)
|
|
from .get_weather import get_weather_impl
|
|
from .query_data import query_data_impl
|
|
from .sales_todos import (
|
|
INITIAL_TODOS,
|
|
manage_sales_todos_impl,
|
|
get_sales_todos_impl,
|
|
)
|
|
from .search_flights import search_flights_impl
|
|
from .generate_a2ui import (
|
|
RENDER_A2UI_TOOL_SCHEMA,
|
|
generate_a2ui_impl,
|
|
build_a2ui_operations_from_tool_call,
|
|
)
|
|
from .schedule_meeting import schedule_meeting_impl
|
|
|
|
__all__ = [
|
|
# Types
|
|
"SalesStage",
|
|
"SalesTodo",
|
|
"Flight",
|
|
"WeatherResult",
|
|
# Weather
|
|
"get_weather_impl",
|
|
# Query data
|
|
"query_data_impl",
|
|
# Sales todos
|
|
"INITIAL_TODOS",
|
|
"manage_sales_todos_impl",
|
|
"get_sales_todos_impl",
|
|
# Flight search (fixed-schema A2UI)
|
|
"search_flights_impl",
|
|
# Dynamic A2UI
|
|
"RENDER_A2UI_TOOL_SCHEMA",
|
|
"generate_a2ui_impl",
|
|
"build_a2ui_operations_from_tool_call",
|
|
# Schedule meeting (HITL)
|
|
"schedule_meeting_impl",
|
|
]
|