Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeesha committed Nov 3, 2024
1 parent 1e15610 commit b3bfc6c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions sdk-dotnet/src/API/Models.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,16 @@ public struct CreateRunInput
]
public OnStatusChange? OnStatusChange { get; set; }

[JsonPropertyName("reasoningTraces")]
[
JsonPropertyName("reasoningTraces"),
JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)
]
public bool? ReasoningTraces { get; set; }

[JsonPropertyName("callSummarization")]
[
JsonPropertyName("callSummarization"),
JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)
]
public bool? CallSummarization { get; set; }
}

Expand Down

0 comments on commit b3bfc6c

Please sign in to comment.