We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12ff077 + 9a9ccd9 commit 3d3977aCopy full SHA for 3d3977a
Deepgram/Models/Agent/v2/WebSocket/Think.cs
@@ -29,6 +29,14 @@ public record Think
29
[JsonPropertyName("functions")]
30
public List<Function>? Functions { get; set; }
31
32
+ /// <summary>
33
+ /// The context length, which can be an integer or the literal string "max".
34
+ /// </summary>
35
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
36
+ [JsonPropertyName("context_length")]
37
+ // The object type allows for both integer and string values, accommodating the "max" case.
38
+ public object? ContextLength { get; set; }
39
+
40
/// <summary>
41
/// Override ToString method to serialize the object
42
/// </summary>
0 commit comments