View Source ExOpenAI.Components.CompactionSummaryItemParam (ex_openai.ex v2.0.0-beta2)

A compaction item generated by the v1/responses/compact API.

Fields

  • :encrypted_content - required - String.t()
    The encrypted content of the compaction summary.
    Constraints: maxLength: 10485760

  • :id - optional - String.t() | any()

  • :type - required - :compaction
    The type of the item. Always compaction.
    Allowed values: "compaction"
    Default: "compaction"

Summary

Types

@type t() :: %ExOpenAI.Components.CompactionSummaryItemParam{
  encrypted_content: String.t(),
  id: (String.t() | any()) | nil,
  type: :compaction
}