Skip to content

Commit

Permalink
fix: Add reasoning traces and call summarization properties (#33)
Browse files Browse the repository at this point in the history
* feat: Add reasoning traces and call summarization properties

* update

* update
  • Loading branch information
nadeesha authored Nov 3, 2024
1 parent 8b85ed8 commit a654f97
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions sdk-dotnet/src/API/Models.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,18 @@ public struct CreateRunInput
JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)
]
public OnStatusChange? OnStatusChange { get; set; }

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

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

public struct OnStatusChange
Expand Down

0 comments on commit a654f97

Please sign in to comment.