Ask a question to get started
Enter to send•Shift+Enter new line
AsyncSubAgentJob()
TypedDict
Unique identifier for the job (same as thread_id).
thread_id
Name of the async subagent type that is running.
LangGraph thread ID for the remote run.
LangGraph run ID for the current execution on the thread.
Current job status (e.g., 'running', 'success', 'error', 'cancelled').
'running'
'success'
'error'
'cancelled'
Typed as str rather than a Literal because the LangGraph SDK's Run.status is str — using a Literal here would require cast at every SDK boundary.
str
Literal
Run.status
cast
A tracked async subagent job persisted in agent state.