/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { AiProviderPreviewRunFn, AiProviderRunFnRegistration } from "@workglow/ai"; import type { OpenAiModelConfig } from "./OpenAI_ModelSchema"; export { getClient, getModelName, loadOpenAISDK } from "./OpenAI_Client"; /** * Browser build of {@link OPENAI_RUN_FNS}. Identical to the node build * except for the count-tokens import (uses `js-tiktoken` rather than the * WASM `tiktoken` package). */ export declare const OPENAI_RUN_FNS: readonly AiProviderRunFnRegistration[]; export declare const OPENAI_PREVIEW_TASKS: Record>;