RunnableSeq(
self,
*steps: RunnableLike = (),
name: str | None = None,| Name | Type | Description |
|---|---|---|
steps | RunnableLike | Default: ()The steps to include in the sequence. |
name | str | None | Default: NoneThe name of the |
Sequence of Runnable, where the output of each is the input of the next.
RunnableSeq is a simpler version of RunnableSequence that is internal to
LangGraph.