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

The ranking options for the file search.

Fields

  • :ranker - required - ExOpenAI.Components.FileSearchRanker.t()

  • :score_threshold - required - number()
    The score threshold for the file search. All values must be a floating point number between 0 and 1.
    Constraints: minimum: 0, maximum: 1

Summary

Types

@type t() ::
  %ExOpenAI.Components.RunStepDetailsToolCallsFileSearchRankingOptionsObject{
    ranker: ExOpenAI.Components.FileSearchRanker.t(),
    score_threshold: number()
  }