Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ namespace DashScope
typeof(global::DashScope.JsonConverters.UnixTimestampJsonConverter),
})]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::DashScope.JsonSerializerContextTypes))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List<object>), TypeInfoPropertyName = "SystemCollectionsGeneric_ObjectList")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::DashScope.DashScopeRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(string))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::DashScope.DashScopeInput))]
Expand Down Expand Up @@ -69,7 +70,6 @@ namespace DashScope
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List<global::DashScope.Message>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List<global::DashScope.DashScopeMedia>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List<string>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List<object>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::DashScope.OneOf<string, global::System.Collections.Generic.List<global::DashScope.ContentPart>>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List<global::DashScope.ContentPart>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::DashScope.OneOf<string, global::System.Collections.Generic.List<object>, object>))]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ public sealed partial class JsonSerializerContextTypes
/// </summary>
public global::System.Collections.Generic.Dictionary<string, object>? StringObjectDictionary { get; set; }

/// <summary>
/// Runtime object lists used by dynamic JSON payloads such as tool arguments.
/// </summary>
public global::System.Collections.Generic.List<object>? ObjectList { get; set; }

/// <summary>
///
/// </summary>
Expand Down