diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.cs index e6584b1..3aff552 100644 --- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.cs @@ -19,13 +19,15 @@ public partial interface IPlaygroundSettingsClient /// Create Playground Settings
/// Create playground settings. /// - /// /// + /// + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( object settings, string? name = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs index de10bee..a5ba4d2 100644 --- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs @@ -23,11 +23,15 @@ public partial interface IPlaygroundSettingsClient /// /// /// + /// + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, string? name = default, + string? description = default, + object? settings = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs b/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs index 10bb7be..865ef88 100644 --- a/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs @@ -31,6 +31,9 @@ public partial interface ITracerSessionsClient /// Default Value: false /// /// + /// + /// Default Value: true + /// /// /// The token to cancel the operation with /// @@ -50,6 +53,7 @@ public partial interface ITracerSessionsClient global::System.Collections.Generic.IList? tagValueId = default, bool? facets = default, string? filter = default, + bool? includeStats = default, string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeries.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeries.g.cs index 557f645..f42756b 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeries.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeries.g.cs @@ -35,6 +35,12 @@ public sealed partial class CustomChartSeries [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] public string? FeedbackKey { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("workspace_id")] + public global::System.Guid? WorkspaceId { get; set; } + /// /// /// @@ -57,6 +63,7 @@ public sealed partial class CustomChartSeries /// Metrics you can chart. Feedback metrics are not available for organization-scoped charts. /// /// + /// /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public CustomChartSeries( @@ -64,13 +71,15 @@ public CustomChartSeries( global::LangSmith.CustomChartMetric metric, global::System.Guid id, global::LangSmith.CustomChartSeriesFilters? filters, - string? feedbackKey) + string? feedbackKey, + global::System.Guid? workspaceId) { this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); this.Metric = metric; this.Id = id; this.Filters = filters; this.FeedbackKey = feedbackKey; + this.WorkspaceId = workspaceId; } /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesCreate.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesCreate.g.cs index 3d4826a..154d04c 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesCreate.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesCreate.g.cs @@ -35,6 +35,12 @@ public sealed partial class CustomChartSeriesCreate [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] public string? FeedbackKey { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("workspace_id")] + public global::System.Guid? WorkspaceId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -50,17 +56,20 @@ public sealed partial class CustomChartSeriesCreate /// Metrics you can chart. Feedback metrics are not available for organization-scoped charts. /// /// + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public CustomChartSeriesCreate( string name, global::LangSmith.CustomChartMetric metric, global::LangSmith.CustomChartSeriesFilters? filters, - string? feedbackKey) + string? feedbackKey, + global::System.Guid? workspaceId) { this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); this.Metric = metric; this.Filters = filters; this.FeedbackKey = feedbackKey; + this.WorkspaceId = workspaceId; } /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesUpdate.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesUpdate.g.cs index 2c952cf..988d8b1 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesUpdate.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartSeriesUpdate.g.cs @@ -35,6 +35,12 @@ public sealed partial class CustomChartSeriesUpdate [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] public string? FeedbackKey { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("workspace_id")] + public global::System.Guid? WorkspaceId { get; set; } + /// /// /// @@ -56,6 +62,7 @@ public sealed partial class CustomChartSeriesUpdate /// Metrics you can chart. Feedback metrics are not available for organization-scoped charts. /// /// + /// /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public CustomChartSeriesUpdate( @@ -63,12 +70,14 @@ public CustomChartSeriesUpdate( global::LangSmith.CustomChartMetric metric, global::LangSmith.CustomChartSeriesFilters? filters, string? feedbackKey, + global::System.Guid? workspaceId, global::System.Guid? id) { this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); this.Metric = metric; this.Filters = filters; this.FeedbackKey = feedbackKey; + this.WorkspaceId = workspaceId; this.Id = id; } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs index 5aa074a..a375efd 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.OrganizationConfig.g.cs @@ -134,6 +134,18 @@ public sealed partial class OrganizationConfig [global::System.Text.Json.Serialization.JsonPropertyName("enable_custom_experiment_names")] public bool? EnableCustomExperimentNames { get; set; } + /// + /// Default Value: false + /// + [global::System.Text.Json.Serialization.JsonPropertyName("enable_org_usage_charts")] + public bool? EnableOrgUsageCharts { get; set; } + + /// + /// Default Value: false + /// + [global::System.Text.Json.Serialization.JsonPropertyName("enable_select_all_traces")] + public bool? EnableSelectAllTraces { get; set; } + /// /// /// @@ -206,6 +218,12 @@ public sealed partial class OrganizationConfig /// /// Default Value: false /// + /// + /// Default Value: false + /// + /// + /// Default Value: false + /// /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public OrganizationConfig( @@ -230,6 +248,8 @@ public OrganizationConfig( bool? allowCustomIframes, bool? enableLanggraphPricing, bool? enableCustomExperimentNames, + bool? enableOrgUsageCharts, + bool? enableSelectAllTraces, global::System.Collections.Generic.Dictionary? flags) { this.MaxIdentities = maxIdentities; @@ -253,6 +273,8 @@ public OrganizationConfig( this.AllowCustomIframes = allowCustomIframes; this.EnableLanggraphPricing = enableLanggraphPricing; this.EnableCustomExperimentNames = enableCustomExperimentNames; + this.EnableOrgUsageCharts = enableOrgUsageCharts; + this.EnableSelectAllTraces = enableSelectAllTraces; this.Flags = flags; } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsCreateRequest.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsCreateRequest.g.cs index e2ffa6d..fc3aff7 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsCreateRequest.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsCreateRequest.g.cs @@ -11,15 +11,21 @@ public sealed partial class PlaygroundSettingsCreateRequest /// /// /// - [global::System.Text.Json.Serialization.JsonPropertyName("settings")] - [global::System.Text.Json.Serialization.JsonRequired] - public required object Settings { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// /// /// - [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("settings")] + [global::System.Text.Json.Serialization.JsonRequired] + public required object Settings { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -30,15 +36,18 @@ public sealed partial class PlaygroundSettingsCreateRequest /// /// Initializes a new instance of the class. /// - /// /// + /// + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public PlaygroundSettingsCreateRequest( object settings, - string? name) + string? name, + string? description) { this.Settings = settings ?? throw new global::System.ArgumentNullException(nameof(settings)); this.Name = name; + this.Description = description; } /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsResponse.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsResponse.g.cs index 197b819..790fb7f 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsResponse.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsResponse.g.cs @@ -42,6 +42,12 @@ public sealed partial class PlaygroundSettingsResponse [global::System.Text.Json.Serialization.JsonRequired] public required global::System.DateTime UpdatedAt { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -56,19 +62,22 @@ public sealed partial class PlaygroundSettingsResponse /// /// /// + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public PlaygroundSettingsResponse( global::System.Guid id, object settings, global::System.DateTime createdAt, global::System.DateTime updatedAt, - string? name) + string? name, + string? description) { this.Id = id; this.Settings = settings ?? throw new global::System.ArgumentNullException(nameof(settings)); this.CreatedAt = createdAt; this.UpdatedAt = updatedAt; this.Name = name; + this.Description = description; } /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequest.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequest.g.cs index 5514a99..c712dc2 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequest.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequest.g.cs @@ -14,6 +14,18 @@ public sealed partial class PlaygroundSettingsUpdateRequest [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("settings")] + public object? Settings { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -24,11 +36,17 @@ public sealed partial class PlaygroundSettingsUpdateRequest /// Initializes a new instance of the class. /// /// + /// + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public PlaygroundSettingsUpdateRequest( - string? name) + string? name, + string? description, + object? settings) { this.Name = name; + this.Description = description; + this.Settings = settings; } /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequestSettings.Json.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequestSettings.Json.g.cs new file mode 100644 index 0000000..4251400 --- /dev/null +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequestSettings.Json.g.cs @@ -0,0 +1,92 @@ +#nullable enable + +namespace LangSmith +{ + public sealed partial class PlaygroundSettingsUpdateRequestSettings + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::LangSmith.PlaygroundSettingsUpdateRequestSettings? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::LangSmith.PlaygroundSettingsUpdateRequestSettings), + jsonSerializerContext) as global::LangSmith.PlaygroundSettingsUpdateRequestSettings; + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::LangSmith.PlaygroundSettingsUpdateRequestSettings? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::LangSmith.PlaygroundSettingsUpdateRequestSettings), + jsonSerializerContext).ConfigureAwait(false)) as global::LangSmith.PlaygroundSettingsUpdateRequestSettings; + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequestSettings.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequestSettings.g.cs new file mode 100644 index 0000000..6841446 --- /dev/null +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundSettingsUpdateRequestSettings.g.cs @@ -0,0 +1,27 @@ + +#nullable enable + +namespace LangSmith +{ + /// + /// + /// + public sealed partial class PlaygroundSettingsUpdateRequestSettings + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] + public PlaygroundSettingsUpdateRequestSettings( + ) + { + } + } +} \ No newline at end of file diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.CreatePlaygroundSettings.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.CreatePlaygroundSettings.g.cs index a134a42..f5d1713 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.CreatePlaygroundSettings.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.CreatePlaygroundSettings.g.cs @@ -190,19 +190,22 @@ partial void ProcessCreatePlaygroundSettingsResponseContent( /// Create Playground Settings
/// Create playground settings. ///
- /// /// + /// + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( object settings, string? name = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::LangSmith.PlaygroundSettingsCreateRequest { - Settings = settings, Name = name, + Description = description, + Settings = settings, }; return await CreatePlaygroundSettingsAsync( diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs index 0a93046..7dd3525 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.cs @@ -198,16 +198,22 @@ partial void ProcessUpdatePlaygroundSettingsResponseContent( ///
/// /// + /// + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, string? name = default, + string? description = default, + object? settings = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::LangSmith.PlaygroundSettingsUpdateRequest { Name = name, + Description = description, + Settings = settings, }; return await UpdatePlaygroundSettingsAsync( diff --git a/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs b/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs index da23a75..96a10fc 100644 --- a/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs @@ -22,6 +22,7 @@ partial void PrepareReadTracerSessionsArguments( global::System.Collections.Generic.IList? tagValueId, ref bool? facets, ref string? filter, + ref bool? includeStats, ref string? accept); partial void PrepareReadTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, @@ -41,6 +42,7 @@ partial void PrepareReadTracerSessionsRequest( global::System.Collections.Generic.IList? tagValueId, bool? facets, string? filter, + bool? includeStats, string? accept); partial void ProcessReadTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, @@ -78,6 +80,9 @@ partial void ProcessReadTracerSessionsResponseContent( /// Default Value: false /// /// + /// + /// Default Value: true + /// /// /// The token to cancel the operation with /// @@ -97,6 +102,7 @@ partial void ProcessReadTracerSessionsResponseContent( global::System.Collections.Generic.IList? tagValueId = default, bool? facets = default, string? filter = default, + bool? includeStats = default, string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { @@ -119,6 +125,7 @@ partial void ProcessReadTracerSessionsResponseContent( tagValueId: tagValueId, facets: ref facets, filter: ref filter, + includeStats: ref includeStats, accept: ref accept); var __pathBuilder = new PathBuilder( @@ -140,6 +147,7 @@ partial void ProcessReadTracerSessionsResponseContent( .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("facets", facets?.ToString()) .AddOptionalParameter("filter", filter) + .AddOptionalParameter("include_stats", includeStats?.ToString()) ; var __path = __pathBuilder.ToString(); using var __httpRequest = new global::System.Net.Http.HttpRequestMessage( @@ -193,6 +201,7 @@ partial void ProcessReadTracerSessionsResponseContent( tagValueId: tagValueId, facets: facets, filter: filter, + includeStats: includeStats, accept: accept); using var __response = await HttpClient.SendAsync( diff --git a/src/libs/LangSmith/openapi.yaml b/src/libs/LangSmith/openapi.yaml index 42db546..483344f 100644 --- a/src/libs/LangSmith/openapi.yaml +++ b/src/libs/LangSmith/openapi.yaml @@ -224,6 +224,12 @@ paths: title: Filter type: string nullable: true + - name: include_stats + in: query + schema: + title: Include Stats + type: boolean + default: true - name: accept in: header schema: @@ -13242,6 +13248,11 @@ components: title: Feedback Key type: string nullable: true + workspace_id: + title: Workspace Id + type: string + format: uuid + nullable: true id: title: Id type: string @@ -13264,6 +13275,11 @@ components: title: Feedback Key type: string nullable: true + workspace_id: + title: Workspace Id + type: string + format: uuid + nullable: true CustomChartSeriesFilters: title: CustomChartSeriesFilters type: object @@ -13305,6 +13321,11 @@ components: title: Feedback Key type: string nullable: true + workspace_id: + title: Workspace Id + type: string + format: uuid + nullable: true id: title: Id type: string @@ -16469,6 +16490,14 @@ components: title: Enable Custom Experiment Names type: boolean default: false + enable_org_usage_charts: + title: Enable Org Usage Charts + type: boolean + default: false + enable_select_all_traces: + title: Enable Select All Traces + type: boolean + default: false flags: title: Flags type: object @@ -16973,13 +17002,17 @@ components: - settings type: object properties: - settings: - title: Settings - type: object name: title: Name type: string nullable: true + description: + title: Description + type: string + nullable: true + settings: + title: Settings + type: object PlaygroundSettingsResponse: title: PlaygroundSettingsResponse required: @@ -17008,6 +17041,10 @@ components: title: Updated At type: string format: date-time + description: + title: Description + type: string + nullable: true PlaygroundSettingsUpdateRequest: title: PlaygroundSettingsUpdateRequest type: object @@ -17016,6 +17053,14 @@ components: title: Name type: string nullable: true + description: + title: Description + type: string + nullable: true + settings: + title: Settings + type: object + nullable: true PromptOptimizationJob: title: PromptOptimizationJob required: