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

Customize your own chunking strategy by setting chunk size and chunk overlap.

Fields

  • :static - required - ExOpenAI.Components.StaticChunkingStrategy.t()

  • :type - required - :static
    Always static.
    Allowed values: "static"

Summary

Types

@type t() :: %ExOpenAI.Components.StaticChunkingStrategyRequestParam{
  static: ExOpenAI.Components.StaticChunkingStrategy.t(),
  type: :static
}