diff --git a/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendAllBreakdowns.g.cs b/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendAllBreakdowns.g.cs
new file mode 100644
index 00000000..b024c5d6
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendAllBreakdowns.g.cs
@@ -0,0 +1,530 @@
+
+#nullable enable
+
+namespace Opik
+{
+ public partial class AiSpendClient
+ {
+
+ private static readonly global::Opik.AutoSDKServer[] s_GetSpendAllBreakdownsServers = new global::Opik.AutoSDKServer[]
+ { new global::Opik.AutoSDKServer(
+ id: "http-localhost-api",
+ name: "Local server",
+ url: "http://localhost:5173/api",
+ description: "Local server"),
+ new global::Opik.AutoSDKServer(
+ id: "https-www-comet-com-opik-api",
+ name: "Opik Cloud",
+ url: "https://www.comet.com/opik/api",
+ description: "Opik Cloud"),
+ };
+
+
+ private static readonly global::Opik.EndPointSecurityRequirement s_GetSpendAllBreakdownsSecurityRequirement0 =
+ new global::Opik.EndPointSecurityRequirement
+ {
+ Authorizations = new global::Opik.EndPointAuthorizationRequirement[]
+ { new global::Opik.EndPointAuthorizationRequirement
+ {
+ Type = "Http",
+ SchemeId = "HttpBearer",
+ Location = "Header",
+ Name = "Bearer",
+ FriendlyName = "Bearer",
+ },
+ },
+ };
+ private static readonly global::Opik.EndPointSecurityRequirement[] s_GetSpendAllBreakdownsSecurityRequirements =
+ new global::Opik.EndPointSecurityRequirement[]
+ { s_GetSpendAllBreakdownsSecurityRequirement0,
+ };
+ partial void PrepareGetSpendAllBreakdownsArguments(
+ global::System.Net.Http.HttpClient httpClient,
+ global::Opik.SpendMetricRequest request);
+ partial void PrepareGetSpendAllBreakdownsRequest(
+ global::System.Net.Http.HttpClient httpClient,
+ global::System.Net.Http.HttpRequestMessage httpRequestMessage,
+ global::Opik.SpendMetricRequest request);
+ partial void ProcessGetSpendAllBreakdownsResponse(
+ global::System.Net.Http.HttpClient httpClient,
+ global::System.Net.Http.HttpResponseMessage httpResponseMessage);
+
+ partial void ProcessGetSpendAllBreakdownsResponseContent(
+ global::System.Net.Http.HttpClient httpClient,
+ global::System.Net.Http.HttpResponseMessage httpResponseMessage,
+ ref string content);
+
+ ///
+ /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ public async global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync(
+
+ global::Opik.SpendMetricRequest request,
+ global::Opik.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default)
+ {
+ var __response = await GetSpendAllBreakdownsAsResponseAsync(
+
+ request: request,
+ requestOptions: requestOptions,
+ cancellationToken: cancellationToken
+ ).ConfigureAwait(false);
+
+ return __response.Body;
+ }
+ ///
+ /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ public async global::System.Threading.Tasks.Task> GetSpendAllBreakdownsAsResponseAsync(
+
+ global::Opik.SpendMetricRequest request,
+ global::Opik.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default)
+ {
+ request = request ?? throw new global::System.ArgumentNullException(nameof(request));
+
+ PrepareArguments(
+ client: HttpClient);
+ PrepareGetSpendAllBreakdownsArguments(
+ httpClient: HttpClient,
+ request: request);
+
+
+ var __authorizations = global::Opik.EndPointSecurityResolver.ResolveAuthorizations(
+ availableAuthorizations: Authorizations,
+ securityRequirements: s_GetSpendAllBreakdownsSecurityRequirements,
+ operationName: "GetSpendAllBreakdownsAsync");
+
+ using var __timeoutCancellationTokenSource = global::Opik.AutoSDKRequestOptionsSupport.CreateTimeoutCancellationTokenSource(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ cancellationToken: cancellationToken);
+ var __effectiveCancellationToken = __timeoutCancellationTokenSource?.Token ?? cancellationToken;
+ var __effectiveReadResponseAsString = global::Opik.AutoSDKRequestOptionsSupport.GetReadResponseAsString(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ fallbackValue: ReadResponseAsString);
+ var __maxAttempts = global::Opik.AutoSDKRequestOptionsSupport.GetMaxAttempts(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ supportsRetry: true);
+
+ global::System.Net.Http.HttpRequestMessage __CreateHttpRequest()
+ {
+
+ var __pathBuilder = new global::Opik.PathBuilder(
+ path: "/v1/private/ai-spend/composition/breakdowns",
+ baseUri: ResolveBaseUri(
+ servers: s_GetSpendAllBreakdownsServers,
+ defaultBaseUrl: "http://localhost:5173/api"));
+ var __path = __pathBuilder.ToString();
+ __path = global::Opik.AutoSDKRequestOptionsSupport.AppendQueryParameters(
+ path: __path,
+ clientParameters: Options.QueryParameters,
+ requestParameters: requestOptions?.QueryParameters);
+ var __httpRequest = new global::System.Net.Http.HttpRequestMessage(
+ method: global::System.Net.Http.HttpMethod.Post,
+ requestUri: new global::System.Uri(__path, global::System.UriKind.RelativeOrAbsolute));
+#if NET6_0_OR_GREATER
+ __httpRequest.Version = global::System.Net.HttpVersion.Version11;
+ __httpRequest.VersionPolicy = global::System.Net.Http.HttpVersionPolicy.RequestVersionOrHigher;
+#endif
+
+ foreach (var __authorization in __authorizations)
+ {
+ if (__authorization.Type == "Http" ||
+ __authorization.Type == "OAuth2" ||
+ __authorization.Type == "OpenIdConnect")
+ {
+ __httpRequest.Headers.Authorization = new global::System.Net.Http.Headers.AuthenticationHeaderValue(
+ scheme: __authorization.Name,
+ parameter: __authorization.Value);
+ }
+ else if (__authorization.Type == "ApiKey" &&
+ __authorization.Location == "Header")
+ {
+ __httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
+ }
+ }
+ var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
+ var __httpRequestContent = new global::System.Net.Http.StringContent(
+ content: __httpRequestContentBody,
+ encoding: global::System.Text.Encoding.UTF8,
+ mediaType: "application/json");
+ __httpRequest.Content = __httpRequestContent;
+ global::Opik.AutoSDKRequestOptionsSupport.ApplyHeaders(
+ request: __httpRequest,
+ clientHeaders: Options.Headers,
+ requestHeaders: requestOptions?.Headers);
+
+ PrepareRequest(
+ client: HttpClient,
+ request: __httpRequest);
+ PrepareGetSpendAllBreakdownsRequest(
+ httpClient: HttpClient,
+ httpRequestMessage: __httpRequest,
+ request: request);
+
+ return __httpRequest;
+ }
+
+ global::System.Net.Http.HttpRequestMessage? __httpRequest = null;
+ global::System.Net.Http.HttpResponseMessage? __response = null;
+ var __attemptNumber = 0;
+ try
+ {
+ for (var __attempt = 1; __attempt <= __maxAttempts; __attempt++)
+ {
+ __attemptNumber = __attempt;
+ __httpRequest = __CreateHttpRequest();
+ await global::Opik.AutoSDKRequestOptionsSupport.OnBeforeRequestAsync(
+ clientOptions: Options,
+ context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "GetSpendAllBreakdowns",
+ methodName: "GetSpendAllBreakdownsAsync",
+ pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: null,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attempt,
+ maxAttempts: __maxAttempts,
+ willRetry: false,
+ retryDelay: null,
+ retryReason: global::System.String.Empty,
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ try
+ {
+ __response = await HttpClient.SendAsync(
+ request: __httpRequest,
+ completionOption: global::System.Net.Http.HttpCompletionOption.ResponseContentRead,
+ cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
+ }
+ catch (global::System.Net.Http.HttpRequestException __exception)
+ {
+ var __retryDelay = global::Opik.AutoSDKRequestOptionsSupport.GetRetryDelay(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ response: null,
+ attempt: __attempt);
+ var __willRetry = __attempt < __maxAttempts && !__effectiveCancellationToken.IsCancellationRequested;
+ await global::Opik.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
+ clientOptions: Options,
+ context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "GetSpendAllBreakdowns",
+ methodName: "GetSpendAllBreakdownsAsync",
+ pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: null,
+ exception: __exception,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attempt,
+ maxAttempts: __maxAttempts,
+ willRetry: __willRetry,
+ retryDelay: __willRetry ? __retryDelay : (global::System.TimeSpan?)null,
+ retryReason: "exception",
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ if (!__willRetry)
+ {
+ throw;
+ }
+
+ __httpRequest.Dispose();
+ __httpRequest = null;
+ await global::Opik.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync(
+ retryDelay: __retryDelay,
+ cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
+ continue;
+ }
+
+ if (__response != null &&
+ __attempt < __maxAttempts &&
+ global::Opik.AutoSDKRequestOptionsSupport.ShouldRetryStatusCode(__response.StatusCode))
+ {
+ var __retryDelay = global::Opik.AutoSDKRequestOptionsSupport.GetRetryDelay(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ response: __response,
+ attempt: __attempt);
+ await global::Opik.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
+ clientOptions: Options,
+ context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "GetSpendAllBreakdowns",
+ methodName: "GetSpendAllBreakdownsAsync",
+ pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: __response,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attempt,
+ maxAttempts: __maxAttempts,
+ willRetry: true,
+ retryDelay: __retryDelay,
+ retryReason: "status:" + ((int)__response.StatusCode).ToString(global::System.Globalization.CultureInfo.InvariantCulture),
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ __response.Dispose();
+ __response = null;
+ __httpRequest.Dispose();
+ __httpRequest = null;
+ await global::Opik.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync(
+ retryDelay: __retryDelay,
+ cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
+ continue;
+ }
+
+ break;
+ }
+
+ if (__response == null)
+ {
+ throw new global::System.InvalidOperationException("No response received.");
+ }
+
+ using (__response)
+ {
+
+ ProcessResponse(
+ client: HttpClient,
+ response: __response);
+ ProcessGetSpendAllBreakdownsResponse(
+ httpClient: HttpClient,
+ httpResponseMessage: __response);
+ if (__response.IsSuccessStatusCode)
+ {
+ await global::Opik.AutoSDKRequestOptionsSupport.OnAfterSuccessAsync(
+ clientOptions: Options,
+ context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "GetSpendAllBreakdowns",
+ methodName: "GetSpendAllBreakdownsAsync",
+ pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: __response,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attemptNumber,
+ maxAttempts: __maxAttempts,
+ willRetry: false,
+ retryDelay: null,
+ retryReason: global::System.String.Empty,
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ }
+ else
+ {
+ await global::Opik.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
+ clientOptions: Options,
+ context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "GetSpendAllBreakdowns",
+ methodName: "GetSpendAllBreakdownsAsync",
+ pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: __response,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attemptNumber,
+ maxAttempts: __maxAttempts,
+ willRetry: false,
+ retryDelay: null,
+ retryReason: global::System.String.Empty,
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ }
+ // Bad Request
+ if ((int)__response.StatusCode == 400)
+ {
+ string? __content_400 = null;
+ global::System.Exception? __exception_400 = null;
+ global::Opik.ErrorMessage? __value_400 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_400 = global::Opik.ErrorMessage.FromJson(__content_400, JsonSerializerContext);
+ }
+ else
+ {
+ __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_400 = global::Opik.ErrorMessage.FromJson(__content_400, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_400 = __ex;
+ }
+
+
+ throw global::Opik.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_400 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_400,
+ responseBody: __content_400,
+ responseObject: __value_400,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+
+ if (__effectiveReadResponseAsString)
+ {
+ var __content = await __response.Content.ReadAsStringAsync(
+ #if NET5_0_OR_GREATER
+ __effectiveCancellationToken
+ #endif
+ ).ConfigureAwait(false);
+
+ ProcessResponseContent(
+ client: HttpClient,
+ response: __response,
+ content: ref __content);
+ ProcessGetSpendAllBreakdownsResponseContent(
+ httpClient: HttpClient,
+ httpResponseMessage: __response,
+ content: ref __content);
+
+ try
+ {
+ __response.EnsureSuccessStatusCode();
+
+ var __value = global::Opik.SpendBreakdownsResponse.FromJson(__content, JsonSerializerContext) ??
+ throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
+ return new global::Opik.AutoSDKHttpResponse(
+ statusCode: __response.StatusCode,
+ headers: global::Opik.AutoSDKHttpResponse.CreateHeaders(__response),
+ requestUri: __response.RequestMessage?.RequestUri,
+ body: __value);
+ }
+ catch (global::System.Exception __ex)
+ {
+ throw global::Opik.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __ex,
+ responseBody: __content,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ }
+ else
+ {
+ try
+ {
+ __response.EnsureSuccessStatusCode();
+ using var __content = await __response.Content.ReadAsStreamAsync(
+ #if NET5_0_OR_GREATER
+ __effectiveCancellationToken
+ #endif
+ ).ConfigureAwait(false);
+
+ var __value = await global::Opik.SpendBreakdownsResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ??
+ throw new global::System.InvalidOperationException("Response deserialization failed.");
+ return new global::Opik.AutoSDKHttpResponse(
+ statusCode: __response.StatusCode,
+ headers: global::Opik.AutoSDKHttpResponse.CreateHeaders(__response),
+ requestUri: __response.RequestMessage?.RequestUri,
+ body: __value);
+ }
+ catch (global::System.Exception __ex)
+ {
+ string? __content = null;
+ try
+ {
+ __content = await __response.Content.ReadAsStringAsync(
+ #if NET5_0_OR_GREATER
+ __effectiveCancellationToken
+ #endif
+ ).ConfigureAwait(false);
+ }
+ catch (global::System.Exception)
+ {
+ }
+
+ throw global::Opik.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __ex,
+ responseBody: __content,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ }
+
+ }
+ }
+ finally
+ {
+ __httpRequest?.Dispose();
+ }
+ }
+ ///
+ /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ public async global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync(
+ global::System.DateTime intervalStart,
+ global::System.DateTime intervalEnd,
+ global::System.Guid? projectId = default,
+ string? projectName = default,
+ string? userId = default,
+ bool? startBeforeEnd = default,
+ bool? projectProvided = default,
+ global::Opik.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default)
+ {
+ var __request = new global::Opik.SpendMetricRequest
+ {
+ ProjectId = projectId,
+ ProjectName = projectName,
+ IntervalStart = intervalStart,
+ IntervalEnd = intervalEnd,
+ UserId = userId,
+ StartBeforeEnd = startBeforeEnd,
+ ProjectProvided = projectProvided,
+ };
+
+ return await GetSpendAllBreakdownsAsync(
+ request: __request,
+ requestOptions: requestOptions,
+ cancellationToken: cancellationToken).ConfigureAwait(false);
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendAllBreakdowns.g.cs b/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendAllBreakdowns.g.cs
new file mode 100644
index 00000000..8048034b
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendAllBreakdowns.g.cs
@@ -0,0 +1,58 @@
+#nullable enable
+
+namespace Opik
+{
+ public partial interface IAiSpendClient
+ {
+ ///
+ /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync(
+
+ global::Opik.SpendMetricRequest request,
+ global::Opik.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> GetSpendAllBreakdownsAsResponseAsync(
+
+ global::Opik.SpendMetricRequest request,
+ global::Opik.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync(
+ global::System.DateTime intervalStart,
+ global::System.DateTime intervalEnd,
+ global::System.Guid? projectId = default,
+ string? projectName = default,
+ string? userId = default,
+ bool? startBeforeEnd = default,
+ bool? projectProvided = default,
+ global::Opik.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs b/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs
index 09bbf3ef..47199683 100644
--- a/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs
+++ b/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs
@@ -35,11 +35,13 @@ public partial interface IProjectsClient
/// Retrieve project
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task RetrieveProjectAsync(
string name,
+ bool? includeStats = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
index 164a7c19..8fc791c2 100644
--- a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
+++ b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
@@ -1040,19 +1040,21 @@ namespace Opik
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ReportedIssueSeverity), TypeInfoPropertyName = "ReportedIssueSeverity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueUpdate))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueUpdateStatus), TypeInfoPropertyName = "AgentInsightsIssueUpdateStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.HarnessEntry))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Lane))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Item))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ModelTiers))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendBreakdownResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendBreakdownsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendMetricRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.HarnessEntry))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Lane))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Side))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendCompositionResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendMetricRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Item))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendBreakdownResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Result))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(double))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendSummaryResponse))]
@@ -1457,8 +1459,6 @@ namespace Opik
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AvgValueStatPublicVariant2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CountValueStatPublic))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CountValueStatPublicVariant2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublic))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublicVariant2))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2416,6 +2416,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublic))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublicVariant2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValuesPublic))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicType), TypeInfoPropertyName = "ProjectStatItemObjectPublicType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminator))]
@@ -2914,8 +2916,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.RevokeRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.TokenRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromCsvRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequestFormat), TypeInfoPropertyName = "CreateDatasetItemsFromJsonRequestFormat2")]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -3873,6 +3873,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequestFormat), TypeInfoPropertyName = "CreateDatasetItemsFromJsonRequestFormat2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesStatus), TypeInfoPropertyName = "FindAgentInsightsIssuesStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesSeverity), TypeInfoPropertyName = "FindAgentInsightsIssuesSeverity2")]
@@ -3919,9 +3921,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
index 03033c9c..c149c1fe 100644
--- a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
@@ -348,3799 +348,3807 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Opik.HarnessEntry? Type80 { get; set; }
+ public global::Opik.Item? Type80 { get; set; }
///
///
///
- public global::Opik.Lane? Type81 { get; set; }
+ public global::System.Collections.Generic.IList? Type81 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type82 { get; set; }
+ public global::Opik.ModelTiers? Type82 { get; set; }
///
///
///
- public global::Opik.ModelTiers? Type83 { get; set; }
+ public global::Opik.SpendBreakdownResponse? Type83 { get; set; }
///
///
///
- public bool? Type84 { get; set; }
+ public global::System.Collections.Generic.IList? Type84 { get; set; }
///
///
///
- public global::Opik.Side? Type85 { get; set; }
+ public global::Opik.SpendBreakdownsResponse? Type85 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type86 { get; set; }
+ public global::System.Collections.Generic.IList? Type86 { get; set; }
///
///
///
- public global::Opik.SpendCompositionResponse? Type87 { get; set; }
+ public global::Opik.SpendMetricRequest? Type87 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type88 { get; set; }
+ public bool? Type88 { get; set; }
///
///
///
- public global::Opik.SpendMetricRequest? Type89 { get; set; }
+ public global::Opik.HarnessEntry? Type89 { get; set; }
///
///
///
- public global::Opik.Item? Type90 { get; set; }
+ public global::Opik.Lane? Type90 { get; set; }
///
///
///
- public global::Opik.SpendBreakdownResponse? Type91 { get; set; }
+ public global::Opik.Side? Type91 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type92 { get; set; }
+ public global::System.Collections.Generic.IList? Type92 { get; set; }
///
///
///
- public global::Opik.Result? Type93 { get; set; }
+ public global::Opik.SpendCompositionResponse? Type93 { get; set; }
///
///
///
- public double? Type94 { get; set; }
+ public global::System.Collections.Generic.IList? Type94 { get; set; }
///
///
///
- public global::Opik.SpendSummaryResponse? Type95 { get; set; }
+ public global::Opik.Result? Type95 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type96 { get; set; }
+ public double? Type96 { get; set; }
///
///
///
- public global::Opik.SpendUserPage? Type97 { get; set; }
+ public global::Opik.SpendSummaryResponse? Type97 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type98 { get; set; }
+ public global::System.Collections.Generic.IList? Type98 { get; set; }
///
///
///
- public global::Opik.SpendUserRow? Type99 { get; set; }
+ public global::Opik.SpendUserPage? Type99 { get; set; }
///
///
///
- public global::Opik.Alert? Type100 { get; set; }
+ public global::System.Collections.Generic.IList? Type100 { get; set; }
///
///
///
- public global::Opik.AlertAlertType? Type101 { get; set; }
+ public global::Opik.SpendUserRow? Type101 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type102 { get; set; }
+ public global::Opik.Alert? Type102 { get; set; }
///
///
///
- public global::Opik.Webhook? Type103 { get; set; }
+ public global::Opik.AlertAlertType? Type103 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type104 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type104 { get; set; }
///
///
///
- public global::Opik.AlertTrigger? Type105 { get; set; }
+ public global::Opik.Webhook? Type105 { get; set; }
///
///
///
- public global::Opik.AlertTriggerEventType? Type106 { get; set; }
+ public global::System.Collections.Generic.IList? Type106 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type107 { get; set; }
+ public global::Opik.AlertTrigger? Type107 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfig? Type108 { get; set; }
+ public global::Opik.AlertTriggerEventType? Type108 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigType? Type109 { get; set; }
+ public global::System.Collections.Generic.IList? Type109 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigWrite? Type110 { get; set; }
+ public global::Opik.AlertTriggerConfig? Type110 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigWriteType? Type111 { get; set; }
+ public global::Opik.AlertTriggerConfigType? Type111 { get; set; }
///
///
///
- public global::Opik.AlertTriggerWrite? Type112 { get; set; }
+ public global::Opik.AlertTriggerConfigWrite? Type112 { get; set; }
///
///
///
- public global::Opik.AlertTriggerWriteEventType? Type113 { get; set; }
+ public global::Opik.AlertTriggerConfigWriteType? Type113 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type114 { get; set; }
+ public global::Opik.AlertTriggerWrite? Type114 { get; set; }
///
///
///
- public global::Opik.AlertWrite? Type115 { get; set; }
+ public global::Opik.AlertTriggerWriteEventType? Type115 { get; set; }
///
///
///
- public global::Opik.AlertWriteAlertType? Type116 { get; set; }
+ public global::System.Collections.Generic.IList? Type116 { get; set; }
///
///
///
- public global::Opik.WebhookWrite? Type117 { get; set; }
+ public global::Opik.AlertWrite? Type117 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type118 { get; set; }
+ public global::Opik.AlertWriteAlertType? Type118 { get; set; }
///
///
///
- public global::Opik.BatchDelete? Type119 { get; set; }
+ public global::Opik.WebhookWrite? Type119 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type120 { get; set; }
+ public global::System.Collections.Generic.IList? Type120 { get; set; }
///
///
///
- public global::Opik.AlertPagePublic? Type121 { get; set; }
+ public global::Opik.BatchDelete? Type121 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type122 { get; set; }
+ public global::System.Collections.Generic.IList? Type122 { get; set; }
///
///
///
- public global::Opik.AlertPublic? Type123 { get; set; }
+ public global::Opik.AlertPagePublic? Type123 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigPublic? Type124 { get; set; }
+ public global::System.Collections.Generic.IList? Type124 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigPublicType? Type125 { get; set; }
+ public global::Opik.AlertPublic? Type125 { get; set; }
///
///
///
- public global::Opik.AlertTriggerPublic? Type126 { get; set; }
+ public global::Opik.AlertTriggerConfigPublic? Type126 { get; set; }
///
///
///
- public global::Opik.AlertTriggerPublicEventType? Type127 { get; set; }
+ public global::Opik.AlertTriggerConfigPublicType? Type127 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type128 { get; set; }
+ public global::Opik.AlertTriggerPublic? Type128 { get; set; }
///
///
///
- public global::Opik.AlertPublicAlertType? Type129 { get; set; }
+ public global::Opik.AlertTriggerPublicEventType? Type129 { get; set; }
///
///
///
- public global::Opik.WebhookPublic? Type130 { get; set; }
+ public global::System.Collections.Generic.IList? Type130 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type131 { get; set; }
+ public global::Opik.AlertPublicAlertType? Type131 { get; set; }
///
///
///
- public global::Opik.WebhookExamples? Type132 { get; set; }
+ public global::Opik.WebhookPublic? Type132 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type133 { get; set; }
+ public global::System.Collections.Generic.IList? Type133 { get; set; }
///
///
///
- public object? Type134 { get; set; }
+ public global::Opik.WebhookExamples? Type134 { get; set; }
///
///
///
- public global::Opik.WebhookTestResult? Type135 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type135 { get; set; }
///
///
///
- public global::Opik.WebhookTestResultStatus? Type136 { get; set; }
+ public object? Type136 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueItemIds? Type137 { get; set; }
+ public global::Opik.WebhookTestResult? Type137 { get; set; }
///
///
///
- public global::Opik.AnnotationQueue? Type138 { get; set; }
+ public global::Opik.WebhookTestResultStatus? Type138 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueScope? Type139 { get; set; }
+ public global::Opik.AnnotationQueueItemIds? Type139 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type140 { get; set; }
+ public global::Opik.AnnotationQueue? Type140 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueReviewer? Type141 { get; set; }
+ public global::Opik.AnnotationQueueScope? Type141 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type142 { get; set; }
+ public global::System.Collections.Generic.IList? Type142 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreAverage? Type143 { get; set; }
+ public global::Opik.AnnotationQueueReviewer? Type143 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueWrite? Type144 { get; set; }
+ public global::System.Collections.Generic.IList? Type144 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueWriteScope? Type145 { get; set; }
+ public global::Opik.FeedbackScoreAverage? Type145 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueBatch? Type146 { get; set; }
+ public global::Opik.AnnotationQueueWrite? Type146 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type147 { get; set; }
+ public global::Opik.AnnotationQueueWriteScope? Type147 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueBatchWrite? Type148 { get; set; }
+ public global::Opik.AnnotationQueueBatch? Type148 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type149 { get; set; }
+ public global::System.Collections.Generic.IList? Type149 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePagePublic? Type150 { get; set; }
+ public global::Opik.AnnotationQueueBatchWrite? Type150 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type151 { get; set; }
+ public global::System.Collections.Generic.IList? Type151 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePublic? Type152 { get; set; }
+ public global::Opik.AnnotationQueuePagePublic? Type152 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueReviewerPublic? Type153 { get; set; }
+ public global::System.Collections.Generic.IList? Type153 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePublicScope? Type154 { get; set; }
+ public global::Opik.AnnotationQueuePublic? Type154 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type155 { get; set; }
+ public global::Opik.AnnotationQueueReviewerPublic? Type155 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type156 { get; set; }
+ public global::Opik.AnnotationQueuePublicScope? Type156 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreAveragePublic? Type157 { get; set; }
+ public global::System.Collections.Generic.IList? Type157 { get; set; }
///
///
///
- public global::Opik.ItemLockInfo? Type158 { get; set; }
+ public global::System.Collections.Generic.IList? Type158 { get; set; }
///
///
///
- public global::Opik.LocksResponse? Type159 { get; set; }
+ public global::Opik.FeedbackScoreAveragePublic? Type159 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type160 { get; set; }
+ public global::Opik.ItemLockInfo? Type160 { get; set; }
///
///
///
- public global::Opik.LockResponse? Type161 { get; set; }
+ public global::Opik.LocksResponse? Type161 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueUpdate? Type162 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type162 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatch? Type163 { get; set; }
+ public global::Opik.LockResponse? Type163 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchEntityType? Type164 { get; set; }
+ public global::Opik.AnnotationQueueUpdate? Type164 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type165 { get; set; }
+ public global::Opik.AssertionResultBatch? Type165 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItem? Type166 { get; set; }
+ public global::Opik.AssertionResultBatchEntityType? Type166 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItemStatus? Type167 { get; set; }
+ public global::System.Collections.Generic.IList? Type167 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItemSource? Type168 { get; set; }
+ public global::Opik.AssertionResultBatchItem? Type168 { get; set; }
///
///
///
- public global::Opik.Attachment? Type169 { get; set; }
+ public global::Opik.AssertionResultBatchItemStatus? Type169 { get; set; }
///
///
///
- public global::Opik.AttachmentPage? Type170 { get; set; }
+ public global::Opik.AssertionResultBatchItemSource? Type170 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type171 { get; set; }
+ public global::Opik.Attachment? Type171 { get; set; }
///
///
///
- public global::Opik.CompleteMultipartUploadRequest? Type172 { get; set; }
+ public global::Opik.AttachmentPage? Type172 { get; set; }
///
///
///
- public global::Opik.CompleteMultipartUploadRequestEntityType? Type173 { get; set; }
+ public global::System.Collections.Generic.IList? Type173 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type174 { get; set; }
+ public global::Opik.CompleteMultipartUploadRequest? Type174 { get; set; }
///
///
///
- public global::Opik.MultipartUploadPart? Type175 { get; set; }
+ public global::Opik.CompleteMultipartUploadRequestEntityType? Type175 { get; set; }
///
///
///
- public global::Opik.DeleteAttachmentsRequest? Type176 { get; set; }
+ public global::System.Collections.Generic.IList? Type176 { get; set; }
///
///
///
- public global::Opik.DeleteAttachmentsRequestEntityType? Type177 { get; set; }
+ public global::Opik.MultipartUploadPart? Type177 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadResponse? Type178 { get; set; }
+ public global::Opik.DeleteAttachmentsRequest? Type178 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadRequest? Type179 { get; set; }
+ public global::Opik.DeleteAttachmentsRequestEntityType? Type179 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadRequestEntityType? Type180 { get; set; }
+ public global::Opik.StartMultipartUploadResponse? Type180 { get; set; }
///
///
///
- public global::Opik.AuthDetailsHolder? Type181 { get; set; }
+ public global::Opik.StartMultipartUploadRequest? Type181 { get; set; }
///
///
///
- public global::Opik.WorkspaceNameHolder? Type182 { get; set; }
+ public global::Opik.StartMultipartUploadRequestEntityType? Type182 { get; set; }
///
///
///
- public global::Opik.AudioUrl? Type183 { get; set; }
+ public global::Opik.AuthDetailsHolder? Type183 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluator? Type184 { get; set; }
+ public global::Opik.WorkspaceNameHolder? Type184 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type185 { get; set; }
+ public global::Opik.AudioUrl? Type185 { get; set; }
///
///
///
- public global::Opik.ProjectReference? Type186 { get; set; }
+ public global::Opik.AutomationRuleEvaluator? Type186 { get; set; }
///
///
///
- public float? Type187 { get; set; }
+ public global::System.Collections.Generic.IList? Type187 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorType? Type188 { get; set; }
+ public global::Opik.ProjectReference? Type188 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorAction? Type189 { get; set; }
+ public float? Type189 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorDiscriminator? Type190 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorType? Type190 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type191 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorAction? Type191 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type192 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorDiscriminator? Type192 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type193 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type193 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type194 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type194 { get; set; }
///
///
///
- public global::Opik.TraceFilter? Type195 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type195 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCode? Type196 { get; set; }
+ public global::System.Collections.Generic.IList? Type196 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type197 { get; set; }
+ public global::Opik.TraceFilter? Type197 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type198 { get; set; }
+ public global::Opik.LlmAsJudgeCode? Type198 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type199 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type199 { get; set; }
///
///
///
- public global::Opik.SpanFilter? Type200 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type200 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCode? Type201 { get; set; }
+ public global::System.Collections.Generic.IList? Type201 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type202 { get; set; }
+ public global::Opik.SpanFilter? Type202 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type203 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCode? Type203 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCode? Type204 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type204 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type205 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type205 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type206 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCode? Type206 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type207 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type207 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilter? Type208 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type208 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCode? Type209 { get; set; }
+ public global::System.Collections.Generic.IList? Type209 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type210 { get; set; }
+ public global::Opik.TraceThreadFilter? Type210 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type211 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCode? Type211 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type212 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type212 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type213 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type213 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type214 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type214 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCode? Type215 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type215 { get; set; }
///
///
///
- public global::Opik.ImageUrl? Type216 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type216 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParameters? Type217 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCode? Type217 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type218 { get; set; }
+ public global::Opik.ImageUrl? Type218 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessage? Type219 { get; set; }
+ public global::Opik.LlmAsJudgeModelParameters? Type219 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type220 { get; set; }
+ public global::System.Collections.Generic.IList? Type220 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchema? Type221 { get; set; }
+ public global::Opik.LlmAsJudgeMessage? Type221 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageRole? Type222 { get; set; }
+ public global::System.Collections.Generic.IList? Type222 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type223 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchema? Type223 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContent? Type224 { get; set; }
+ public global::Opik.LlmAsJudgeMessageRole? Type224 { get; set; }
///
///
///
- public global::Opik.VideoUrl? Type225 { get; set; }
+ public global::System.Collections.Generic.IList? Type225 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaType? Type226 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContent? Type226 { get; set; }
///
///
///
- public global::Opik.SpanFilterOperator? Type227 { get; set; }
+ public global::Opik.VideoUrl? Type227 { get; set; }
///
///
///
- public global::Opik.TraceFilterOperator? Type228 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaType? Type228 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterOperator? Type229 { get; set; }
+ public global::Opik.SpanFilterOperator? Type229 { get; set; }
///
///
///
- public global::Opik.AudioUrlWrite? Type230 { get; set; }
+ public global::Opik.TraceFilterOperator? Type230 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type231 { get; set; }
+ public global::Opik.TraceThreadFilterOperator? Type231 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWrite? Type232 { get; set; }
+ public global::Opik.AudioUrlWrite? Type232 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type233 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type233 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type234 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWrite? Type234 { get; set; }
///
///
///
- public global::Opik.TraceFilterWrite? Type235 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type235 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCodeWrite? Type236 { get; set; }
+ public global::System.Collections.Generic.IList? Type236 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type237 { get; set; }
+ public global::Opik.TraceFilterWrite? Type237 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type238 { get; set; }
+ public global::Opik.LlmAsJudgeCodeWrite? Type238 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type239 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type239 { get; set; }
///
///
///
- public global::Opik.SpanFilterWrite? Type240 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type240 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCodeWrite? Type241 { get; set; }
+ public global::System.Collections.Generic.IList? Type241 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type242 { get; set; }
+ public global::Opik.SpanFilterWrite? Type242 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type243 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCodeWrite? Type243 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type244 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type244 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type245 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type245 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type246 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type246 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type247 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type247 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterWrite? Type248 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type248 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type249 { get; set; }
+ public global::System.Collections.Generic.IList? Type249 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type250 { get; set; }
+ public global::Opik.TraceThreadFilterWrite? Type250 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type251 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type251 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type252 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type252 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type253 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type253 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type254 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type254 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCodeWrite? Type255 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type255 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteType? Type256 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type256 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteAction? Type257 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCodeWrite? Type257 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type258 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteType? Type258 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type259 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteAction? Type259 { get; set; }
///
///
///
- public global::Opik.ImageUrlWrite? Type260 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type260 { get; set; }
///
///
///
- public global::Opik.JsonNodeWrite? Type261 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type261 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParametersWrite? Type262 { get; set; }
+ public global::Opik.ImageUrlWrite? Type262 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type263 { get; set; }
+ public global::Opik.JsonNodeWrite? Type263 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageWrite? Type264 { get; set; }
+ public global::Opik.LlmAsJudgeModelParametersWrite? Type264 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type265 { get; set; }
+ public global::System.Collections.Generic.IList? Type265 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaWrite? Type266 { get; set; }
+ public global::Opik.LlmAsJudgeMessageWrite? Type266 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContentWrite? Type267 { get; set; }
+ public global::System.Collections.Generic.IList? Type267 { get; set; }
///
///
///
- public global::Opik.VideoUrlWrite? Type268 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaWrite? Type268 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageWriteRole? Type269 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContentWrite? Type269 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type270 { get; set; }
+ public global::Opik.VideoUrlWrite? Type270 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type271 { get; set; }
+ public global::Opik.LlmAsJudgeMessageWriteRole? Type271 { get; set; }
///
///
///
- public global::Opik.SpanFilterWriteOperator? Type272 { get; set; }
+ public global::System.Collections.Generic.IList? Type272 { get; set; }
///
///
///
- public global::Opik.TraceFilterWriteOperator? Type273 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type273 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterWriteOperator? Type274 { get; set; }
+ public global::Opik.SpanFilterWriteOperator? Type274 { get; set; }
///
///
///
- public global::Opik.AudioUrlPublic? Type275 { get; set; }
+ public global::Opik.TraceFilterWriteOperator? Type275 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type276 { get; set; }
+ public global::Opik.TraceThreadFilterWriteOperator? Type276 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublic? Type277 { get; set; }
+ public global::Opik.AudioUrlPublic? Type277 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type278 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type278 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type279 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublic? Type279 { get; set; }
///
///
///
- public global::Opik.TraceFilterPublic? Type280 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type280 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCodePublic? Type281 { get; set; }
+ public global::System.Collections.Generic.IList? Type281 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type282 { get; set; }
+ public global::Opik.TraceFilterPublic? Type282 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type283 { get; set; }
+ public global::Opik.LlmAsJudgeCodePublic? Type283 { get; set; }
///
///
///
- public global::Opik.ProjectReferencePublic? Type284 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type284 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type285 { get; set; }
+ public global::System.Collections.Generic.IList? Type285 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type286 { get; set; }
+ public global::Opik.ProjectReferencePublic? Type286 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type287 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type287 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type288 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type288 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPagePublic? Type289 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type289 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type290 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type290 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type291 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPagePublic? Type291 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type292 { get; set; }
+ public global::System.Collections.Generic.IList? Type292 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type293 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type293 { get; set; }
///
///
///
- public global::Opik.SpanFilterPublic? Type294 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type294 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCodePublic? Type295 { get; set; }
+ public global::System.Collections.Generic.IList? Type295 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type296 { get; set; }
+ public global::Opik.SpanFilterPublic? Type296 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type297 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCodePublic? Type297 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type298 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type298 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type299 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type299 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type300 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type300 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type301 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type301 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterPublic? Type302 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type302 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type303 { get; set; }
+ public global::System.Collections.Generic.IList? Type303 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type304 { get; set; }
+ public global::Opik.TraceThreadFilterPublic? Type304 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type305 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type305 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type306 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type306 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type307 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type307 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type308 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type308 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCodePublic? Type309 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type309 { get; set; }
///
///
///
- public global::Opik.ImageUrlPublic? Type310 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type310 { get; set; }
///
///
///
- public global::Opik.JsonNodePublic? Type311 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCodePublic? Type311 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParametersPublic? Type312 { get; set; }
+ public global::Opik.ImageUrlPublic? Type312 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type313 { get; set; }
+ public global::Opik.JsonNodePublic? Type313 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessagePublic? Type314 { get; set; }
+ public global::Opik.LlmAsJudgeModelParametersPublic? Type314 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type315 { get; set; }
+ public global::System.Collections.Generic.IList? Type315 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaPublic? Type316 { get; set; }
+ public global::Opik.LlmAsJudgeMessagePublic? Type316 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContentPublic? Type317 { get; set; }
+ public global::System.Collections.Generic.IList? Type317 { get; set; }
///
///
///
- public global::Opik.VideoUrlPublic? Type318 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaPublic? Type318 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessagePublicRole? Type319 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContentPublic? Type319 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type320 { get; set; }
+ public global::Opik.VideoUrlPublic? Type320 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type321 { get; set; }
+ public global::Opik.LlmAsJudgeMessagePublicRole? Type321 { get; set; }
///
///
///
- public global::Opik.SpanFilterPublicOperator? Type322 { get; set; }
+ public global::System.Collections.Generic.IList? Type322 { get; set; }
///
///
///
- public global::Opik.TraceFilterPublicOperator? Type323 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type323 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterPublicOperator? Type324 { get; set; }
+ public global::Opik.SpanFilterPublicOperator? Type324 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicType? Type325 { get; set; }
+ public global::Opik.TraceFilterPublicOperator? Type325 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicAction? Type326 { get; set; }
+ public global::Opik.TraceThreadFilterPublicOperator? Type326 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type327 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicType? Type327 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type328 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicAction? Type328 { get; set; }
///
///
///
- public global::Opik.LogItem? Type329 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type329 { get; set; }
///
///
///
- public global::Opik.LogItemLevel? Type330 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type330 { get; set; }
///
///
///
- public global::Opik.LogPage? Type331 { get; set; }
+ public global::Opik.LogItem? Type331 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type332 { get; set; }
+ public global::Opik.LogItemLevel? Type332 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdate? Type333 { get; set; }
+ public global::Opik.LogPage? Type333 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateType? Type334 { get; set; }
+ public global::System.Collections.Generic.IList? Type334 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateAction? Type335 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdate? Type335 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type336 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateType? Type336 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type337 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateAction? Type337 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type338 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type338 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type339 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type339 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type340 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type340 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type341 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type341 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type342 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type342 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type343 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type343 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type344 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type344 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type345 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type345 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type346 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type346 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type347 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type347 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type348 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type348 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type349 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type349 { get; set; }
///
///
///
- public global::Opik.AssistantMessage? Type350 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type350 { get; set; }
///
///
///
- public global::Opik.AssistantMessageRole? Type351 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type351 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type352 { get; set; }
+ public global::Opik.AssistantMessage? Type352 { get; set; }
///
///
///
- public global::Opik.ToolCall? Type353 { get; set; }
+ public global::Opik.AssistantMessageRole? Type353 { get; set; }
///
///
///
- public global::Opik.FunctionCall? Type354 { get; set; }
+ public global::System.Collections.Generic.IList? Type354 { get; set; }
///
///
///
- public global::Opik.ChatCompletionChoice? Type355 { get; set; }
+ public global::Opik.ToolCall? Type355 { get; set; }
///
///
///
- public global::Opik.Delta? Type356 { get; set; }
+ public global::Opik.FunctionCall? Type356 { get; set; }
///
///
///
- public global::Opik.LogProbs? Type357 { get; set; }
+ public global::Opik.ChatCompletionChoice? Type357 { get; set; }
///
///
///
- public global::Opik.ChatCompletionResponse? Type358 { get; set; }
+ public global::Opik.Delta? Type358 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type359 { get; set; }
+ public global::Opik.LogProbs? Type359 { get; set; }
///
///
///
- public global::Opik.Usage? Type360 { get; set; }
+ public global::Opik.ChatCompletionResponse? Type360 { get; set; }
///
///
///
- public global::Opik.CompletionTokensDetails? Type361 { get; set; }
+ public global::System.Collections.Generic.IList? Type361 { get; set; }
///
///
///
- public global::Opik.LogProb? Type362 { get; set; }
+ public global::Opik.Usage? Type362 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type363 { get; set; }
+ public global::Opik.CompletionTokensDetails? Type363 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type364 { get; set; }
+ public global::Opik.LogProb? Type364 { get; set; }
///
///
///
- public global::Opik.PromptTokensDetails? Type365 { get; set; }
+ public global::System.Collections.Generic.IList? Type365 { get; set; }
///
///
///
- public global::Opik.ToolCallType? Type366 { get; set; }
+ public global::System.Collections.Generic.IList? Type366 { get; set; }
///
///
///
- public global::Opik.ChatCompletionRequest? Type367 { get; set; }
+ public global::Opik.PromptTokensDetails? Type367 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type368 { get; set; }
+ public global::Opik.ToolCallType? Type368 { get; set; }
///
///
///
- public global::Opik.Message? Type369 { get; set; }
+ public global::Opik.ChatCompletionRequest? Type369 { get; set; }
///
///
///
- public global::Opik.StreamOptions? Type370 { get; set; }
+ public global::System.Collections.Generic.IList? Type370 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type371 { get; set; }
+ public global::Opik.Message? Type371 { get; set; }
///
///
///
- public global::Opik.ResponseFormat? Type372 { get; set; }
+ public global::Opik.StreamOptions? Type372 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type373 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type373 { get; set; }
///
///
///
- public global::Opik.Tool? Type374 { get; set; }
+ public global::Opik.ResponseFormat? Type374 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type375 { get; set; }
+ public global::System.Collections.Generic.IList? Type375 { get; set; }
///
///
///
- public global::Opik.Function? Type376 { get; set; }
+ public global::Opik.Tool? Type376 { get; set; }
///
///
///
- public global::Opik.JsonSchema? Type377 { get; set; }
+ public global::System.Collections.Generic.IList? Type377 { get; set; }
///
///
///
- public global::Opik.ResponseFormatType? Type378 { get; set; }
+ public global::Opik.Function? Type378 { get; set; }
///
///
///
- public global::Opik.ToolType? Type379 { get; set; }
+ public global::Opik.JsonSchema? Type379 { get; set; }
///
///
///
- public global::Opik.DashboardPublic? Type380 { get; set; }
+ public global::Opik.ResponseFormatType? Type380 { get; set; }
///
///
///
- public global::Opik.DashboardPublicType? Type381 { get; set; }
+ public global::Opik.ToolType? Type381 { get; set; }
///
///
///
- public global::Opik.DashboardPublicScope? Type382 { get; set; }
+ public global::Opik.DashboardPublic? Type382 { get; set; }
///
///
///
- public global::Opik.DashboardWrite? Type383 { get; set; }
+ public global::Opik.DashboardPublicType? Type383 { get; set; }
///
///
///
- public global::Opik.DashboardWriteType? Type384 { get; set; }
+ public global::Opik.DashboardPublicScope? Type384 { get; set; }
///
///
///
- public global::Opik.DashboardPagePublic? Type385 { get; set; }
+ public global::Opik.DashboardWrite? Type385 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type386 { get; set; }
+ public global::Opik.DashboardWriteType? Type386 { get; set; }
///
///
///
- public global::Opik.DashboardUpdatePublic? Type387 { get; set; }
+ public global::Opik.DashboardPagePublic? Type387 { get; set; }
///
///
///
- public global::Opik.DashboardUpdatePublicType? Type388 { get; set; }
+ public global::System.Collections.Generic.IList? Type388 { get; set; }
///
///
///
- public global::Opik.DatasetVersionPublic? Type389 { get; set; }
+ public global::Opik.DashboardUpdatePublic? Type389 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type390 { get; set; }
+ public global::Opik.DashboardUpdatePublicType? Type390 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemPublic? Type391 { get; set; }
+ public global::Opik.DatasetVersionPublic? Type391 { get; set; }
///
///
///
- public global::Opik.ExecutionPolicyPublic? Type392 { get; set; }
+ public global::System.Collections.Generic.IList? Type392 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemPublicType? Type393 { get; set; }
+ public global::Opik.EvaluatorItemPublic? Type393 { get; set; }
///
///
///
- public global::Opik.DatasetItemChangesPublic? Type394 { get; set; }
+ public global::Opik.ExecutionPolicyPublic? Type394 { get; set; }
///
///
///
- public global::Opik.DatasetItemBatchUpdate? Type395 { get; set; }
+ public global::Opik.EvaluatorItemPublicType? Type395 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type396 { get; set; }
+ public global::Opik.DatasetItemChangesPublic? Type396 { get; set; }
///
///
///
- public global::Opik.DatasetItemFilter? Type397 { get; set; }
+ public global::Opik.DatasetItemBatchUpdate? Type397 { get; set; }
///
///
///
- public global::Opik.DatasetItemUpdate? Type398 { get; set; }
+ public global::System.Collections.Generic.IList? Type398 { get; set; }
///
///
///
- public global::Opik.DatasetItemFilterOperator? Type399 { get; set; }
+ public global::Opik.DatasetItemFilter? Type399 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type400 { get; set; }
+ public global::Opik.DatasetItemUpdate? Type400 { get; set; }
///
///
///
- public global::Opik.EvaluatorItem? Type401 { get; set; }
+ public global::Opik.DatasetItemFilterOperator? Type401 { get; set; }
///
///
///
- public global::Opik.ExecutionPolicy? Type402 { get; set; }
+ public global::System.Collections.Generic.IList? Type402 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemType? Type403 { get; set; }
+ public global::Opik.EvaluatorItem? Type403 { get; set; }
///
///
///
- public global::Opik.Dataset? Type404 { get; set; }
+ public global::Opik.ExecutionPolicy? Type404 { get; set; }
///
///
///
- public global::Opik.DatasetType? Type405 { get; set; }
+ public global::Opik.EvaluatorItemType? Type405 { get; set; }
///
///
///
- public global::Opik.DatasetVisibility? Type406 { get; set; }
+ public global::Opik.Dataset? Type406 { get; set; }
///
///
///
- public global::Opik.DatasetStatus? Type407 { get; set; }
+ public global::Opik.DatasetType? Type407 { get; set; }
///
///
///
- public global::Opik.DatasetVersionSummary? Type408 { get; set; }
+ public global::Opik.DatasetVisibility? Type408 { get; set; }
///
///
///
- public global::Opik.DatasetWrite? Type409 { get; set; }
+ public global::Opik.DatasetStatus? Type409 { get; set; }
///
///
///
- public global::Opik.DatasetWriteType? Type410 { get; set; }
+ public global::Opik.DatasetVersionSummary? Type410 { get; set; }
///
///
///
- public global::Opik.DatasetWriteVisibility? Type411 { get; set; }
+ public global::Opik.DatasetWrite? Type411 { get; set; }
///
///
///
- public global::Opik.AssertionResult? Type412 { get; set; }
+ public global::Opik.DatasetWriteType? Type412 { get; set; }
///
///
///
- public global::Opik.Comment? Type413 { get; set; }
+ public global::Opik.DatasetWriteVisibility? Type413 { get; set; }
///
///
///
- public global::Opik.DatasetItem? Type414 { get; set; }
+ public global::Opik.AssertionResult? Type414 { get; set; }
///
///
///
- public global::Opik.DatasetItemSource? Type415 { get; set; }
+ public global::Opik.Comment? Type415 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type416 { get; set; }
+ public global::Opik.DatasetItem? Type416 { get; set; }
///
///
///
- public global::Opik.ExperimentItem? Type417 { get; set; }
+ public global::Opik.DatasetItemSource? Type417 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type418 { get; set; }
+ public global::System.Collections.Generic.IList? Type418 { get; set; }
///
///
///
- public global::Opik.ExperimentRunSummary? Type419 { get; set; }
+ public global::Opik.ExperimentItem? Type419 { get; set; }
///
///
///
- public global::Opik.DatasetItemBatch? Type420 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type420 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type421 { get; set; }
+ public global::Opik.ExperimentRunSummary? Type421 { get; set; }
///
///
///
- public global::Opik.JsonListString? Type422 { get; set; }
+ public global::Opik.DatasetItemBatch? Type422 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type423 { get; set; }
+ public global::System.Collections.Generic.IList? Type423 { get; set; }
///
///
///
- public global::Opik.FeedbackScore? Type424 { get; set; }
+ public global::Opik.JsonListString? Type424 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type425 { get; set; }
+ public global::System.Collections.Generic.IList? Type425 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type426 { get; set; }
+ public global::Opik.FeedbackScore? Type426 { get; set; }
///
///
///
- public global::Opik.ExperimentItemTraceVisibilityMode? Type427 { get; set; }
+ public global::System.Collections.Generic.IList? Type427 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type428 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type428 { get; set; }
///
///
///
- public global::Opik.ExperimentItemStatus? Type429 { get; set; }
+ public global::Opik.ExperimentItemTraceVisibilityMode? Type429 { get; set; }
///
///
///
- public global::Opik.ExperimentRunSummaryStatus? Type430 { get; set; }
+ public global::System.Collections.Generic.IList? Type430 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreSource? Type431 { get; set; }
+ public global::Opik.ExperimentItemStatus? Type431 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type432 { get; set; }
+ public global::Opik.ExperimentRunSummaryStatus? Type432 { get; set; }
///
///
///
- public global::Opik.ValueEntry? Type433 { get; set; }
+ public global::Opik.FeedbackScoreSource? Type433 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList