@huggingface/hub
Version:
Utilities to interact with the Hugging Face hub
21 lines • 644 B
TypeScript
import type { CredentialsParams } from "../../types/public";
/**
* Stream job events using Server-Sent Events (SSE).
* Returns an async iterable of event chunks.
*/
export declare function streamJobEvents(params: {
/**
* The namespace (username or organization name)
*/
namespace: string;
/**
* The job ID
*/
jobId: string;
hubUrl?: string;
/**
* Custom fetch function to use instead of the default one, for example to use a proxy or edit headers.
*/
fetch?: typeof fetch;
} & CredentialsParams): AsyncGenerator<string, void, unknown>;
//# sourceMappingURL=stream-job-events.d.ts.map