invoke(
self,
input: Input,
config: RunnableConfig | None = None,
**kwargs: Any| Name | Type | Description |
|---|---|---|
input* | Input | |
config | RunnableConfig | None | Default: None |
Transform a single input into an output.
The input to the Runnable.
A config to use when invoking the Runnable.
The config supports standard keys like 'tags', 'metadata' for
tracing purposes, 'max_concurrency' for controlling how much work to
do in parallel, and other keys.
Please refer to RunnableConfig for more details.