Skip to content

Commit

Permalink
Change RequestOptions.Stop to be a string array
Browse files Browse the repository at this point in the history
Fixes #52
  • Loading branch information
awaescher committed Jul 12, 2024
1 parent 7a54dc8 commit 55d3626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/RequestOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public partial class RequestOptions
/// </summary>
[JsonPropertyName("stop")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Stop { get; set; }
public string[]? Stop { get; set; }

/// <summary>
/// Tail free sampling is used to reduce the impact of less probable
Expand Down

0 comments on commit 55d3626

Please sign in to comment.