OptionalcallbacksOptionalconfigurableRuntime values for attributes previously made configurable on this Runnable, or sub-Runnables.
OptionalmaxMaximum number of parallel calls to make.
OptionalmetadataMetadata for this call and any sub-calls (eg. a Chain calling an LLM). Keys should be strings, values should be JSON-serializable.
OptionaloptionsAdditional options to pass to the underlying axios request.
Optionalparallel_Whether or not to restrict the ability to call multiple tools in one response.
OptionalpromptOptionalrecursionMaximum number of times a call can recurse. If not provided, defaults to 25.
OptionalrunUnique identifier for the tracer run for this call. If not provided, a new UUID will be generated.
OptionalrunName for the tracer run for this call. Defaults to the name of the class.
OptionalseedOptionalsignalAbort signal for this call. If provided, the call will be aborted when the signal is aborted.
OptionalstopStop tokens to use for this call. If not provided, the default stop tokens for the model will be used.
Optionalstream_Additional options to pass to streamed completions. If provided takes precedence over "streamUsage" set at initialization time.
Whether or not to include token usage in the stream.
If set to true, this will include an additional
chunk at the end of the stream with the token usage.
OptionalstrictIf true, model output is guaranteed to exactly match the JSON Schema
provided in the tool definition. If true, the input schema will also be
validated according to
https://platform.openai.com/docs/guides/structured-outputs/supported-schemas.
If false, input schema will not be validated and model output will not
be validated.
If undefined, strict argument will not be passed to the model.
OptionaltagsTags for this call and any sub-calls (eg. a Chain calling an LLM). You can use these to filter calls.
OptionaltimeoutTimeout for this call in milliseconds.
Optionaltool_Optionaltools
Callbacks for this call and any sub-calls (eg. a Chain calling an LLM). Tags are passed to all callbacks, metadata is passed to handle*Start callbacks.