@ai-sdk/provider
Version:
17 lines (15 loc) • 460 B
text/typescript
import type { ImageModelV2CallOptions } from './image-model-v2-call-options';
/**
* Warning from the model provider for this call. The call will proceed, but e.g.
* some settings might not be supported, which can lead to suboptimal results.
*/
export type ImageModelV2CallWarning =
| {
type: 'unsupported-setting';
setting: keyof ImageModelV2CallOptions;
details?: string;
}
| {
type: 'other';
message: string;
};