UNPKG

@tanstack/ai

Version:

Type-safe TypeScript AI SDK for streaming chat, tool calling, agents, structured outputs, and multimodal generation.

9 lines (8 loc) 341 B
import { ReasoningEncryptedValueEvent } from '../types.js'; /** Spec event that carries a provider thinking / tool-call signature blob. */ export declare function reasoningEncryptedValue(opts: { subtype: 'message' | 'tool-call'; entityId: string; encryptedValue: string; timestamp?: number; }): ReasoningEncryptedValueEvent;