Function
build_a2ui_chat_agent
(runtime: str = "langgraph")
Source from the content-addressed store, hash-verified
| 15 | |
| 16 | |
| 17 | def build_a2ui_chat_agent(runtime: str = "langgraph") -> AgentSpecAgent: |
| 18 | from a2ui_agentspec_agent import a2ui_demo_tool_registry, a2ui_chat_json |
| 19 | |
| 20 | return AgentSpecAgent( |
| 21 | agent_spec_config=a2ui_chat_json, |
| 22 | runtime=runtime, |
| 23 | tool_registry=a2ui_demo_tool_registry |
| 24 | ) |
| 25 | |
| 26 | |
| 27 | def build_agentspec_agent(runtime: str = "langgraph") -> AgentSpecAgent: |
Tested by
no test coverage detected