
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeI understand how frustrating it is when AI Assist stops working suddenly! Since you've already tried the basics (upgrading packages, checking for exceptions), let me walk you through some additional troubleshooting steps specific to AI Assist.
The first thing to try is enabling detailed debug logs for Sanity packages. In your browser console while in Studio, run:
localStorage.debug = '@sanity/*'Then refresh the page. This will show detailed logs from all Sanity packages including @sanity/assist. You can narrow it down to just AI Assist with:
localStorage.debug = '@sanity/assist*'This should reveal what's happening under the hood when you try to run instructions - whether requests are being made, if they're failing, and any error details that aren't surfacing in the UI.
When AI Assist makes requests, they include an x-sanity-request-id header. Open your browser's Network tab (filter by XHR/Fetch), then try running your simple instruction again. Look for any failed requests to Sanity's API. If you see failed requests:
AI Assist requires a Growth plan or higher according to the AI Assist documentation. If your plan recently changed, expired, or if there's a billing issue, that could explain why it suddenly stopped working this morning. Double-check your project settings to confirm your plan status.
Since this started this morning and is affecting multiple content types, there could be a platform issue. Check status.sanity.io to see if there are any reported outages or degraded performance for AI services.
Verify that AI Assist is properly configured in your sanity.config.ts:
import {assist} from '@sanity/assist'
export default defineConfig({
// ... other config
plugins: [
assist(),
// ... other plugins
]
})If you have any custom configuration options under options.aiAssist for specific fields or document types, temporarily remove those to see if they're causing conflicts.
Since you mentioned trying "many different content types," check if:
You mentioned upgrading everything, but for reference, ensure you're on:
sanity CLI v3.88.0 or higher (ideally @latest)@sanity/assist latest versionIf none of the above helps, when reaching out to Sanity support, include:
x-sanity-request-id values from failed requests in Network tabsanity and @sanity/assist you're runningThe fact that it "works on some things" but not others is interesting - the debug logs should reveal whether the issue is with specific field types, request failures, or configuration problems. Start with the debug logs and Network tab inspection, as those will give you the most immediate insight into what's failing.
Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store