/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ export * from "./common/HFI_AspectRatio"; export * from "./common/HFI_Constants"; export * from "./common/HFI_ImageValidation"; export * from "./common/HFI_ModelSchema"; export * from "./common/HFI_ModelSearch"; export * from "./registerHfInference"; import { _setHfInferenceSDKForTesting } from "./common/HFI_Client"; import { HfInferenceQueuedProvider } from "./HfInferenceQueuedProvider"; /** * @internal Symbols exported only for use by `@workglow/test`. Not part of the stable public API. */ export declare const _testOnly: { readonly HfInferenceQueuedProvider: typeof HfInferenceQueuedProvider; readonly HFI_RUN_FN_SPECS: { serves: ["image.editing"] | ["image.generation"] | ["model.info"] | ["model.search"] | ["text.embedding"] | ["text.generation"] | ["text.rewriter"] | ["text.summary"] | ["text.generation", "tool-use"]; }[]; readonly HFI_RUN_FNS: readonly import("@workglow/ai").AiProviderRunFnRegistration[]; readonly _setHfInferenceSDKForTesting: typeof _setHfInferenceSDKForTesting; };