diff --git a/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendRecommendations.g.cs b/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendRecommendations.g.cs
deleted file mode 100644
index 19770857..00000000
--- a/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendRecommendations.g.cs
+++ /dev/null
@@ -1,530 +0,0 @@
-
-#nullable enable
-
-namespace Opik
-{
- public partial class AiSpendClient
- {
-
- private static readonly global::Opik.AutoSDKServer[] s_GetSpendRecommendationsServers = 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_GetSpendRecommendationsSecurityRequirement0 =
- 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_GetSpendRecommendationsSecurityRequirements =
- new global::Opik.EndPointSecurityRequirement[]
- { s_GetSpendRecommendationsSecurityRequirement0,
- };
- partial void PrepareGetSpendRecommendationsArguments(
- global::System.Net.Http.HttpClient httpClient,
- global::Opik.SpendMetricRequest request);
- partial void PrepareGetSpendRecommendationsRequest(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpRequestMessage httpRequestMessage,
- global::Opik.SpendMetricRequest request);
- partial void ProcessGetSpendRecommendationsResponse(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpResponseMessage httpResponseMessage);
-
- partial void ProcessGetSpendRecommendationsResponseContent(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpResponseMessage httpResponseMessage,
- ref string content);
-
- ///
- /// Get spend recommendations
- /// Get coding-agent cost-saving recommendations
- ///
- ///
- /// 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 GetSpendRecommendationsAsync(
-
- global::Opik.SpendMetricRequest request,
- global::Opik.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default)
- {
- var __response = await GetSpendRecommendationsAsResponseAsync(
-
- request: request,
- requestOptions: requestOptions,
- cancellationToken: cancellationToken
- ).ConfigureAwait(false);
-
- return __response.Body;
- }
- ///
- /// Get spend recommendations
- /// Get coding-agent cost-saving recommendations
- ///
- ///
- /// 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> GetSpendRecommendationsAsResponseAsync(
-
- 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);
- PrepareGetSpendRecommendationsArguments(
- httpClient: HttpClient,
- request: request);
-
-
- var __authorizations = global::Opik.EndPointSecurityResolver.ResolveAuthorizations(
- availableAuthorizations: Authorizations,
- securityRequirements: s_GetSpendRecommendationsSecurityRequirements,
- operationName: "GetSpendRecommendationsAsync");
-
- 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/recommendations",
- baseUri: ResolveBaseUri(
- servers: s_GetSpendRecommendationsServers,
- 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);
- PrepareGetSpendRecommendationsRequest(
- 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: "GetSpendRecommendations",
- methodName: "GetSpendRecommendationsAsync",
- pathTemplate: "\"/v1/private/ai-spend/recommendations\"",
- 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: "GetSpendRecommendations",
- methodName: "GetSpendRecommendationsAsync",
- pathTemplate: "\"/v1/private/ai-spend/recommendations\"",
- 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: "GetSpendRecommendations",
- methodName: "GetSpendRecommendationsAsync",
- pathTemplate: "\"/v1/private/ai-spend/recommendations\"",
- 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);
- ProcessGetSpendRecommendationsResponse(
- httpClient: HttpClient,
- httpResponseMessage: __response);
- if (__response.IsSuccessStatusCode)
- {
- await global::Opik.AutoSDKRequestOptionsSupport.OnAfterSuccessAsync(
- clientOptions: Options,
- context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext(
- operationId: "GetSpendRecommendations",
- methodName: "GetSpendRecommendationsAsync",
- pathTemplate: "\"/v1/private/ai-spend/recommendations\"",
- 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: "GetSpendRecommendations",
- methodName: "GetSpendRecommendationsAsync",
- pathTemplate: "\"/v1/private/ai-spend/recommendations\"",
- 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);
- ProcessGetSpendRecommendationsResponseContent(
- httpClient: HttpClient,
- httpResponseMessage: __response,
- content: ref __content);
-
- try
- {
- __response.EnsureSuccessStatusCode();
-
- var __value = global::Opik.SpendRecommendationsResponse.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.SpendRecommendationsResponse.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 spend recommendations
- /// Get coding-agent cost-saving recommendations
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- /// 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 GetSpendRecommendationsAsync(
- 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 GetSpendRecommendationsAsync(
- request: __request,
- requestOptions: requestOptions,
- cancellationToken: cancellationToken).ConfigureAwait(false);
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendRecommendations.g.cs b/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendRecommendations.g.cs
deleted file mode 100644
index b78f6ca9..00000000
--- a/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendRecommendations.g.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-#nullable enable
-
-namespace Opik
-{
- public partial interface IAiSpendClient
- {
- ///
- /// Get spend recommendations
- /// Get coding-agent cost-saving recommendations
- ///
- ///
- /// 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 GetSpendRecommendationsAsync(
-
- global::Opik.SpendMetricRequest request,
- global::Opik.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Get spend recommendations
- /// Get coding-agent cost-saving recommendations
- ///
- ///
- /// 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> GetSpendRecommendationsAsResponseAsync(
-
- global::Opik.SpendMetricRequest request,
- global::Opik.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Get spend recommendations
- /// Get coding-agent cost-saving recommendations
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- /// 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 GetSpendRecommendationsAsync(
- 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.JsonConverters.ItemImpact.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.ItemImpact.g.cs
deleted file mode 100644
index b5251054..00000000
--- a/src/libs/Opik/Generated/Opik.JsonConverters.ItemImpact.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace Opik.JsonConverters
-{
- ///
- public sealed class ItemImpactJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::Opik.ItemImpact Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- switch (reader.TokenType)
- {
- case global::System.Text.Json.JsonTokenType.String:
- {
- var stringValue = reader.GetString();
- if (stringValue != null)
- {
- return global::Opik.ItemImpactExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::Opik.ItemImpact)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::Opik.ItemImpact);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::Opik.ItemImpact value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::Opik.ItemImpactExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.ItemImpactNullable.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.ItemImpactNullable.g.cs
deleted file mode 100644
index b07c69e3..00000000
--- a/src/libs/Opik/Generated/Opik.JsonConverters.ItemImpactNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace Opik.JsonConverters
-{
- ///
- public sealed class ItemImpactNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::Opik.ItemImpact? Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- switch (reader.TokenType)
- {
- case global::System.Text.Json.JsonTokenType.String:
- {
- var stringValue = reader.GetString();
- if (stringValue != null)
- {
- return global::Opik.ItemImpactExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::Opik.ItemImpact)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::Opik.ItemImpact?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::Opik.ItemImpact? value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- if (value == null)
- {
- writer.WriteNullValue();
- }
- else
- {
- writer.WriteStringValue(global::Opik.ItemImpactExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
index 8528bc7b..35aad095 100644
--- a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
+++ b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
@@ -69,10 +69,6 @@ namespace Opik
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter),
- typeof(global::Opik.JsonConverters.ItemImpactJsonConverter),
-
- typeof(global::Opik.JsonConverters.ItemImpactNullableJsonConverter),
-
typeof(global::Opik.JsonConverters.AlertAlertTypeJsonConverter),
typeof(global::Opik.JsonConverters.AlertAlertTypeNullableJsonConverter),
@@ -1052,10 +1048,8 @@ namespace Opik
[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.ItemImpact), TypeInfoPropertyName = "ItemImpact2")]
[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.SpendRecommendationsResponse))]
[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))]
@@ -1463,6 +1457,8 @@ namespace Opik
[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))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1530,10 +1526,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter),
- typeof(global::Opik.JsonConverters.ItemImpactJsonConverter),
-
- typeof(global::Opik.JsonConverters.ItemImpactNullableJsonConverter),
-
typeof(global::Opik.JsonConverters.AlertAlertTypeJsonConverter),
typeof(global::Opik.JsonConverters.AlertAlertTypeNullableJsonConverter),
@@ -2424,8 +2416,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter),
})]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicType), TypeInfoPropertyName = "ProjectStatItemObjectPublicType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminator))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminatorType), TypeInfoPropertyName = "ProjectStatItemObjectPublicDiscriminatorType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatsPublic))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
@@ -2924,6 +2914,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[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")]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2991,10 +2983,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter),
- typeof(global::Opik.JsonConverters.ItemImpactJsonConverter),
-
- typeof(global::Opik.JsonConverters.ItemImpactNullableJsonConverter),
-
typeof(global::Opik.JsonConverters.AlertAlertTypeJsonConverter),
typeof(global::Opik.JsonConverters.AlertAlertTypeNullableJsonConverter),
@@ -3885,8 +3873,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter),
})]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesStatus), TypeInfoPropertyName = "FindAgentInsightsIssuesStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesSeverity), TypeInfoPropertyName = "FindAgentInsightsIssuesSeverity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.GetWebhookExamplesAlertType), TypeInfoPropertyName = "GetWebhookExamplesAlertType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AttachmentListEntityType), TypeInfoPropertyName = "AttachmentListEntityType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.DownloadAttachmentEntityType), TypeInfoPropertyName = "DownloadAttachmentEntityType2")]
@@ -4157,8 +4143,6 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Opik.JsonConverters.ReportedIssueSeverityNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter());
- options.Converters.Add(new global::Opik.JsonConverters.ItemImpactJsonConverter());
- options.Converters.Add(new global::Opik.JsonConverters.ItemImpactNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AlertAlertTypeJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AlertAlertTypeNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AlertTriggerEventTypeJsonConverter());
diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
index d2a592c8..cb166d95 100644
--- a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
@@ -380,3763 +380,3755 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Opik.ItemImpact? Type88 { get; set; }
+ public global::Opik.SpendBreakdownResponse? Type88 { get; set; }
///
///
///
- public global::Opik.SpendBreakdownResponse? Type89 { get; set; }
+ public global::System.Collections.Generic.IList? Type89 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type90 { get; set; }
+ public global::Opik.Result? Type90 { get; set; }
///
///
///
- public global::Opik.SpendRecommendationsResponse? Type91 { get; set; }
+ public double? Type91 { get; set; }
///
///
///
- public global::Opik.Result? Type92 { get; set; }
+ public global::Opik.SpendSummaryResponse? Type92 { get; set; }
///
///
///
- public double? Type93 { get; set; }
+ public global::System.Collections.Generic.IList? Type93 { get; set; }
///
///
///
- public global::Opik.SpendSummaryResponse? Type94 { get; set; }
+ public global::Opik.SpendUserPage? Type94 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type95 { get; set; }
+ public global::System.Collections.Generic.IList? Type95 { get; set; }
///
///
///
- public global::Opik.SpendUserPage? Type96 { get; set; }
+ public global::Opik.SpendUserRow? Type96 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type97 { get; set; }
+ public global::Opik.Alert? Type97 { get; set; }
///
///
///
- public global::Opik.SpendUserRow? Type98 { get; set; }
+ public global::Opik.AlertAlertType? Type98 { get; set; }
///
///
///
- public global::Opik.Alert? Type99 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type99 { get; set; }
///
///
///
- public global::Opik.AlertAlertType? Type100 { get; set; }
+ public global::Opik.Webhook? Type100 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type101 { get; set; }
+ public global::System.Collections.Generic.IList? Type101 { get; set; }
///
///
///
- public global::Opik.Webhook? Type102 { get; set; }
+ public global::Opik.AlertTrigger? Type102 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type103 { get; set; }
+ public global::Opik.AlertTriggerEventType? Type103 { get; set; }
///
///
///
- public global::Opik.AlertTrigger? Type104 { get; set; }
+ public global::System.Collections.Generic.IList? Type104 { get; set; }
///
///
///
- public global::Opik.AlertTriggerEventType? Type105 { get; set; }
+ public global::Opik.AlertTriggerConfig? Type105 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type106 { get; set; }
+ public global::Opik.AlertTriggerConfigType? Type106 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfig? Type107 { get; set; }
+ public global::Opik.AlertTriggerConfigWrite? Type107 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigType? Type108 { get; set; }
+ public global::Opik.AlertTriggerConfigWriteType? Type108 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigWrite? Type109 { get; set; }
+ public global::Opik.AlertTriggerWrite? Type109 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigWriteType? Type110 { get; set; }
+ public global::Opik.AlertTriggerWriteEventType? Type110 { get; set; }
///
///
///
- public global::Opik.AlertTriggerWrite? Type111 { get; set; }
+ public global::System.Collections.Generic.IList? Type111 { get; set; }
///
///
///
- public global::Opik.AlertTriggerWriteEventType? Type112 { get; set; }
+ public global::Opik.AlertWrite? Type112 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type113 { get; set; }
+ public global::Opik.AlertWriteAlertType? Type113 { get; set; }
///
///
///
- public global::Opik.AlertWrite? Type114 { get; set; }
+ public global::Opik.WebhookWrite? Type114 { get; set; }
///
///
///
- public global::Opik.AlertWriteAlertType? Type115 { get; set; }
+ public global::System.Collections.Generic.IList? Type115 { get; set; }
///
///
///
- public global::Opik.WebhookWrite? Type116 { get; set; }
+ public global::Opik.BatchDelete? Type116 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type117 { get; set; }
+ public global::System.Collections.Generic.IList? Type117 { get; set; }
///
///
///
- public global::Opik.BatchDelete? Type118 { get; set; }
+ public global::Opik.AlertPagePublic? Type118 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type119 { get; set; }
+ public global::System.Collections.Generic.IList? Type119 { get; set; }
///
///
///
- public global::Opik.AlertPagePublic? Type120 { get; set; }
+ public global::Opik.AlertPublic? Type120 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type121 { get; set; }
+ public global::Opik.AlertTriggerConfigPublic? Type121 { get; set; }
///
///
///
- public global::Opik.AlertPublic? Type122 { get; set; }
+ public global::Opik.AlertTriggerConfigPublicType? Type122 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigPublic? Type123 { get; set; }
+ public global::Opik.AlertTriggerPublic? Type123 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigPublicType? Type124 { get; set; }
+ public global::Opik.AlertTriggerPublicEventType? Type124 { get; set; }
///
///
///
- public global::Opik.AlertTriggerPublic? Type125 { get; set; }
+ public global::System.Collections.Generic.IList? Type125 { get; set; }
///
///
///
- public global::Opik.AlertTriggerPublicEventType? Type126 { get; set; }
+ public global::Opik.AlertPublicAlertType? Type126 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type127 { get; set; }
+ public global::Opik.WebhookPublic? Type127 { get; set; }
///
///
///
- public global::Opik.AlertPublicAlertType? Type128 { get; set; }
+ public global::System.Collections.Generic.IList? Type128 { get; set; }
///
///
///
- public global::Opik.WebhookPublic? Type129 { get; set; }
+ public global::Opik.WebhookExamples? Type129 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type130 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type130 { get; set; }
///
///
///
- public global::Opik.WebhookExamples? Type131 { get; set; }
+ public object? Type131 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type132 { get; set; }
+ public global::Opik.WebhookTestResult? Type132 { get; set; }
///
///
///
- public object? Type133 { get; set; }
+ public global::Opik.WebhookTestResultStatus? Type133 { get; set; }
///
///
///
- public global::Opik.WebhookTestResult? Type134 { get; set; }
+ public global::Opik.AnnotationQueueItemIds? Type134 { get; set; }
///
///
///
- public global::Opik.WebhookTestResultStatus? Type135 { get; set; }
+ public global::Opik.AnnotationQueue? Type135 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueItemIds? Type136 { get; set; }
+ public global::Opik.AnnotationQueueScope? Type136 { get; set; }
///
///
///
- public global::Opik.AnnotationQueue? Type137 { get; set; }
+ public global::System.Collections.Generic.IList? Type137 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueScope? Type138 { get; set; }
+ public global::Opik.AnnotationQueueReviewer? Type138 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type139 { get; set; }
+ public global::System.Collections.Generic.IList? Type139 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueReviewer? Type140 { get; set; }
+ public global::Opik.FeedbackScoreAverage? Type140 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type141 { get; set; }
+ public global::Opik.AnnotationQueueWrite? Type141 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreAverage? Type142 { get; set; }
+ public global::Opik.AnnotationQueueWriteScope? Type142 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueWrite? Type143 { get; set; }
+ public global::Opik.AnnotationQueueBatch? Type143 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueWriteScope? Type144 { get; set; }
+ public global::System.Collections.Generic.IList? Type144 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueBatch? Type145 { get; set; }
+ public global::Opik.AnnotationQueueBatchWrite? Type145 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type146 { get; set; }
+ public global::System.Collections.Generic.IList? Type146 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueBatchWrite? Type147 { get; set; }
+ public global::Opik.AnnotationQueuePagePublic? Type147 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type148 { get; set; }
+ public global::System.Collections.Generic.IList? Type148 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePagePublic? Type149 { get; set; }
+ public global::Opik.AnnotationQueuePublic? Type149 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type150 { get; set; }
+ public global::Opik.AnnotationQueueReviewerPublic? Type150 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePublic? Type151 { get; set; }
+ public global::Opik.AnnotationQueuePublicScope? Type151 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueReviewerPublic? Type152 { get; set; }
+ public global::System.Collections.Generic.IList? Type152 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePublicScope? Type153 { get; set; }
+ public global::System.Collections.Generic.IList? Type153 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type154 { get; set; }
+ public global::Opik.FeedbackScoreAveragePublic? Type154 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type155 { get; set; }
+ public global::Opik.ItemLockInfo? Type155 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreAveragePublic? Type156 { get; set; }
+ public global::Opik.LocksResponse? Type156 { get; set; }
///
///
///
- public global::Opik.ItemLockInfo? Type157 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type157 { get; set; }
///
///
///
- public global::Opik.LocksResponse? Type158 { get; set; }
+ public global::Opik.LockResponse? Type158 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type159 { get; set; }
+ public global::Opik.AnnotationQueueUpdate? Type159 { get; set; }
///
///
///
- public global::Opik.LockResponse? Type160 { get; set; }
+ public global::Opik.AssertionResultBatch? Type160 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueUpdate? Type161 { get; set; }
+ public global::Opik.AssertionResultBatchEntityType? Type161 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatch? Type162 { get; set; }
+ public global::System.Collections.Generic.IList? Type162 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchEntityType? Type163 { get; set; }
+ public global::Opik.AssertionResultBatchItem? Type163 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type164 { get; set; }
+ public global::Opik.AssertionResultBatchItemStatus? Type164 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItem? Type165 { get; set; }
+ public global::Opik.AssertionResultBatchItemSource? Type165 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItemStatus? Type166 { get; set; }
+ public global::Opik.Attachment? Type166 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItemSource? Type167 { get; set; }
+ public global::Opik.AttachmentPage? Type167 { get; set; }
///
///
///
- public global::Opik.Attachment? Type168 { get; set; }
+ public global::System.Collections.Generic.IList? Type168 { get; set; }
///
///
///
- public global::Opik.AttachmentPage? Type169 { get; set; }
+ public global::Opik.CompleteMultipartUploadRequest? Type169 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type170 { get; set; }
+ public global::Opik.CompleteMultipartUploadRequestEntityType? Type170 { get; set; }
///
///
///
- public global::Opik.CompleteMultipartUploadRequest? Type171 { get; set; }
+ public global::System.Collections.Generic.IList? Type171 { get; set; }
///
///
///
- public global::Opik.CompleteMultipartUploadRequestEntityType? Type172 { get; set; }
+ public global::Opik.MultipartUploadPart? Type172 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type173 { get; set; }
+ public global::Opik.DeleteAttachmentsRequest? Type173 { get; set; }
///
///
///
- public global::Opik.MultipartUploadPart? Type174 { get; set; }
+ public global::Opik.DeleteAttachmentsRequestEntityType? Type174 { get; set; }
///
///
///
- public global::Opik.DeleteAttachmentsRequest? Type175 { get; set; }
+ public global::Opik.StartMultipartUploadResponse? Type175 { get; set; }
///
///
///
- public global::Opik.DeleteAttachmentsRequestEntityType? Type176 { get; set; }
+ public global::Opik.StartMultipartUploadRequest? Type176 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadResponse? Type177 { get; set; }
+ public global::Opik.StartMultipartUploadRequestEntityType? Type177 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadRequest? Type178 { get; set; }
+ public global::Opik.AuthDetailsHolder? Type178 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadRequestEntityType? Type179 { get; set; }
+ public global::Opik.WorkspaceNameHolder? Type179 { get; set; }
///
///
///
- public global::Opik.AuthDetailsHolder? Type180 { get; set; }
+ public global::Opik.AudioUrl? Type180 { get; set; }
///
///
///
- public global::Opik.WorkspaceNameHolder? Type181 { get; set; }
+ public global::Opik.AutomationRuleEvaluator? Type181 { get; set; }
///
///
///
- public global::Opik.AudioUrl? Type182 { get; set; }
+ public global::System.Collections.Generic.IList? Type182 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluator? Type183 { get; set; }
+ public global::Opik.ProjectReference? Type183 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type184 { get; set; }
+ public float? Type184 { get; set; }
///
///
///
- public global::Opik.ProjectReference? Type185 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorType? Type185 { get; set; }
///
///
///
- public float? Type186 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorAction? Type186 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorType? Type187 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorDiscriminator? Type187 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorAction? Type188 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type188 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorDiscriminator? Type189 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type189 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type190 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type190 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type191 { get; set; }
+ public global::System.Collections.Generic.IList? Type191 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type192 { get; set; }
+ public global::Opik.TraceFilter? Type192 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type193 { get; set; }
+ public global::Opik.LlmAsJudgeCode? Type193 { get; set; }
///
///
///
- public global::Opik.TraceFilter? Type194 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type194 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCode? Type195 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type195 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type196 { get; set; }
+ public global::System.Collections.Generic.IList? Type196 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type197 { get; set; }
+ public global::Opik.SpanFilter? Type197 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type198 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCode? Type198 { get; set; }
///
///
///
- public global::Opik.SpanFilter? Type199 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type199 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCode? Type200 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type200 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type201 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCode? Type201 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type202 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type202 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCode? Type203 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type203 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type204 { get; set; }
+ public global::System.Collections.Generic.IList? Type204 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type205 { get; set; }
+ public global::Opik.TraceThreadFilter? Type205 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type206 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCode? Type206 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilter? Type207 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type207 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCode? Type208 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type208 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type209 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type209 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type210 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type210 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type211 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type211 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type212 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCode? Type212 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type213 { get; set; }
+ public global::Opik.ImageUrl? Type213 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCode? Type214 { get; set; }
+ public global::Opik.LlmAsJudgeModelParameters? Type214 { get; set; }
///
///
///
- public global::Opik.ImageUrl? Type215 { get; set; }
+ public global::System.Collections.Generic.IList? Type215 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParameters? Type216 { get; set; }
+ public global::Opik.LlmAsJudgeMessage? Type216 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type217 { get; set; }
+ public global::System.Collections.Generic.IList? Type217 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessage? Type218 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchema? Type218 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type219 { get; set; }
+ public global::Opik.LlmAsJudgeMessageRole? Type219 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchema? Type220 { get; set; }
+ public global::System.Collections.Generic.IList? Type220 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageRole? Type221 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContent? Type221 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type222 { get; set; }
+ public global::Opik.VideoUrl? Type222 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContent? Type223 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaType? Type223 { get; set; }
///
///
///
- public global::Opik.VideoUrl? Type224 { get; set; }
+ public global::Opik.SpanFilterOperator? Type224 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaType? Type225 { get; set; }
+ public global::Opik.TraceFilterOperator? Type225 { get; set; }
///
///
///
- public global::Opik.SpanFilterOperator? Type226 { get; set; }
+ public global::Opik.TraceThreadFilterOperator? Type226 { get; set; }
///
///
///
- public global::Opik.TraceFilterOperator? Type227 { get; set; }
+ public global::Opik.AudioUrlWrite? Type227 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterOperator? Type228 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type228 { get; set; }
///
///
///
- public global::Opik.AudioUrlWrite? Type229 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWrite? Type229 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type230 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type230 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWrite? Type231 { get; set; }
+ public global::System.Collections.Generic.IList? Type231 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type232 { get; set; }
+ public global::Opik.TraceFilterWrite? Type232 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type233 { get; set; }
+ public global::Opik.LlmAsJudgeCodeWrite? Type233 { get; set; }
///
///
///
- public global::Opik.TraceFilterWrite? Type234 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type234 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCodeWrite? Type235 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type235 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type236 { get; set; }
+ public global::System.Collections.Generic.IList? Type236 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type237 { get; set; }
+ public global::Opik.SpanFilterWrite? Type237 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type238 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCodeWrite? Type238 { get; set; }
///
///
///
- public global::Opik.SpanFilterWrite? Type239 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type239 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCodeWrite? Type240 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type240 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type241 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type241 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type242 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type242 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type243 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type243 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type244 { get; set; }
+ public global::System.Collections.Generic.IList? Type244 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type245 { get; set; }
+ public global::Opik.TraceThreadFilterWrite? Type245 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type246 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type246 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterWrite? Type247 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type247 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type248 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type248 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type249 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type249 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type250 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type250 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type251 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type251 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type252 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCodeWrite? Type252 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type253 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteType? Type253 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCodeWrite? Type254 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteAction? Type254 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteType? Type255 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type255 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteAction? Type256 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type256 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type257 { get; set; }
+ public global::Opik.ImageUrlWrite? Type257 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type258 { get; set; }
+ public global::Opik.JsonNodeWrite? Type258 { get; set; }
///
///
///
- public global::Opik.ImageUrlWrite? Type259 { get; set; }
+ public global::Opik.LlmAsJudgeModelParametersWrite? Type259 { get; set; }
///
///
///
- public global::Opik.JsonNodeWrite? Type260 { get; set; }
+ public global::System.Collections.Generic.IList? Type260 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParametersWrite? Type261 { get; set; }
+ public global::Opik.LlmAsJudgeMessageWrite? Type261 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type262 { get; set; }
+ public global::System.Collections.Generic.IList? Type262 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageWrite? Type263 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaWrite? Type263 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type264 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContentWrite? Type264 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaWrite? Type265 { get; set; }
+ public global::Opik.VideoUrlWrite? Type265 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContentWrite? Type266 { get; set; }
+ public global::Opik.LlmAsJudgeMessageWriteRole? Type266 { get; set; }
///
///
///
- public global::Opik.VideoUrlWrite? Type267 { get; set; }
+ public global::System.Collections.Generic.IList? Type267 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageWriteRole? Type268 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type268 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type269 { get; set; }
+ public global::Opik.SpanFilterWriteOperator? Type269 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type270 { get; set; }
+ public global::Opik.TraceFilterWriteOperator? Type270 { get; set; }
///
///
///
- public global::Opik.SpanFilterWriteOperator? Type271 { get; set; }
+ public global::Opik.TraceThreadFilterWriteOperator? Type271 { get; set; }
///
///
///
- public global::Opik.TraceFilterWriteOperator? Type272 { get; set; }
+ public global::Opik.AudioUrlPublic? Type272 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterWriteOperator? Type273 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type273 { get; set; }
///
///
///
- public global::Opik.AudioUrlPublic? Type274 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublic? Type274 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type275 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type275 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublic? Type276 { get; set; }
+ public global::System.Collections.Generic.IList? Type276 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type277 { get; set; }
+ public global::Opik.TraceFilterPublic? Type277 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type278 { get; set; }
+ public global::Opik.LlmAsJudgeCodePublic? Type278 { get; set; }
///
///
///
- public global::Opik.TraceFilterPublic? Type279 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type279 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCodePublic? Type280 { get; set; }
+ public global::System.Collections.Generic.IList? Type280 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type281 { get; set; }
+ public global::Opik.ProjectReferencePublic? Type281 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type282 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type282 { get; set; }
///
///
///
- public global::Opik.ProjectReferencePublic? Type283 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type283 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type284 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type284 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type285 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type285 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type286 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPagePublic? Type286 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type287 { get; set; }
+ public global::System.Collections.Generic.IList? Type287 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPagePublic? Type288 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type288 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type289 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type289 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type290 { get; set; }
+ public global::System.Collections.Generic.IList? Type290 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type291 { get; set; }
+ public global::Opik.SpanFilterPublic? Type291 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type292 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCodePublic? Type292 { get; set; }
///
///
///
- public global::Opik.SpanFilterPublic? Type293 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type293 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCodePublic? Type294 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type294 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type295 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type295 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type296 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type296 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type297 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type297 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type298 { get; set; }
+ public global::System.Collections.Generic.IList? Type298 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type299 { get; set; }
+ public global::Opik.TraceThreadFilterPublic? Type299 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type300 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type300 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterPublic? Type301 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type301 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type302 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type302 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type303 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type303 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type304 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type304 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type305 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type305 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type306 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCodePublic? Type306 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type307 { get; set; }
+ public global::Opik.ImageUrlPublic? Type307 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCodePublic? Type308 { get; set; }
+ public global::Opik.JsonNodePublic? Type308 { get; set; }
///
///
///
- public global::Opik.ImageUrlPublic? Type309 { get; set; }
+ public global::Opik.LlmAsJudgeModelParametersPublic? Type309 { get; set; }
///
///
///
- public global::Opik.JsonNodePublic? Type310 { get; set; }
+ public global::System.Collections.Generic.IList? Type310 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParametersPublic? Type311 { get; set; }
+ public global::Opik.LlmAsJudgeMessagePublic? Type311 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type312 { get; set; }
+ public global::System.Collections.Generic.IList? Type312 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessagePublic? Type313 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaPublic? Type313 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type314 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContentPublic? Type314 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaPublic? Type315 { get; set; }
+ public global::Opik.VideoUrlPublic? Type315 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContentPublic? Type316 { get; set; }
+ public global::Opik.LlmAsJudgeMessagePublicRole? Type316 { get; set; }
///
///
///
- public global::Opik.VideoUrlPublic? Type317 { get; set; }
+ public global::System.Collections.Generic.IList? Type317 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessagePublicRole? Type318 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type318 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type319 { get; set; }
+ public global::Opik.SpanFilterPublicOperator? Type319 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type320 { get; set; }
+ public global::Opik.TraceFilterPublicOperator? Type320 { get; set; }
///
///
///
- public global::Opik.SpanFilterPublicOperator? Type321 { get; set; }
+ public global::Opik.TraceThreadFilterPublicOperator? Type321 { get; set; }
///
///
///
- public global::Opik.TraceFilterPublicOperator? Type322 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicType? Type322 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterPublicOperator? Type323 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicAction? Type323 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicType? Type324 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type324 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicAction? Type325 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type325 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type326 { get; set; }
+ public global::Opik.LogItem? Type326 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type327 { get; set; }
+ public global::Opik.LogItemLevel? Type327 { get; set; }
///
///
///
- public global::Opik.LogItem? Type328 { get; set; }
+ public global::Opik.LogPage? Type328 { get; set; }
///
///
///
- public global::Opik.LogItemLevel? Type329 { get; set; }
+ public global::System.Collections.Generic.IList? Type329 { get; set; }
///
///
///
- public global::Opik.LogPage? Type330 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdate? Type330 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type331 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateType? Type331 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdate? Type332 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateAction? Type332 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateType? Type333 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type333 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateAction? Type334 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type334 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type335 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type335 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type336 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type336 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type337 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type337 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type338 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type338 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type339 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type339 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type340 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type340 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type341 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type341 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type342 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type342 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type343 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type343 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type344 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type344 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type345 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type345 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type346 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type346 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type347 { get; set; }
+ public global::Opik.AssistantMessage? Type347 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type348 { get; set; }
+ public global::Opik.AssistantMessageRole? Type348 { get; set; }
///
///
///
- public global::Opik.AssistantMessage? Type349 { get; set; }
+ public global::System.Collections.Generic.IList? Type349 { get; set; }
///
///
///
- public global::Opik.AssistantMessageRole? Type350 { get; set; }
+ public global::Opik.ToolCall? Type350 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type351 { get; set; }
+ public global::Opik.FunctionCall? Type351 { get; set; }
///
///
///
- public global::Opik.ToolCall? Type352 { get; set; }
+ public global::Opik.ChatCompletionChoice? Type352 { get; set; }
///
///
///
- public global::Opik.FunctionCall? Type353 { get; set; }
+ public global::Opik.Delta? Type353 { get; set; }
///
///
///
- public global::Opik.ChatCompletionChoice? Type354 { get; set; }
+ public global::Opik.LogProbs? Type354 { get; set; }
///
///
///
- public global::Opik.Delta? Type355 { get; set; }
+ public global::Opik.ChatCompletionResponse? Type355 { get; set; }
///
///
///
- public global::Opik.LogProbs? Type356 { get; set; }
+ public global::System.Collections.Generic.IList? Type356 { get; set; }
///
///
///
- public global::Opik.ChatCompletionResponse? Type357 { get; set; }
+ public global::Opik.Usage? Type357 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type358 { get; set; }
+ public global::Opik.CompletionTokensDetails? Type358 { get; set; }
///
///
///
- public global::Opik.Usage? Type359 { get; set; }
+ public global::Opik.LogProb? Type359 { get; set; }
///
///
///
- public global::Opik.CompletionTokensDetails? Type360 { get; set; }
+ public global::System.Collections.Generic.IList? Type360 { get; set; }
///
///
///
- public global::Opik.LogProb? Type361 { get; set; }
+ public global::System.Collections.Generic.IList? Type361 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type362 { get; set; }
+ public global::Opik.PromptTokensDetails? Type362 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type363 { get; set; }
+ public global::Opik.ToolCallType? Type363 { get; set; }
///
///
///
- public global::Opik.PromptTokensDetails? Type364 { get; set; }
+ public global::Opik.ChatCompletionRequest? Type364 { get; set; }
///
///
///
- public global::Opik.ToolCallType? Type365 { get; set; }
+ public global::System.Collections.Generic.IList? Type365 { get; set; }
///
///
///
- public global::Opik.ChatCompletionRequest? Type366 { get; set; }
+ public global::Opik.Message? Type366 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type367 { get; set; }
+ public global::Opik.StreamOptions? Type367 { get; set; }
///
///
///
- public global::Opik.Message? Type368 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type368 { get; set; }
///
///
///
- public global::Opik.StreamOptions? Type369 { get; set; }
+ public global::Opik.ResponseFormat? Type369 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type370 { get; set; }
+ public global::System.Collections.Generic.IList? Type370 { get; set; }
///
///
///
- public global::Opik.ResponseFormat? Type371 { get; set; }
+ public global::Opik.Tool? Type371 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type372 { get; set; }
+ public global::System.Collections.Generic.IList? Type372 { get; set; }
///
///
///
- public global::Opik.Tool? Type373 { get; set; }
+ public global::Opik.Function? Type373 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type374 { get; set; }
+ public global::Opik.JsonSchema? Type374 { get; set; }
///
///
///
- public global::Opik.Function? Type375 { get; set; }
+ public global::Opik.ResponseFormatType? Type375 { get; set; }
///
///
///
- public global::Opik.JsonSchema? Type376 { get; set; }
+ public global::Opik.ToolType? Type376 { get; set; }
///
///
///
- public global::Opik.ResponseFormatType? Type377 { get; set; }
+ public global::Opik.DashboardPublic? Type377 { get; set; }
///
///
///
- public global::Opik.ToolType? Type378 { get; set; }
+ public global::Opik.DashboardPublicType? Type378 { get; set; }
///
///
///
- public global::Opik.DashboardPublic? Type379 { get; set; }
+ public global::Opik.DashboardPublicScope? Type379 { get; set; }
///
///
///
- public global::Opik.DashboardPublicType? Type380 { get; set; }
+ public global::Opik.DashboardWrite? Type380 { get; set; }
///
///
///
- public global::Opik.DashboardPublicScope? Type381 { get; set; }
+ public global::Opik.DashboardWriteType? Type381 { get; set; }
///
///
///
- public global::Opik.DashboardWrite? Type382 { get; set; }
+ public global::Opik.DashboardPagePublic? Type382 { get; set; }
///
///
///
- public global::Opik.DashboardWriteType? Type383 { get; set; }
+ public global::System.Collections.Generic.IList? Type383 { get; set; }
///
///
///
- public global::Opik.DashboardPagePublic? Type384 { get; set; }
+ public global::Opik.DashboardUpdatePublic? Type384 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type385 { get; set; }
+ public global::Opik.DashboardUpdatePublicType? Type385 { get; set; }
///
///
///
- public global::Opik.DashboardUpdatePublic? Type386 { get; set; }
+ public global::Opik.DatasetVersionPublic? Type386 { get; set; }
///
///
///
- public global::Opik.DashboardUpdatePublicType? Type387 { get; set; }
+ public global::System.Collections.Generic.IList? Type387 { get; set; }
///
///
///
- public global::Opik.DatasetVersionPublic? Type388 { get; set; }
+ public global::Opik.EvaluatorItemPublic? Type388 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type389 { get; set; }
+ public global::Opik.ExecutionPolicyPublic? Type389 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemPublic? Type390 { get; set; }
+ public global::Opik.EvaluatorItemPublicType? Type390 { get; set; }
///
///
///
- public global::Opik.ExecutionPolicyPublic? Type391 { get; set; }
+ public global::Opik.DatasetItemChangesPublic? Type391 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemPublicType? Type392 { get; set; }
+ public global::Opik.DatasetItemBatchUpdate? Type392 { get; set; }
///
///
///
- public global::Opik.DatasetItemChangesPublic? Type393 { get; set; }
+ public global::System.Collections.Generic.IList? Type393 { get; set; }
///
///
///
- public global::Opik.DatasetItemBatchUpdate? Type394 { get; set; }
+ public global::Opik.DatasetItemFilter? Type394 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type395 { get; set; }
+ public global::Opik.DatasetItemUpdate? Type395 { get; set; }
///
///
///
- public global::Opik.DatasetItemFilter? Type396 { get; set; }
+ public global::Opik.DatasetItemFilterOperator? Type396 { get; set; }
///
///
///
- public global::Opik.DatasetItemUpdate? Type397 { get; set; }
+ public global::System.Collections.Generic.IList? Type397 { get; set; }
///
///
///
- public global::Opik.DatasetItemFilterOperator? Type398 { get; set; }
+ public global::Opik.EvaluatorItem? Type398 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type399 { get; set; }
+ public global::Opik.ExecutionPolicy? Type399 { get; set; }
///
///
///
- public global::Opik.EvaluatorItem? Type400 { get; set; }
+ public global::Opik.EvaluatorItemType? Type400 { get; set; }
///
///
///
- public global::Opik.ExecutionPolicy? Type401 { get; set; }
+ public global::Opik.Dataset? Type401 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemType? Type402 { get; set; }
+ public global::Opik.DatasetType? Type402 { get; set; }
///
///
///
- public global::Opik.Dataset? Type403 { get; set; }
+ public global::Opik.DatasetVisibility? Type403 { get; set; }
///
///
///
- public global::Opik.DatasetType? Type404 { get; set; }
+ public global::Opik.DatasetStatus? Type404 { get; set; }
///
///
///
- public global::Opik.DatasetVisibility? Type405 { get; set; }
+ public global::Opik.DatasetVersionSummary? Type405 { get; set; }
///
///
///
- public global::Opik.DatasetStatus? Type406 { get; set; }
+ public global::Opik.DatasetWrite? Type406 { get; set; }
///
///
///
- public global::Opik.DatasetVersionSummary? Type407 { get; set; }
+ public global::Opik.DatasetWriteType? Type407 { get; set; }
///
///
///
- public global::Opik.DatasetWrite? Type408 { get; set; }
+ public global::Opik.DatasetWriteVisibility? Type408 { get; set; }
///
///
///
- public global::Opik.DatasetWriteType? Type409 { get; set; }
+ public global::Opik.AssertionResult? Type409 { get; set; }
///
///
///
- public global::Opik.DatasetWriteVisibility? Type410 { get; set; }
+ public global::Opik.Comment? Type410 { get; set; }
///
///
///
- public global::Opik.AssertionResult? Type411 { get; set; }
+ public global::Opik.DatasetItem? Type411 { get; set; }
///
///
///
- public global::Opik.Comment? Type412 { get; set; }
+ public global::Opik.DatasetItemSource? Type412 { get; set; }
///
///
///
- public global::Opik.DatasetItem? Type413 { get; set; }
+ public global::System.Collections.Generic.IList? Type413 { get; set; }
///
///
///
- public global::Opik.DatasetItemSource? Type414 { get; set; }
+ public global::Opik.ExperimentItem? Type414 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type415 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type415 { get; set; }
///
///
///
- public global::Opik.ExperimentItem? Type416 { get; set; }
+ public global::Opik.ExperimentRunSummary? Type416 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type417 { get; set; }
+ public global::Opik.DatasetItemBatch? Type417 { get; set; }
///
///
///
- public global::Opik.ExperimentRunSummary? Type418 { get; set; }
+ public global::System.Collections.Generic.IList? Type418 { get; set; }
///
///
///
- public global::Opik.DatasetItemBatch? Type419 { get; set; }
+ public global::Opik.JsonListString? Type419 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type420 { get; set; }
+ public global::System.Collections.Generic.IList? Type420 { get; set; }
///
///
///
- public global::Opik.JsonListString? Type421 { get; set; }
+ public global::Opik.FeedbackScore? Type421 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type422 { get; set; }
+ public global::System.Collections.Generic.IList? Type422 { get; set; }
///
///
///
- public global::Opik.FeedbackScore? Type423 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type423 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type424 { get; set; }
+ public global::Opik.ExperimentItemTraceVisibilityMode? Type424 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type425 { get; set; }
+ public global::System.Collections.Generic.IList? Type425 { get; set; }
///
///
///
- public global::Opik.ExperimentItemTraceVisibilityMode? Type426 { get; set; }
+ public global::Opik.ExperimentItemStatus? Type426 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type427 { get; set; }
+ public global::Opik.ExperimentRunSummaryStatus? Type427 { get; set; }
///
///
///
- public global::Opik.ExperimentItemStatus? Type428 { get; set; }
+ public global::Opik.FeedbackScoreSource? Type428 { get; set; }
///
///
///
- public global::Opik.ExperimentRunSummaryStatus? Type429 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type429 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreSource? Type430 { get; set; }
+ public global::Opik.ValueEntry? Type430 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type431 { get; set; }
+ public global::System.Collections.Generic.IList