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

Module for representing the OpenAI schema ContextManagementParam.

Fields

  • :compact_threshold - optional - integer() | any()

  • :type - required - String.t()
    The context management entry type. Currently only 'compaction' is supported.

Summary

Types

@type t() :: %ExOpenAI.Components.ContextManagementParam{
  compact_threshold: (integer() | any()) | nil,
  type: String.t()
}