Skip to content

Commit 6a5ae82

Browse files
committed
refactor(langchain): reorder imports in langgraph agent converter
reorder the import statements in the langgraph agent converter module to maintain consistent ordering and improve code readability. 将 langgraph agent converter 模块中的导入语句重新排序 以保持一致的顺序并提高代码可读性。 Change-Id: Ie398c0393e4efd9f19dec40a76cdb96bdaa95ed5 Signed-off-by: OhYee <oyohyee@oyohyee.com>
1 parent 134d88e commit 6a5ae82

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

agentrun/integration/langchain/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@
1616
- agent.astream(input, stream_mode="updates") - 异步按节点输出
1717
"""
1818

19-
from agentrun.integration.langgraph.agent_converter import (
20-
AguiEventConverter,
21-
) # 向后兼容
22-
from agentrun.integration.langgraph.agent_converter import (
19+
from agentrun.integration.langgraph.agent_converter import ( # 向后兼容
2320
AgentRunConverter,
21+
AguiEventConverter,
2422
convert,
2523
to_agui_events,
2624
)

0 commit comments

Comments
 (0)