(state: MainGraphState)
| 250 | input: Union[str, None] |
| 251 | |
| 252 | def invoke_root(state: MainGraphState): |
| 253 | subgraph = subgraph_registry["root"] |
| 254 | response = subgraph.invoke( |
| 255 | PipelineState( |
| 256 | history="", |
| 257 | task="", |
| 258 | condition=False |
| 259 | ) |
| 260 | ) |
| 261 | return {"input": None} |
| 262 | |
| 263 | |
| 264 | def run_workflow_as_server(llm): |
nothing calls this directly
no test coverage detected