Skip to content

Commit

Permalink
Update RequestOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mili-tan committed Sep 25, 2024
1 parent 564efc7 commit ebe5bb3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Models/RequestOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,12 @@ public class RequestOptions
[JsonPropertyName("vocab_only")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public bool? VocabOnly { get; set; }

/// <summary>
/// Enable NUMA support.
/// (Default: False)
/// </summary>
[JsonPropertyName("numa")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public bool? Numa { get; set; }
}

0 comments on commit ebe5bb3

Please sign in to comment.