UNPKG

@huggingface/inference

Version:

Typescript client for the Hugging Face Inference Providers and Inference Endpoints

6 lines 359 B
import type { TextToVideoInput } from "@huggingface/tasks"; import type { BaseArgs, Options } from "../../types"; export type TextToVideoArgs = BaseArgs & TextToVideoInput; export type TextToVideoOutput = Blob; export declare function textToVideo(args: TextToVideoArgs, options?: Options): Promise<TextToVideoOutput>; //# sourceMappingURL=textToVideo.d.ts.map