Display name embedded in the compiled CompiledExecutionGraph.
A fresh WorkflowBuilder instance.
const wf = workflow('my-pipeline')
.input(z.object({ query: z.string() }))
.returns(z.object({ answer: z.string() }))
.step('search', { tool: 'web_search' })
.step('answer', { gmi: { instructions: 'Answer the question.' } })
.compile();
Create a new
WorkflowBuilderwith the given human-readable name.