@huggingface/inference
Version:
Typescript client for the Hugging Face Inference Providers and Inference Endpoints
10 lines • 471 B
TypeScript
import type { InferenceTask, Options, RequestArgs } from "../../types";
/**
* Primitive to make custom calls to the inference provider
* @deprecated Use specific task functions instead. This function will be removed in a future version.
*/
export declare function request<T>(args: RequestArgs, options?: Options & {
/** In most cases (unless we pass a endpointUrl) we know the task */
task?: InferenceTask;
}): Promise<T>;
//# sourceMappingURL=request.d.ts.map