(
steps: RunnableMapLike<RunInput, RunOutput>
)
| 2287 | } |
| 2288 | |
| 2289 | static from< |
| 2290 | RunInput, |
| 2291 | // oxlint-disable-next-line @typescript-eslint/no-explicit-any |
| 2292 | RunOutput extends Record<string, any> = Record<string, any>, |
| 2293 | >( |
| 2294 | steps: RunnableMapLike<RunInput, RunOutput> |
| 2295 | ): RunnableMap<RunInput, RunOutput> { |
| 2296 | return new RunnableMap<RunInput, RunOutput>({ steps }); |
| 2297 | } |
| 2298 | |
| 2299 | async invoke( |
| 2300 | input: RunInput, |
no outgoing calls