Writer Tools
This notebook provides a quick overview for getting started with Writer tools. For detailed documentation of all Writer features and configurations head to the Writer docs.
Overview
Integration details
Class | Package | Local | Serializable | JS support | Package downloads | Package latest |
---|---|---|---|---|---|---|
GraphTool | langchain-writer | ❌ | ❌ | ❌ |
Features
We provide usage of two types of tools for use with ChatWriter
: function
and graph
.
Function
Functions are the most common type of tool, which allows the LLM to call external APIs, fetch data from databases, and generally perform any external action you want to do. Visit our tool calling docs for additional information.
Graph
The Graph
tool is Writer's graph-based retrieval-augmented generation (RAG) called Knowledge Graph. This tool enables developers to simply pass the graph ID to the model and it will return the answer to the question in the prompt. To learn more, see our Knowledge Graph API docs.