title | description |
---|---|
AI_LoadSettingError |
Learn how to fix AI_LoadSettingError |
This error occurs when a setting is not loaded successfully.
message
: The error message
You can check if an error is an instance of AI_LoadSettingError
using:
import { LoadSettingError } from 'ai';
if (LoadSettingError.isInstance(error)) {
// Handle the error
}