bind method
RunnableBinding<PromptValue, ChatOllamaOptions, ChatResult>
bind(
- ChatOllamaOptions options
inherited
Binds the Runnable
to the given options
.
options
- theCallOptions
to bind theRunnable
with.
Implementation
RunnableBinding<RunInput, CallOptions, RunOutput> bind(
final CallOptions options,
) {
return RunnableBinding<RunInput, CallOptions, RunOutput>(
bound: this,
options: options,
);
}