Bind tool-like objects to this chat model.
bindTools(
tools: ChatBedrockConverseToolType[],
kwargs: Partial<Omit<ChatBedrockConverseCallOptions, "callbacks" | "tags" | "metadata" | "configurable" | "recursionLimit" | "runName" | "runId">>
): Runnable<BaseLanguageModelInput, AIMessageChunk<MessageStructure<MessageToolSet>>, Omit<ChatBedrockConverseCallOptions, "callbacks" | "tags" | "metadata" | "configurable" | "recursionLimit" | "runName" | "runId">>| Name | Type | Description |
|---|---|---|
tools* | ChatBedrockConverseToolType[] | A list of tool definitions to bind to this chat model. Can be a structured tool, an OpenAI formatted tool, or an object matching the provider's specific tool schema. |
kwargs | Partial<Omit<ChatBedrockConverseCallOptions, "callbacks" | "tags" | "metadata" | "configurable" | "recursionLimit" | "runName" | "runId">> | Any additional parameters to bind. |