create_graph() the server immediately returns a placeholder
Graph with system_metadata["status"] = "processing". Use
wait_for_graph_completion() to block until processing is done (or fails).
- Sync
- Async
Parameters
graph_name(str): Name of the graph to monitor.timeout_seconds(int, default300): Maximum seconds to wait.check_interval_seconds(int, default5): Seconds between status checks.
Returns
Graph: The completed graph object. RaisesTimeoutErrorif the graph does not finish within the timeout orRuntimeErrorif processing fails.

