Class RankingOptions
- Namespace
- OpenAI
- Assembly
- OpenAI-DotNet.dll
The ranking options for the file search. https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings
public sealed class RankingOptions
- Inheritance
-
RankingOptions
- Inherited Members
Constructors
RankingOptions(string, float)
Constructor.
[JsonConstructor]
public RankingOptions(string ranker = "auto", float scoreThreshold = 0)
Parameters
ranker
stringThe ranker to use for the file search. If not specified will use the
auto
ranker.scoreThreshold
floatThe score threshold for the file search. All values must be a floating point number between 0 and 1.
Exceptions
Properties
Ranker
The ranker to use for the file search.
[JsonPropertyName("ranker")]
public string Ranker { get; }
Property Value
ScoreThreshold
The score threshold for the file search.
[JsonPropertyName("score_threshold")]
public float ScoreThreshold { get; }