mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
be121cf178
Ran confirmed LangGraphAGUIAgent is the only relevant path going forward. Removes LangGraphAgent, _StreamingStateExtractor, CopilotKitConfig, and langgraph_default_merge_state from sdk-python (the AG-UI base class provides this now). Also removes the use_function_call=True code path from copilotkit_messages_to_langchain (no callers, function_call format is obsolete). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
850 B
Python
28 lines
850 B
Python
"""CopilotKit SDK"""
|
|
from .sdk import CopilotKitRemoteEndpoint, CopilotKitContext, CopilotKitSDK, CopilotKitSDKContext
|
|
from .action import Action
|
|
from .langgraph import CopilotKitState
|
|
from .parameter import Parameter
|
|
from .agent import Agent
|
|
from .langgraph_agui_agent import LangGraphAGUIAgent
|
|
from .copilotkit_lg_middleware import CopilotKitMiddleware
|
|
from ag_ui_langgraph.middlewares.state_streaming import StateStreamingMiddleware, StateItem
|
|
|
|
|
|
|
|
__all__ = [
|
|
'CopilotKitRemoteEndpoint',
|
|
'CopilotKitSDK',
|
|
'Action',
|
|
'CopilotKitState',
|
|
'Parameter',
|
|
'Agent',
|
|
'CopilotKitContext',
|
|
'CopilotKitSDKContext',
|
|
'CrewAIAgent', # pyright: ignore[reportUnsupportedDunderAll] pylint: disable=undefined-all-variable
|
|
"LangGraphAGUIAgent",
|
|
"CopilotKitMiddleware",
|
|
"StateStreamingMiddleware",
|
|
"StateItem",
|
|
]
|