ai
Version:
AI SDK by Vercel - build apps like ChatGPT, Claude, Gemini, and more with a single interface for any model using the Vercel AI Gateway or go direct to OpenAI, Anthropic, Google, or any other model provider.
12 lines (10 loc) • 379 B
text/typescript
import type { SkillsV4UploadSkillResult } from '@ai-sdk/provider';
import type { ProviderReference } from '../types/provider-reference';
import type { Warning } from '../types/warning';
export type UploadSkillResult = Omit<
SkillsV4UploadSkillResult,
'providerReference' | 'warnings'
> & {
readonly providerReference: ProviderReference;
readonly warnings: Warning[];
};