Package: @effect/ai
Module: Response
Encoded representation of finish parts for serialization.
Signature
export interface FinishPartEncoded extends BasePartEncoded<"finish", FinishPartMetadata> {
/**
* The reason why the model finished generating the response.
*/
readonly reason: typeof FinishReason.Encoded
/**
* Token usage statistics for the request.
*/
readonly usage: typeof Usage.Encoded
}
Since v1.0.0