Package: @effect/ai
Module: Response
Encoded representation of tool params delta parts for serialization.
Signature
export interface ToolParamsDeltaPartEncoded extends BasePartEncoded<"tool-params-delta", ToolParamsDeltaPartMetadata> {
/**
* Unique identifier matching the corresponding tool parameter chunk.
*/
readonly id: string
/**
* The incremental parameter content (typically JSON fragment) to add.
*/
readonly delta: string
}
Since v1.0.0