Spaces:
Running
Running
File size: 339 Bytes
1a9c884 af73025 1a9c884 |
1 2 3 4 5 6 7 8 9 10 11 12 |
export type VLMContextValue = {
isLoaded: boolean;
isLoading: boolean;
error: string | null;
loadModel: (onProgress?: (msg: string) => void) => Promise<void>;
runInference: (
media: HTMLVideoElement | HTMLImageElement,
instruction: string,
onTextUpdate?: (text: string) => void,
) => Promise<string>;
};
|