/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { AiProviderRunFn, ImageGenerateTaskInput, ImageGenerateTaskOutput } from "@workglow/ai"; import type { HfInferenceModelConfig } from "./HFI_ModelSchema"; /** * One-shot run fn. HF Inference does not support partial image streaming, * so we run the request, emit one snapshot, then finish. */ export declare const HFI_ImageGenerate_Stream: AiProviderRunFn;