@sanity/assist
This is a Sanity Studio v3 plugin.
Table of contents
About Sanity AI Assist
Free your team to do more of what they’re great at (and less busy work) with the AI assistant that works with structured content. Attach reusable AI instructions to fields and documents to supercharge your editorial workflow.
You create the instructions; Sanity AI Assist does the rest. Learn more about writing instructions in the Sanity documentation.
Read the release announcement here.
Installation
In your Studio project folder, install the following plugin dependency:
npm install @sanity/assist sanity@latest
This plugin requires sanity
version 3.13.0
or greater.
Setup
Note: Before using the plugin, your project must have Sanity AI Assist enabled at the API level.
Contact your Sanity enterprise representative to get started, or contact the sales team.
Add the plugin
In sanity.config.ts
, add assist
to the plugins
array:
import { assist } from '@sanity/assist'
export default defineConfig({
plugins: [
assist()
]
})
Enabling the AI Assist API
After installing and adding the plugin and having the AI Assist feature enabled for your project and its datasets, you need to create a token for the plugin to access the AI Assist API. This needs to be done by a member of the project with token creation permissions (typically someone with an admin or developer role).
- Start the studio and open any document
- Click the sparkle icon* (✨) in the document header near the close document X-button
- Then select Manage instructions
- Selecting Manage instructions will open an inspector panel
- Click the Enable AI assistance button to create a token and enable AI Assist for everyone with access to the project
You will find a new API token entry for your project named “Sanity AI” in your project's API settings on sanity.io/manage.
The plugin will now work for any dataset in your project.
Note: You can revoke this token at any time to disable Sanity AI Assist service. A new token has to be generated via the plugin UI for it to work again.
Schema configuration
By default, most object, array, and string field types have AI writing assistance enabled. Your assistant can write to all compatible fields that it detects.
The assistant can also create array items, including Portable Text blocks, when the type has been imported to the Studio's schema as a custom type (learn more about strict schemas).
Disable AI Assist for a schema type
defineType({
name: 'policy',
type: 'document',
options: {
aiWritingAssistance: {exclude: true}
},
fields: [
]
})
Disable for a field
defineType({
name: 'product',
type: 'object',
fields: [
defineField({
name: 'sku',
type: 'string',
options: {
aiWritingAssistance: {exclude: true}
}
})
]
})
Disable for an array type
defineType({
name: 'product',
type: 'array',
of: [
defineArrayMember({
type: 'customProduct',
options: {
aiWritingAssistance: {exclude: true}
}
})
]
})
Unsupported types
The following types are not supported, and behave as excluded types:
Fields with these types will not be changed by the assistant, do not have AI Assist actions, and cannot be referenced in instructions.
Objects where all fields are excluded or unsupported and arrays where all member types are excluded or unsupported
will also be excluded.
Troubleshooting
There are limits to how much text the AI can process when processing an instruction. Under the hood, the AI Assist will add information about your schema, which adds to what's commonly referred to as “the context window.”
If you have a very large schema (that is, many document and field types), it can be necessary to exclude types to limit how much of the context window is used for the schema itself.
We recommend excluding any and all types which rarely would benefit from automated workflows. A quick win is typically to exclude array types. It can be a good idea to exclude most non-block types from Portable Text arrays. This will ensure that the Sanity Assist outputs mostly formatted text.
Included document types
This plugin adds an AI Context
document type.
If your Studio uses Structure Builder to configure the studio structure,
you might have to add this document type to your structure.
The document type name can be imported from the plugin:
import {contextDocumentTypeName} from '@sanity/assist'
S.documentTypeListItem(contextDocumentTypeName)
License
MIT © Sanity
Develop & test
This plugin uses @sanity/plugin-kit
with default configuration for build & watch scripts.
See Testing a plugin in Sanity Studio
on how to run this plugin with hotreload in the studio.
Release new version
Run "CI & Release" workflow.
Make sure to select the main branch and check "Release new version".
Semantic release will only release on configured branches, so it is safe to run release on any branch.