diff --git a/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs b/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs index fb8dd5bf..c39df1bf 100644 --- a/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs +++ b/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs @@ -617,23 +617,23 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.AnyOf? Type151 { get; set; } + public global::System.AnyOf? Type151 { get; set; } /// /// /// - public global::System.AnyOf? Type152 { get; set; } + public global::LangSmith.DatasetInputsSchemaDefinition? Type152 { get; set; } /// /// /// - public global::LangSmith.DatasetInputsSchemaDefinition? Type153 { get; set; } + public global::System.AnyOf? Type153 { get; set; } /// /// /// - public global::System.AnyOf? Type154 { get; set; } + public global::LangSmith.DatasetOutputsSchemaDefinition? Type154 { get; set; } /// /// /// - public global::LangSmith.DatasetOutputsSchemaDefinition? Type155 { get; set; } + public global::System.AnyOf? Type155 { get; set; } /// /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDatasetApiV1DatasetsPost.g.cs b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDatasetApiV1DatasetsPost.g.cs index e1095565..12bb361f 100644 --- a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDatasetApiV1DatasetsPost.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDatasetApiV1DatasetsPost.g.cs @@ -102,9 +102,6 @@ partial void ProcessCreateDatasetApiV1DatasetsPostResponseContent( /// /// /// - /// - /// Default Value: kv - /// /// /// /// @@ -112,18 +109,21 @@ partial void ProcessCreateDatasetApiV1DatasetsPostResponseContent( /// /// /// + /// + /// Default Value: kv + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateDatasetApiV1DatasetsPostAsync( string name, global::System.AnyOf? description = default, global::System.DateTime createdAt = default, - global::System.AnyOf? dataType = default, global::System.AnyOf? inputsSchemaDefinition = default, global::System.AnyOf? outputsSchemaDefinition = default, global::System.AnyOf? externallyManaged = default, global::System.AnyOf? id = default, global::System.AnyOf? extra = default, + global::System.AllOf? dataType = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::LangSmith.DatasetCreate @@ -131,12 +131,12 @@ partial void ProcessCreateDatasetApiV1DatasetsPostResponseContent( Name = name, Description = description, CreatedAt = createdAt, - DataType = dataType, InputsSchemaDefinition = inputsSchemaDefinition, OutputsSchemaDefinition = outputsSchemaDefinition, ExternallyManaged = externallyManaged, Id = id, Extra = extra, + DataType = dataType, }; return await CreateDatasetApiV1DatasetsPostAsync( diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.Dataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.Dataset.g.cs index bebc57e1..5b6e400a 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.Dataset.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.Dataset.g.cs @@ -30,13 +30,6 @@ public sealed partial class Dataset [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] public global::System.DateTime CreatedAt { get; set; } - /// - /// Default Value: kv - /// - [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; - /// /// /// @@ -58,6 +51,13 @@ public sealed partial class Dataset [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] public global::System.AnyOf? ExternallyManaged { get; set; } = false; + /// + /// Default Value: kv + /// + [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] + public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; + /// /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs index 6dfa425b..28fe09f7 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs @@ -30,13 +30,6 @@ public sealed partial class DatasetCreate [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] public global::System.DateTime CreatedAt { get; set; } - /// - /// Default Value: kv - /// - [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; - /// /// /// @@ -72,6 +65,13 @@ public sealed partial class DatasetCreate [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] public global::System.AnyOf? Extra { get; set; } + /// + /// Default Value: kv + /// + [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1))] + public global::System.AllOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; + /// /// Additional properties that are not explicitly defined in the schema /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetPublicSchema.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetPublicSchema.g.cs index e3f46734..ee143e94 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetPublicSchema.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetPublicSchema.g.cs @@ -32,13 +32,6 @@ public sealed partial class DatasetPublicSchema [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] public global::System.DateTime CreatedAt { get; set; } - /// - /// Default Value: kv - /// - [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; - /// /// /// @@ -60,6 +53,13 @@ public sealed partial class DatasetPublicSchema [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] public global::System.AnyOf? ExternallyManaged { get; set; } = false; + /// + /// Default Value: kv + /// + [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] + public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; + /// /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetSchemaForUpdate.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetSchemaForUpdate.g.cs index 43b4c13a..b9fae6f5 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetSchemaForUpdate.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetSchemaForUpdate.g.cs @@ -30,13 +30,6 @@ public sealed partial class DatasetSchemaForUpdate [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] public global::System.DateTime CreatedAt { get; set; } - /// - /// Default Value: kv - /// - [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; - /// /// /// @@ -58,6 +51,13 @@ public sealed partial class DatasetSchemaForUpdate [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] public global::System.AnyOf? ExternallyManaged { get; set; } = false; + /// + /// Default Value: kv + /// + [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2))] + public global::System.AnyOf? DataType { get; set; } = global::LangSmith.DataType2.Kv; + /// /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.OrgFeatureFlags.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.OrgFeatureFlags.g.cs index 2e178b01..f7cba687 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.OrgFeatureFlags.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.OrgFeatureFlags.g.cs @@ -76,6 +76,10 @@ public enum OrgFeatureFlags /// /// LanggraphDeployOwnCloudEnabled, + /// + /// + /// + CustomChartsEnabled, } /// @@ -107,6 +111,7 @@ public static string ToValueString(this OrgFeatureFlags value) OrgFeatureFlags.ConsolidatePlaygroundComparative => "consolidate_playground_comparative", OrgFeatureFlags.ResourceTags => "resource_tags", OrgFeatureFlags.LanggraphDeployOwnCloudEnabled => "langgraph_deploy_own_cloud_enabled", + OrgFeatureFlags.CustomChartsEnabled => "custom_charts_enabled", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -134,6 +139,7 @@ public static string ToValueString(this OrgFeatureFlags value) "consolidate_playground_comparative" => OrgFeatureFlags.ConsolidatePlaygroundComparative, "resource_tags" => OrgFeatureFlags.ResourceTags, "langgraph_deploy_own_cloud_enabled" => OrgFeatureFlags.LanggraphDeployOwnCloudEnabled, + "custom_charts_enabled" => OrgFeatureFlags.CustomChartsEnabled, _ => null, }; } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs index f92eeb96..4ae62638 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs @@ -73,6 +73,12 @@ public sealed partial class OrganizationConfig [global::System.Text.Json.Serialization.JsonPropertyName("max_langgraph_cloud_deployments")] public int MaxLanggraphCloudDeployments { get; set; } = 1; + /// + /// Default Value: false + /// + [global::System.Text.Json.Serialization.JsonPropertyName("collated_threads_view")] + public bool CollatedThreadsView { get; set; } = false; + /// /// /// diff --git a/src/libs/LangSmith/openapi.yaml b/src/libs/LangSmith/openapi.yaml index 97038d61..071e87cb 100644 --- a/src/libs/LangSmith/openapi.yaml +++ b/src/libs/LangSmith/openapi.yaml @@ -10812,11 +10812,6 @@ components: title: Created At type: string format: date-time - data_type: - anyOf: - - $ref: '#/components/schemas/DataType' - - type: 'null' - default: kv inputs_schema_definition: title: Inputs Schema Definition anyOf: @@ -10833,6 +10828,11 @@ components: - type: boolean - type: 'null' default: false + data_type: + anyOf: + - $ref: '#/components/schemas/DataType' + - type: 'null' + default: kv id: title: Id type: string @@ -10876,11 +10876,6 @@ components: title: Created At type: string format: date-time - data_type: - anyOf: - - $ref: '#/components/schemas/DataType' - - type: 'null' - default: kv inputs_schema_definition: title: Inputs Schema Definition anyOf: @@ -10908,6 +10903,10 @@ components: anyOf: - type: object - type: 'null' + data_type: + allOf: + - $ref: '#/components/schemas/DataType' + default: kv description: Create class for Dataset. DatasetDiffInfo: title: DatasetDiffInfo @@ -10990,11 +10989,6 @@ components: title: Created At type: string format: date-time - data_type: - anyOf: - - $ref: '#/components/schemas/DataType' - - type: 'null' - default: kv inputs_schema_definition: title: Inputs Schema Definition anyOf: @@ -11011,6 +11005,11 @@ components: - type: boolean - type: 'null' default: false + data_type: + anyOf: + - $ref: '#/components/schemas/DataType' + - type: 'null' + default: kv id: title: Id type: string @@ -11039,11 +11038,6 @@ components: title: Created At type: string format: date-time - data_type: - anyOf: - - $ref: '#/components/schemas/DataType' - - type: 'null' - default: kv inputs_schema_definition: title: Inputs Schema Definition anyOf: @@ -11060,6 +11054,11 @@ components: - type: boolean - type: 'null' default: false + data_type: + anyOf: + - $ref: '#/components/schemas/DataType' + - type: 'null' + default: kv id: title: Id type: string @@ -13053,6 +13052,7 @@ components: - consolidate_playground_comparative - resource_tags - langgraph_deploy_own_cloud_enabled + - custom_charts_enabled type: string description: 'Feature flags for orgs (cannot subclass an enum and may diverge from tenant flags, so maintained separately).' OrgIdentityPatch: @@ -13413,6 +13413,10 @@ components: title: Max Langgraph Cloud Deployments type: integer default: 1 + collated_threads_view: + title: Collated Threads View + type: boolean + default: false flags: title: Flags type: object @@ -13436,6 +13440,7 @@ components: consolidate_playground_comparative: false resource_tags: false langgraph_deploy_own_cloud_enabled: false + custom_charts_enabled: false description: Organization level configuration. May include any field that exists in tenant config and additional fields. OrganizationDashboardColorScheme: title: OrganizationDashboardColorScheme