export declare const MAX_OPENAI_STREAM_TOOL_ARGUMENT_BYTES = 1048576; export declare const MAX_OPENAI_STREAM_TOOL_ARGUMENT_FRAGMENTS = 4096; export type OpenAIStreamToolArgumentBudget = { bytes: number; fragments: number; }; export declare function appendOpenAIStreamToolArgument(budget: OpenAIStreamToolArgumentBudget, chunks: string[], fragment: string): "bytes" | "fragments" | undefined; export declare function joinOpenAIStreamToolArguments(chunks: readonly string[]): string; export declare function isJsonObjectText(value: string): boolean; //# sourceMappingURL=openai-tool-input.d.ts.map