You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.Net: Add RetainArgumentTypes support to FunctionCallContentBuilder
Before this patch, the `FunctionCallContentBuilder` did not support retaining the
argument types. We need this to support retained argument types when not using auto
invoke function choices.
/// Creates a new instance of the <see cref="FunctionCallContentBuilder"/> class.
@@ -33,10 +34,12 @@ public FunctionCallContentBuilder()
33
34
/// Creates a new instance of the <see cref="FunctionCallContentBuilder"/> class.
34
35
/// </summary>
35
36
/// <param name="jsonSerializerOptions">The <see cref="JsonSerializerOptions"/> to use for deserializing function arguments.</param>
37
+
/// <param name="retainArgumentTypes">A value indicating whether the types of function arguments provided by the AI model are retained by SK or not. By default <see langword="false"/>.</param>
0 commit comments