/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { AiProviderRunFn, TextRewriterTaskInput, TextRewriterTaskOutput } from "@workglow/ai"; import type { OpenAiModelConfig } from "./OpenAI_ModelSchema"; /** * Streaming run-fn for `["text.rewriter"]`. Emits `text-delta` events on * the `text` port and a final empty `finish` event. The rewrite instruction * is sent as the Responses `instructions` (system) channel. */ export declare const OpenAI_TextRewriter_Stream: AiProviderRunFn;