LangChain.js - AI agent tools
The @tiptap-pro/ai-toolkit-langchain package provides tool definitions you can add to your AI agent built with LangChain.js.
The tool calls generated by the model can then be executed in the client-side using the executeTool method.
Example usage
Install the package.
npm install @tiptap-pro/ai-toolkit-langchainSupply the tool definitions to your LangChain.js model.
import { ChatOpenAI } from '@langchain/openai'
import { toolDefinitions } from '@tiptap-pro/ai-toolkit-langchain'
const llm = new ChatOpenAI({ model: 'gpt-5' })
const llmWithTools = llm.bindTools(toolDefinitions())Combine the tool definitions with your custom tools.
import { ChatOpenAI } from '@langchain/openai'
import { toolDefinitions } from '@tiptap-pro/ai-toolkit-langchain'
import { DynamicStructuredTool } from '@langchain/core/tools'
import { z } from 'zod'
const llm = new ChatOpenAI({ model: 'gpt-5' })
const customTools = [
new DynamicStructuredTool({
name: 'weather',
description: 'Get the weather in a location',
schema: z.object({
location: z.string(),
}),
func: async ({ location }) => {
return `The weather in ${location} is sunny with 72°F`
},
}),
]
const llmWithTools = llm.bindTools([...toolDefinitions(), ...customTools])API reference
toolDefinitions
Creates tool definitions for the Tiptap AI Toolkit compatible with LangChain.js.
Parameters (ToolDefinitionsOptions)
tools?:EnabledTools- Enable/disable specific tools by setting the value totrue(enabled) orfalse(disabled).insertContent?:boolean- Enable/disable theinsertContenttool (default:true)applyPatch?:boolean- Enable/disable theapplyPatchtool (default:true)readNodeRange?:boolean- Enable/disable thereadNodeRangetool (default:true)readSelection?:boolean- Enable/disable thereadSelectiontool (default:true)getThreads?:boolean- Enable/disable thegetThreadstool (default:false)editThreads?:boolean- Enable/disable theeditThreadstool (default:false)
Returns
An array containing the enabled tool definitions that can be used with LangChain.js's tool calling system. The returned array includes:
insertContent- Tool for inserting HTML content at a specific positionapplyPatch- Tool for applying small precise edits to the documentreadNodeRange- Tool for reading part of the document by specifying a range of top-level nodesreadSelection- Tool for reading the currently selected content in the editorgetThreads- Tool for retrieving all threads and comments in the document (requires Comments extension)editThreads- Tool for performing operations on threads and comments (requires Comments extension)