diff --git a/src/libs/Braintrust/Generated/Braintrust.ApiKeysClient.PostApiKey.g.cs b/src/libs/Braintrust/Generated/Braintrust.ApiKeysClient.PostApiKey.g.cs
deleted file mode 100644
index d4d114e..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.ApiKeysClient.PostApiKey.g.cs
+++ /dev/null
@@ -1,670 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- public partial class ApiKeysClient
- {
-
-
- private static readonly global::Braintrust.EndPointSecurityRequirement s_PostApiKeySecurityRequirement0 =
- new global::Braintrust.EndPointSecurityRequirement
- {
- Authorizations = new global::Braintrust.EndPointAuthorizationRequirement[]
- { new global::Braintrust.EndPointAuthorizationRequirement
- {
- Type = "Http",
- SchemeId = "BearerAuth",
- Location = "Header",
- Name = "Bearer",
- FriendlyName = "Bearer",
- },
- },
- };
-
- private static readonly global::Braintrust.EndPointSecurityRequirement s_PostApiKeySecurityRequirement1 =
- new global::Braintrust.EndPointSecurityRequirement
- {
- Authorizations = new global::Braintrust.EndPointAuthorizationRequirement[]
- {
- },
- };
- private static readonly global::Braintrust.EndPointSecurityRequirement[] s_PostApiKeySecurityRequirements =
- new global::Braintrust.EndPointSecurityRequirement[]
- { s_PostApiKeySecurityRequirement0,
- s_PostApiKeySecurityRequirement1,
- };
- partial void PreparePostApiKeyArguments(
- global::System.Net.Http.HttpClient httpClient,
- global::Braintrust.PostApiKeyRequest request);
- partial void PreparePostApiKeyRequest(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpRequestMessage httpRequestMessage,
- global::Braintrust.PostApiKeyRequest request);
- partial void ProcessPostApiKeyResponse(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpResponseMessage httpResponseMessage);
-
- partial void ProcessPostApiKeyResponseContent(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpResponseMessage httpResponseMessage,
- ref string content);
-
- ///
- /// Create api_key
- /// Create a new api_key. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// 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 PostApiKeyAsync(
-
- global::Braintrust.PostApiKeyRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default)
- {
- var __response = await PostApiKeyAsResponseAsync(
-
- request: request,
- requestOptions: requestOptions,
- cancellationToken: cancellationToken
- ).ConfigureAwait(false);
-
- return __response.Body;
- }
- ///
- /// Create api_key
- /// Create a new api_key. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// 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> PostApiKeyAsResponseAsync(
-
- global::Braintrust.PostApiKeyRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default)
- {
- request = request ?? throw new global::System.ArgumentNullException(nameof(request));
-
- PrepareArguments(
- client: HttpClient);
- PreparePostApiKeyArguments(
- httpClient: HttpClient,
- request: request);
-
-
- var __authorizations = global::Braintrust.EndPointSecurityResolver.ResolveAuthorizations(
- availableAuthorizations: Authorizations,
- securityRequirements: s_PostApiKeySecurityRequirements,
- operationName: "PostApiKeyAsync");
-
- using var __timeoutCancellationTokenSource = global::Braintrust.AutoSDKRequestOptionsSupport.CreateTimeoutCancellationTokenSource(
- clientOptions: Options,
- requestOptions: requestOptions,
- cancellationToken: cancellationToken);
- var __effectiveCancellationToken = __timeoutCancellationTokenSource?.Token ?? cancellationToken;
- var __effectiveReadResponseAsString = global::Braintrust.AutoSDKRequestOptionsSupport.GetReadResponseAsString(
- clientOptions: Options,
- requestOptions: requestOptions,
- fallbackValue: ReadResponseAsString);
- var __maxAttempts = global::Braintrust.AutoSDKRequestOptionsSupport.GetMaxAttempts(
- clientOptions: Options,
- requestOptions: requestOptions,
- supportsRetry: true);
-
- global::System.Net.Http.HttpRequestMessage __CreateHttpRequest()
- {
-
- var __pathBuilder = new global::Braintrust.PathBuilder(
- path: "/v1/api_key",
- baseUri: HttpClient.BaseAddress);
- var __path = __pathBuilder.ToString();
- __path = global::Braintrust.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::Braintrust.AutoSDKRequestOptionsSupport.ApplyHeaders(
- request: __httpRequest,
- clientHeaders: Options.Headers,
- requestHeaders: requestOptions?.Headers);
-
- PrepareRequest(
- client: HttpClient,
- request: __httpRequest);
- PreparePostApiKeyRequest(
- 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::Braintrust.AutoSDKRequestOptionsSupport.OnBeforeRequestAsync(
- clientOptions: Options,
- context: global::Braintrust.AutoSDKRequestOptionsSupport.CreateHookContext(
- operationId: "PostApiKey",
- methodName: "PostApiKeyAsync",
- pathTemplate: "\"/v1/api_key\"",
- 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::Braintrust.AutoSDKRequestOptionsSupport.GetRetryDelay(
- clientOptions: Options,
- requestOptions: requestOptions,
- response: null,
- attempt: __attempt);
- var __willRetry = __attempt < __maxAttempts && !__effectiveCancellationToken.IsCancellationRequested;
- await global::Braintrust.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
- clientOptions: Options,
- context: global::Braintrust.AutoSDKRequestOptionsSupport.CreateHookContext(
- operationId: "PostApiKey",
- methodName: "PostApiKeyAsync",
- pathTemplate: "\"/v1/api_key\"",
- 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::Braintrust.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync(
- retryDelay: __retryDelay,
- cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
- continue;
- }
-
- if (__response != null &&
- __attempt < __maxAttempts &&
- global::Braintrust.AutoSDKRequestOptionsSupport.ShouldRetryStatusCode(__response.StatusCode))
- {
- var __retryDelay = global::Braintrust.AutoSDKRequestOptionsSupport.GetRetryDelay(
- clientOptions: Options,
- requestOptions: requestOptions,
- response: __response,
- attempt: __attempt);
- await global::Braintrust.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
- clientOptions: Options,
- context: global::Braintrust.AutoSDKRequestOptionsSupport.CreateHookContext(
- operationId: "PostApiKey",
- methodName: "PostApiKeyAsync",
- pathTemplate: "\"/v1/api_key\"",
- 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::Braintrust.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);
- ProcessPostApiKeyResponse(
- httpClient: HttpClient,
- httpResponseMessage: __response);
- if (__response.IsSuccessStatusCode)
- {
- await global::Braintrust.AutoSDKRequestOptionsSupport.OnAfterSuccessAsync(
- clientOptions: Options,
- context: global::Braintrust.AutoSDKRequestOptionsSupport.CreateHookContext(
- operationId: "PostApiKey",
- methodName: "PostApiKeyAsync",
- pathTemplate: "\"/v1/api_key\"",
- 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::Braintrust.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
- clientOptions: Options,
- context: global::Braintrust.AutoSDKRequestOptionsSupport.CreateHookContext(
- operationId: "PostApiKey",
- methodName: "PostApiKeyAsync",
- pathTemplate: "\"/v1/api_key\"",
- 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);
- }
- // The request was unacceptable, often due to missing a required parameter
- if ((int)__response.StatusCode == 400)
- {
- string? __content_400 = null;
- global::System.Exception? __exception_400 = null;
- string? __value_400 = null;
- try
- {
- if (__effectiveReadResponseAsString)
- {
- __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
- __value_400 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_400, typeof(string), JsonSerializerContext);
- }
- else
- {
- __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
-
- __value_400 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_400, typeof(string), JsonSerializerContext);
- }
- }
- catch (global::System.Exception __ex)
- {
- __exception_400 = __ex;
- }
-
- throw new global::Braintrust.ApiException(
- message: __content_400 ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __exception_400,
- statusCode: __response.StatusCode)
- {
- ResponseBody = __content_400,
- ResponseObject = __value_400,
- ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
- __response.Headers,
- h => h.Key,
- h => h.Value),
- };
- }
- // No valid API key provided
- if ((int)__response.StatusCode == 401)
- {
- string? __content_401 = null;
- global::System.Exception? __exception_401 = null;
- string? __value_401 = null;
- try
- {
- if (__effectiveReadResponseAsString)
- {
- __content_401 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
- __value_401 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_401, typeof(string), JsonSerializerContext);
- }
- else
- {
- __content_401 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
-
- __value_401 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_401, typeof(string), JsonSerializerContext);
- }
- }
- catch (global::System.Exception __ex)
- {
- __exception_401 = __ex;
- }
-
- throw new global::Braintrust.ApiException(
- message: __content_401 ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __exception_401,
- statusCode: __response.StatusCode)
- {
- ResponseBody = __content_401,
- ResponseObject = __value_401,
- ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
- __response.Headers,
- h => h.Key,
- h => h.Value),
- };
- }
- // The API key doesn’t have permissions to perform the request
- if ((int)__response.StatusCode == 403)
- {
- string? __content_403 = null;
- global::System.Exception? __exception_403 = null;
- string? __value_403 = null;
- try
- {
- if (__effectiveReadResponseAsString)
- {
- __content_403 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
- __value_403 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_403, typeof(string), JsonSerializerContext);
- }
- else
- {
- __content_403 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
-
- __value_403 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_403, typeof(string), JsonSerializerContext);
- }
- }
- catch (global::System.Exception __ex)
- {
- __exception_403 = __ex;
- }
-
- throw new global::Braintrust.ApiException(
- message: __content_403 ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __exception_403,
- statusCode: __response.StatusCode)
- {
- ResponseBody = __content_403,
- ResponseObject = __value_403,
- ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
- __response.Headers,
- h => h.Key,
- h => h.Value),
- };
- }
- // Too many requests hit the API too quickly. We recommend an exponential backoff of your requests
- if ((int)__response.StatusCode == 429)
- {
- string? __content_429 = null;
- global::System.Exception? __exception_429 = null;
- string? __value_429 = null;
- try
- {
- if (__effectiveReadResponseAsString)
- {
- __content_429 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
- __value_429 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_429, typeof(string), JsonSerializerContext);
- }
- else
- {
- __content_429 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
-
- __value_429 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_429, typeof(string), JsonSerializerContext);
- }
- }
- catch (global::System.Exception __ex)
- {
- __exception_429 = __ex;
- }
-
- throw new global::Braintrust.ApiException(
- message: __content_429 ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __exception_429,
- statusCode: __response.StatusCode)
- {
- ResponseBody = __content_429,
- ResponseObject = __value_429,
- ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
- __response.Headers,
- h => h.Key,
- h => h.Value),
- };
- }
- // Something went wrong on Braintrust's end. (These are rare.)
- if ((int)__response.StatusCode == 500)
- {
- string? __content_500 = null;
- global::System.Exception? __exception_500 = null;
- string? __value_500 = null;
- try
- {
- if (__effectiveReadResponseAsString)
- {
- __content_500 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
- __value_500 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_500, typeof(string), JsonSerializerContext);
- }
- else
- {
- __content_500 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
-
- __value_500 = (string?)global::System.Text.Json.JsonSerializer.Deserialize(__content_500, typeof(string), JsonSerializerContext);
- }
- }
- catch (global::System.Exception __ex)
- {
- __exception_500 = __ex;
- }
-
- throw new global::Braintrust.ApiException(
- message: __content_500 ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __exception_500,
- statusCode: __response.StatusCode)
- {
- ResponseBody = __content_500,
- ResponseObject = __value_500,
- 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);
- ProcessPostApiKeyResponseContent(
- httpClient: HttpClient,
- httpResponseMessage: __response,
- content: ref __content);
-
- try
- {
- __response.EnsureSuccessStatusCode();
-
- var __value = global::Braintrust.CreateApiKeyOutput.FromJson(__content, JsonSerializerContext) ??
- throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
- return new global::Braintrust.AutoSDKHttpResponse(
- statusCode: __response.StatusCode,
- headers: global::Braintrust.AutoSDKHttpResponse.CreateHeaders(__response),
- requestUri: __response.RequestMessage?.RequestUri,
- body: __value);
- }
- catch (global::System.Exception __ex)
- {
- throw new global::Braintrust.ApiException(
- message: __content ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __ex,
- statusCode: __response.StatusCode)
- {
- 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::Braintrust.CreateApiKeyOutput.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ??
- throw new global::System.InvalidOperationException("Response deserialization failed.");
- return new global::Braintrust.AutoSDKHttpResponse(
- statusCode: __response.StatusCode,
- headers: global::Braintrust.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 new global::Braintrust.ApiException(
- message: __content ?? __response.ReasonPhrase ?? string.Empty,
- innerException: __ex,
- statusCode: __response.StatusCode)
- {
- ResponseBody = __content,
- ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
- __response.Headers,
- h => h.Key,
- h => h.Value),
- };
- }
- }
-
- }
- }
- finally
- {
- __httpRequest?.Dispose();
- }
- }
- ///
- /// Create api_key
- /// Create a new api_key. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// Name of the api key. Does not have to be unique
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the API key belongs in.
- ///
- /// 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 PostApiKeyAsync(
- string name,
- string? orgName = default,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default)
- {
- var __request = new global::Braintrust.PostApiKeyRequest
- {
- Name = name,
- OrgName = orgName,
- };
-
- return await PostApiKeyAsync(
- request: __request,
- requestOptions: requestOptions,
- cancellationToken: cancellationToken).ConfigureAwait(false);
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.IApiKeysClient.PostApiKey.g.cs b/src/libs/Braintrust/Generated/Braintrust.IApiKeysClient.PostApiKey.g.cs
deleted file mode 100644
index 0845d4b..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.IApiKeysClient.PostApiKey.g.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public partial interface IApiKeysClient
- {
- ///
- /// Create api_key
- /// Create a new api_key. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// 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 PostApiKeyAsync(
-
- global::Braintrust.PostApiKeyRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Create api_key
- /// Create a new api_key. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// 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> PostApiKeyAsResponseAsync(
-
- global::Braintrust.PostApiKeyRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Create api_key
- /// Create a new api_key. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// Name of the api key. Does not have to be unique
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the API key belongs in.
- ///
- /// 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 PostApiKeyAsync(
- string name,
- string? orgName = default,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.IServiceTokensClient.PostServiceToken.g.cs b/src/libs/Braintrust/Generated/Braintrust.IServiceTokensClient.PostServiceToken.g.cs
deleted file mode 100644
index 3897b8b..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.IServiceTokensClient.PostServiceToken.g.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public partial interface IServiceTokensClient
- {
- ///
- /// Create service_token
- /// Create a new service_token. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// 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 PostServiceTokenAsync(
-
- global::Braintrust.PostServiceTokenRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Create service_token
- /// Create a new service_token. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// 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> PostServiceTokenAsResponseAsync(
-
- global::Braintrust.PostServiceTokenRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Create service_token
- /// Create a new service_token. It is possible to have multiple API keys with the same name. There is no de-duplication
- ///
- ///
- /// Name of the service token. Does not have to be unique
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the Service token belongs in.
- ///
- ///
- /// The service account ID this service token should belong to. You can create a service account in the Braintrust [organization settings page](https://www.braintrustdata.com/app/settings?subroute=service-tokens) or using the [modify organization membership endpoint](https://www.braintrust.dev/docs/api-reference/organizations/modify-organization-membership)
- ///
- /// 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 PostServiceTokenAsync(
- string name,
- string serviceAccountId,
- string? orgName = default,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.IServiceTokensClient.PutServiceToken.g.cs b/src/libs/Braintrust/Generated/Braintrust.IServiceTokensClient.PutServiceToken.g.cs
deleted file mode 100644
index 6da5b47..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.IServiceTokensClient.PutServiceToken.g.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public partial interface IServiceTokensClient
- {
- ///
- /// Create or replace service_token
- /// Create or replace service_token. If there is an existing service_token with the same name as the one specified in the request, will replace the existing service_token with the provided fields
- ///
- ///
- /// 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 PutServiceTokenAsync(
-
- global::Braintrust.PutServiceTokenRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Create or replace service_token
- /// Create or replace service_token. If there is an existing service_token with the same name as the one specified in the request, will replace the existing service_token with the provided fields
- ///
- ///
- /// 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> PutServiceTokenAsResponseAsync(
-
- global::Braintrust.PutServiceTokenRequest request,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- ///
- /// Create or replace service_token
- /// Create or replace service_token. If there is an existing service_token with the same name as the one specified in the request, will replace the existing service_token with the provided fields
- ///
- ///
- /// Name of the service token. Does not have to be unique
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the Service token belongs in.
- ///
- ///
- /// The service account ID this service token should belong to. You can create a service account in the Braintrust [organization settings page](https://www.braintrustdata.com/app/settings?subroute=service-tokens) or using the [modify organization membership endpoint](https://www.braintrust.dev/docs/api-reference/organizations/modify-organization-membership)
- ///
- /// 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 PutServiceTokenAsync(
- string name,
- string serviceAccountId,
- string? orgName = default,
- global::Braintrust.AutoSDKRequestOptions? requestOptions = default,
- global::System.Threading.CancellationToken cancellationToken = default);
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonConverters.ChatCompletionMessageParam.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.ChatCompletionMessageParam.g.cs
index c896ea4..6a5817b 100644
--- a/src/libs/Braintrust/Generated/Braintrust.JsonConverters.ChatCompletionMessageParam.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.ChatCompletionMessageParam.g.cs
@@ -49,6 +49,7 @@ public class ChatCompletionMessageParamJsonConverter : global::System.Text.Json.
if (__jsonProps.Contains("function_call.name")) __score2++;
if (__jsonProps.Contains("name")) __score2++;
if (__jsonProps.Contains("reasoning")) __score2++;
+ if (__jsonProps.Contains("reasoning_signature")) __score2++;
if (__jsonProps.Contains("role")) __score2++;
if (__jsonProps.Contains("tool_calls")) __score2++;
var __score3 = 0;
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierType.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierType.g.cs
new file mode 100644
index 0000000..dce0b71
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Braintrust.JsonConverters
+{
+ ///
+ public sealed class CodeBundleLocationExperimentPositionClassifierTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Braintrust.CodeBundleLocationExperimentPositionClassifierType 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::Braintrust.CodeBundleLocationExperimentPositionClassifierTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Braintrust.CodeBundleLocationExperimentPositionClassifierType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Braintrust.CodeBundleLocationExperimentPositionClassifierType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Braintrust.CodeBundleLocationExperimentPositionClassifierType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Braintrust.CodeBundleLocationExperimentPositionClassifierTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeNullable.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeNullable.g.cs
new file mode 100644
index 0000000..448d8a3
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Braintrust.JsonConverters
+{
+ ///
+ public sealed class CodeBundleLocationExperimentPositionClassifierTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Braintrust.CodeBundleLocationExperimentPositionClassifierType? 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::Braintrust.CodeBundleLocationExperimentPositionClassifierTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Braintrust.CodeBundleLocationExperimentPositionClassifierType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Braintrust.CodeBundleLocationExperimentPositionClassifierType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Braintrust.CodeBundleLocationExperimentPositionClassifierType? 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::Braintrust.CodeBundleLocationExperimentPositionClassifierTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonConverters.TopicAutomationFacetModel.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.TopicAutomationFacetModel.g.cs
new file mode 100644
index 0000000..bd561a8
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.TopicAutomationFacetModel.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Braintrust.JsonConverters
+{
+ ///
+ public sealed class TopicAutomationFacetModelJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Braintrust.TopicAutomationFacetModel 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::Braintrust.TopicAutomationFacetModelExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Braintrust.TopicAutomationFacetModel)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Braintrust.TopicAutomationFacetModel);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Braintrust.TopicAutomationFacetModel value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Braintrust.TopicAutomationFacetModelExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonConverters.TopicAutomationFacetModelNullable.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.TopicAutomationFacetModelNullable.g.cs
new file mode 100644
index 0000000..7763f13
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonConverters.TopicAutomationFacetModelNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Braintrust.JsonConverters
+{
+ ///
+ public sealed class TopicAutomationFacetModelNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Braintrust.TopicAutomationFacetModel? 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::Braintrust.TopicAutomationFacetModelExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Braintrust.TopicAutomationFacetModel)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Braintrust.TopicAutomationFacetModel?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Braintrust.TopicAutomationFacetModel? 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::Braintrust.TopicAutomationFacetModelExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContext.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContext.g.cs
index 7dda6dc..b4f2173 100644
--- a/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContext.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContext.g.cs
@@ -273,6 +273,10 @@ namespace Braintrust
typeof(global::Braintrust.JsonConverters.RetentionObjectTypeNullableJsonConverter),
+ typeof(global::Braintrust.JsonConverters.TopicAutomationFacetModelJsonConverter),
+
+ typeof(global::Braintrust.JsonConverters.TopicAutomationFacetModelNullableJsonConverter),
+
typeof(global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2FunctionTypeJsonConverter),
typeof(global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2FunctionTypeNullableJsonConverter),
@@ -497,6 +501,10 @@ namespace Braintrust
typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionScorerTypeNullableJsonConverter),
+ typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeJsonConverter),
+
+ typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeNullableJsonConverter),
+
typeof(global::Braintrust.JsonConverters.CodeBundleLocationFunctionTypeJsonConverter),
typeof(global::Braintrust.JsonConverters.CodeBundleLocationFunctionTypeNullableJsonConverter),
@@ -891,7 +899,7 @@ namespace Braintrust
typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter),
- typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter),
typeof(global::Braintrust.JsonConverters.OneOfJsonConverter),
@@ -953,6 +961,7 @@ namespace Braintrust
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "CreateProjectAutomationConfigVariant2ExportDefinitionVariant3_378e18d0da0115e9")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "TopicAutomationConfig_object_c1d13683938f4e63")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "PatchProjectAutomationConfigVariant2ExportDefinitionVariant3_a18e2b09c026c85e")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionClassifier_b29c562fd5b3ee2b")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "PromptDataMcpMcpServerUrlThisIsUsedForInlineDefinitionsOfMcpServers_5dbc7250a4b23b86")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.SavedFunctionId?), TypeInfoPropertyName = "NullableSavedFunctionId_Braintrust_SavedFunctionId")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.SavedFunctionIdFunctionType?), TypeInfoPropertyName = "NullableSavedFunctionIdFunctionType_Braintrust_SavedFunctionIdFunctionType")]
@@ -972,6 +981,7 @@ namespace Braintrust
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "TopicAutomationConfig_object_d9870abf8360f205")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "PatchProjectAutomationConfigVariant2ExportDefinitionVariant3_406398cc1ac2a868")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "PatchProjectAutomationConfigVariant2CredentialsVariant2_8e5c5ea50cba239d")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf?), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionClassifier_c4d9fe7d3ca7c609")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "PromptDataMcpMcpServerUrlThisIsUsedForInlineDefinitionsOfMcpServers_2c2424cd8ae0cdf5")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List?>>), TypeInfoPropertyName = "TopicAutomationConfigFacetFunctionVariant2Global_0de25e7b7f3aebf4")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.JsonSerializerContextTypes))]
@@ -1235,6 +1245,7 @@ namespace Braintrust
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.GroupScope))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.GroupScopeType), TypeInfoPropertyName = "GroupScopeType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.RetentionObjectType), TypeInfoPropertyName = "RetentionObjectType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicAutomationFacetModel), TypeInfoPropertyName = "TopicAutomationFacetModel2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapFunctionAutomation))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf), TypeInfoPropertyName = "AnyOfTopicMapFunctionAutomationFunctionVariant2FunctionTopicMapFunctionAutomationFunctionVariant2Global2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapFunctionAutomationFunctionVariant2Function))]
@@ -1379,11 +1390,12 @@ namespace Braintrust
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf), TypeInfoPropertyName = "AnyOfCodeBundleLocationExperimentCodeBundleLocationFunctionCodeBundleLocationVariant32")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperiment))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentType), TypeInfoPropertyName = "CodeBundleLocationExperimentType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf), TypeInfoPropertyName = "AnyOfCodeBundleLocationExperimentPositionVariant1CodeBundleLocationExperimentPositionScorer2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentPositionVariant1))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentPositionVariant1Type), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionVariant1Type2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentPositionScorer))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentPositionScorerType), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionScorerType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentPositionClassifier))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationExperimentPositionClassifierType), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionClassifierType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationFunction))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationFunctionType), TypeInfoPropertyName = "CodeBundleLocationFunctionType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CodeBundleLocationVariant3))]
@@ -1433,10 +1445,6 @@ namespace Braintrust
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.FacetData))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.FacetDataType), TypeInfoPropertyName = "FacetDataType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AllOf), TypeInfoPropertyName = "AllOfNullableSavedFunctionIdObject2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapGenerationSettings))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapGenerationSettingsAlgorithm), TypeInfoPropertyName = "TopicMapGenerationSettingsAlgorithm2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapGenerationSettingsDimensionReduction), TypeInfoPropertyName = "TopicMapGenerationSettingsDimensionReduction2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapData))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1708,6 +1716,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Braintrust.JsonConverters.RetentionObjectTypeNullableJsonConverter),
+ typeof(global::Braintrust.JsonConverters.TopicAutomationFacetModelJsonConverter),
+
+ typeof(global::Braintrust.JsonConverters.TopicAutomationFacetModelNullableJsonConverter),
+
typeof(global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2FunctionTypeJsonConverter),
typeof(global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2FunctionTypeNullableJsonConverter),
@@ -1932,6 +1944,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionScorerTypeNullableJsonConverter),
+ typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeJsonConverter),
+
+ typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeNullableJsonConverter),
+
typeof(global::Braintrust.JsonConverters.CodeBundleLocationFunctionTypeJsonConverter),
typeof(global::Braintrust.JsonConverters.CodeBundleLocationFunctionTypeNullableJsonConverter),
@@ -2326,7 +2342,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter),
- typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter),
typeof(global::Braintrust.JsonConverters.OneOfJsonConverter),
@@ -2388,6 +2404,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "CreateProjectAutomationConfigVariant2ExportDefinitionVariant3_378e18d0da0115e9")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "TopicAutomationConfig_object_c1d13683938f4e63")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "PatchProjectAutomationConfigVariant2ExportDefinitionVariant3_a18e2b09c026c85e")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionClassifier_b29c562fd5b3ee2b")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf), TypeInfoPropertyName = "PromptDataMcpMcpServerUrlThisIsUsedForInlineDefinitionsOfMcpServers_5dbc7250a4b23b86")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.SavedFunctionId?), TypeInfoPropertyName = "NullableSavedFunctionId_Braintrust_SavedFunctionId")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.SavedFunctionIdFunctionType?), TypeInfoPropertyName = "NullableSavedFunctionIdFunctionType_Braintrust_SavedFunctionIdFunctionType")]
@@ -2407,8 +2424,13 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "TopicAutomationConfig_object_d9870abf8360f205")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "PatchProjectAutomationConfigVariant2ExportDefinitionVariant3_406398cc1ac2a868")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "PatchProjectAutomationConfigVariant2CredentialsVariant2_8e5c5ea50cba239d")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AnyOf?), TypeInfoPropertyName = "CodeBundleLocationExperimentPositionClassifier_c4d9fe7d3ca7c609")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.OneOf?), TypeInfoPropertyName = "PromptDataMcpMcpServerUrlThisIsUsedForInlineDefinitionsOfMcpServers_2c2424cd8ae0cdf5")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List?>>), TypeInfoPropertyName = "TopicAutomationConfigFacetFunctionVariant2Global_0de25e7b7f3aebf4")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapGenerationSettings))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapGenerationSettingsAlgorithm), TypeInfoPropertyName = "TopicMapGenerationSettingsAlgorithm2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapGenerationSettingsDimensionReduction), TypeInfoPropertyName = "TopicMapGenerationSettingsDimensionReduction2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapData))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.TopicMapDataType), TypeInfoPropertyName = "TopicMapDataType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.BatchedFacetData))]
@@ -2521,9 +2543,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PatchOrganizationMembersInviteUsersServiceAccount))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PatchOrganizationMembersRemoveUsers))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CreateApiKeyOutput))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.ApiKey))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.CreateServiceTokenOutput))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.ServiceToken))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.DeleteServiceToken))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AISecret))]
@@ -2591,9 +2611,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.AllOf), TypeInfoPropertyName = "AllOfRepoInfoObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.RunEvalMcpAuth2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PostApiKeyRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PostServiceTokenRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PutServiceTokenRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PostEnvVarRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PostEnvVarRequestObjectType), TypeInfoPropertyName = "PostEnvVarRequestObjectType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Braintrust.PutEnvVarRequest))]
@@ -2897,6 +2914,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Braintrust.JsonConverters.GroupScopeTypeNullableJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.RetentionObjectTypeJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.RetentionObjectTypeNullableJsonConverter());
+ options.Converters.Add(new global::Braintrust.JsonConverters.TopicAutomationFacetModelJsonConverter());
+ options.Converters.Add(new global::Braintrust.JsonConverters.TopicAutomationFacetModelNullableJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2FunctionTypeJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2FunctionTypeNullableJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.TopicMapFunctionAutomationFunctionVariant2GlobalTypeJsonConverter());
@@ -3009,6 +3028,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionVariant1TypeNullableJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionScorerTypeJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionScorerTypeNullableJsonConverter());
+ options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeJsonConverter());
+ options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeNullableJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationFunctionTypeJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationFunctionTypeNullableJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.CodeBundleLocationVariant3TypeJsonConverter());
@@ -3206,7 +3227,7 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Braintrust.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.AnyOfJsonConverter());
- options.Converters.Add(new global::Braintrust.JsonConverters.AnyOfJsonConverter());
+ options.Converters.Add(new global::Braintrust.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.AllOfJsonConverter());
options.Converters.Add(new global::Braintrust.JsonConverters.AllOfJsonConverter());
diff --git a/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContextTypes.g.cs b/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContextTypes.g.cs
index 82ef8d9..9e6043b 100644
--- a/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.JsonSerializerContextTypes.g.cs
@@ -1040,575 +1040,575 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Braintrust.TopicMapFunctionAutomation? Type253 { get; set; }
+ public global::Braintrust.TopicAutomationFacetModel? Type253 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type254 { get; set; }
+ public global::Braintrust.TopicMapFunctionAutomation? Type254 { get; set; }
///
///
///
- public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2Function? Type255 { get; set; }
+ public global::Braintrust.AnyOf? Type255 { get; set; }
///
///
///
- public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2FunctionType? Type256 { get; set; }
+ public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2Function? Type256 { get; set; }
///
///
///
- public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2Global? Type257 { get; set; }
+ public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2FunctionType? Type257 { get; set; }
///
///
///
- public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2GlobalType? Type258 { get; set; }
+ public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2Global? Type258 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScope? Type259 { get; set; }
+ public global::Braintrust.TopicMapFunctionAutomationFunctionVariant2GlobalType? Type259 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScopeVariant1? Type260 { get; set; }
+ public global::Braintrust.TopicAutomationDataScope? Type260 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScopeVariant1Type? Type261 { get; set; }
+ public global::Braintrust.TopicAutomationDataScopeVariant1? Type261 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScopeVariant2? Type262 { get; set; }
+ public global::Braintrust.TopicAutomationDataScopeVariant1Type? Type262 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScopeVariant2Type? Type263 { get; set; }
+ public global::Braintrust.TopicAutomationDataScopeVariant2? Type263 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScopeVariant3? Type264 { get; set; }
+ public global::Braintrust.TopicAutomationDataScopeVariant2Type? Type264 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationDataScopeVariant3Type? Type265 { get; set; }
+ public global::Braintrust.TopicAutomationDataScopeVariant3? Type265 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfig? Type266 { get; set; }
+ public global::Braintrust.TopicAutomationDataScopeVariant3Type? Type266 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfigEventType? Type267 { get; set; }
+ public global::Braintrust.TopicAutomationConfig? Type267 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type268 { get; set; }
+ public global::Braintrust.TopicAutomationConfigEventType? Type268 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2Function? Type269 { get; set; }
+ public global::Braintrust.AnyOf? Type269 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2FunctionType? Type270 { get; set; }
+ public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2Function? Type270 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2Global? Type271 { get; set; }
+ public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2FunctionType? Type271 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2GlobalType? Type272 { get; set; }
+ public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2Global? Type272 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type273 { get; set; }
+ public global::Braintrust.TopicAutomationConfigFacetFunctionVariant2GlobalType? Type273 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type274 { get; set; }
+ public global::System.Collections.Generic.IList? Type274 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type275 { get; set; }
+ public global::Braintrust.AnyOf? Type275 { get; set; }
///
///
///
- public global::Braintrust.TopicAutomationConfigBackfillTimeRange? Type276 { get; set; }
+ public global::Braintrust.AnyOf? Type276 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomation? Type277 { get; set; }
+ public global::Braintrust.TopicAutomationConfigBackfillTimeRange? Type277 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant1? Type278 { get; set; }
+ public global::Braintrust.ProjectAutomation? Type278 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant1EventType? Type279 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant1? Type279 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type280 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant1EventType? Type280 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant1? Type281 { get; set; }
+ public global::Braintrust.OneOf? Type281 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant1Type? Type282 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant1? Type282 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant2? Type283 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant1Type? Type283 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant2Type? Type284 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant2? Type284 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2? Type285 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant1ActionVariant2Type? Type285 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2EventType? Type286 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2? Type286 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant1? Type287 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2EventType? Type287 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant1Type? Type288 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant1? Type288 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant2? Type289 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant1Type? Type289 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant2Type? Type290 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant2? Type290 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant3? Type291 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant2Type? Type291 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant3Type? Type292 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant3? Type292 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2Format? Type293 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2ExportDefinitionVariant3Type? Type293 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type294 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2Format? Type294 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant1? Type295 { get; set; }
+ public global::Braintrust.OneOf? Type295 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant1Type? Type296 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant1? Type296 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant2? Type297 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant1Type? Type297 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant2Type? Type298 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant2? Type298 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant3? Type299 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant2CredentialsVariant2Type? Type299 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant3EventType? Type300 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant3? Type300 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant4? Type301 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant3EventType? Type301 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant4EventType? Type302 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant4? Type302 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type303 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant4EventType? Type303 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant1? Type304 { get; set; }
+ public global::Braintrust.OneOf? Type304 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant1Type? Type305 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant1? Type305 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant2? Type306 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant1Type? Type306 { get; set; }
///
///
///
- public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant2Type? Type307 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant2? Type307 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomation? Type308 { get; set; }
+ public global::Braintrust.ProjectAutomationConfigVariant4ActionVariant2Type? Type308 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant1? Type309 { get; set; }
+ public global::Braintrust.CreateProjectAutomation? Type309 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant1EventType? Type310 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant1? Type310 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type311 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant1EventType? Type311 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant1? Type312 { get; set; }
+ public global::Braintrust.OneOf? Type312 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant1Type? Type313 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant1? Type313 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant2? Type314 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant1Type? Type314 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant2Type? Type315 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant2? Type315 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2? Type316 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant1ActionVariant2Type? Type316 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2EventType? Type317 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2? Type317 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant1? Type318 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2EventType? Type318 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant1Type? Type319 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant1? Type319 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant2? Type320 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant1Type? Type320 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant2Type? Type321 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant2? Type321 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant3? Type322 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant2Type? Type322 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant3Type? Type323 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant3? Type323 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2Format? Type324 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2ExportDefinitionVariant3Type? Type324 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant1? Type325 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2Format? Type325 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant1Type? Type326 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant1? Type326 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant2? Type327 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant1Type? Type327 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant2Type? Type328 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant2? Type328 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant3? Type329 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant2CredentialsVariant2Type? Type329 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant3EventType? Type330 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant3? Type330 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant4? Type331 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant3EventType? Type331 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant4EventType? Type332 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant4? Type332 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type333 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant4EventType? Type333 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant1? Type334 { get; set; }
+ public global::Braintrust.OneOf? Type334 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant1Type? Type335 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant1? Type335 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant2? Type336 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant1Type? Type336 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant2Type? Type337 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant2? Type337 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomation? Type338 { get; set; }
+ public global::Braintrust.CreateProjectAutomationConfigVariant4ActionVariant2Type? Type338 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant1? Type339 { get; set; }
+ public global::Braintrust.PatchProjectAutomation? Type339 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant1EventType? Type340 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant1? Type340 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type341 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant1EventType? Type341 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant1? Type342 { get; set; }
+ public global::Braintrust.OneOf? Type342 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant1Type? Type343 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant1? Type343 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant2? Type344 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant1Type? Type344 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant2Type? Type345 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant2? Type345 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2? Type346 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant1ActionVariant2Type? Type346 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2EventType? Type347 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2? Type347 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant1? Type348 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2EventType? Type348 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant1Type? Type349 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant1? Type349 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant2? Type350 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant1Type? Type350 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant2Type? Type351 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant2? Type351 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant3? Type352 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant2Type? Type352 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant3Type? Type353 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant3? Type353 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2Format? Type354 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2ExportDefinitionVariant3Type? Type354 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant1? Type355 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2Format? Type355 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant1Type? Type356 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant1? Type356 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant2? Type357 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant1Type? Type357 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant2Type? Type358 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant2? Type358 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant3? Type359 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant2CredentialsVariant2Type? Type359 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant3EventType? Type360 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant3? Type360 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant4? Type361 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant3EventType? Type361 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant4EventType? Type362 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant4? Type362 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type363 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant4EventType? Type363 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant1? Type364 { get; set; }
+ public global::Braintrust.OneOf? Type364 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant1Type? Type365 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant1? Type365 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant2? Type366 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant1Type? Type366 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant2Type? Type367 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant2? Type367 { get; set; }
///
///
///
- public global::Braintrust.ProjectScoreCategory? Type368 { get; set; }
+ public global::Braintrust.PatchProjectAutomationConfigVariant4ActionVariant2Type? Type368 { get; set; }
///
///
///
- public global::Braintrust.ProjectScoreCategories? Type369 { get; set; }
+ public global::Braintrust.ProjectScoreCategory? Type369 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type370 { get; set; }
+ public global::Braintrust.ProjectScoreCategories? Type370 { get; set; }
///
///
///
- public global::Braintrust.OnlineScoreConfig? Type371 { get; set; }
+ public global::System.Collections.Generic.IList? Type371 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>>? Type372 { get; set; }
+ public global::Braintrust.OnlineScoreConfig? Type372 { get; set; }
///
///
///
- public global::Braintrust.AllOf?>? Type373 { get; set; }
+ public global::System.Collections.Generic.IList?>>? Type373 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type374 { get; set; }
+ public global::Braintrust.AllOf?>? Type374 { get; set; }
///
///
///
- public global::Braintrust.OnlineScoreConfigScorerVariant2Function? Type375 { get; set; }
+ public global::Braintrust.AnyOf? Type375 { get; set; }
///
///
///
- public global::Braintrust.OnlineScoreConfigScorerVariant2FunctionType? Type376 { get; set; }
+ public global::Braintrust.OnlineScoreConfigScorerVariant2Function? Type376 { get; set; }
///
///
///
- public global::Braintrust.OnlineScoreConfigScorerVariant2Global? Type377 { get; set; }
+ public global::Braintrust.OnlineScoreConfigScorerVariant2FunctionType? Type377 { get; set; }
///
///
///
- public global::Braintrust.OnlineScoreConfigScorerVariant2GlobalType? Type378 { get; set; }
+ public global::Braintrust.OnlineScoreConfigScorerVariant2Global? Type378 { get; set; }
///
///
///
- public global::Braintrust.ProjectScoreConfig? Type379 { get; set; }
+ public global::Braintrust.OnlineScoreConfigScorerVariant2GlobalType? Type379 { get; set; }
///
///
///
- public global::Braintrust.ProjectScore? Type380 { get; set; }
+ public global::Braintrust.ProjectScoreConfig? Type380 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectScore? Type381 { get; set; }
+ public global::Braintrust.ProjectScore? Type381 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectScore? Type382 { get; set; }
+ public global::Braintrust.CreateProjectScore? Type382 { get; set; }
///
///
///
- public global::Braintrust.ProjectTag? Type383 { get; set; }
+ public global::Braintrust.PatchProjectScore? Type383 { get; set; }
///
///
///
- public global::Braintrust.CreateProjectTag? Type384 { get; set; }
+ public global::Braintrust.ProjectTag? Type384 { get; set; }
///
///
///
- public global::Braintrust.PatchProjectTag? Type385 { get; set; }
+ public global::Braintrust.CreateProjectTag? Type385 { get; set; }
///
///
///
- public global::Braintrust.SpanIFrame? Type386 { get; set; }
+ public global::Braintrust.PatchProjectTag? Type386 { get; set; }
///
///
///
- public global::Braintrust.CreateSpanIFrame? Type387 { get; set; }
+ public global::Braintrust.SpanIFrame? Type387 { get; set; }
///
///
///
- public global::Braintrust.PatchSpanIFrame? Type388 { get; set; }
+ public global::Braintrust.CreateSpanIFrame? Type388 { get; set; }
///
///
///
- public global::Braintrust.CodeBundle? Type389 { get; set; }
+ public global::Braintrust.PatchSpanIFrame? Type389 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleRuntimeContext? Type390 { get; set; }
+ public global::Braintrust.CodeBundle? Type390 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleRuntimeContextRuntime? Type391 { get; set; }
+ public global::Braintrust.CodeBundleRuntimeContext? Type391 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type392 { get; set; }
+ public global::Braintrust.CodeBundleRuntimeContextRuntime? Type392 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationExperiment? Type393 { get; set; }
+ public global::Braintrust.AnyOf? Type393 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationExperimentType? Type394 { get; set; }
+ public global::Braintrust.CodeBundleLocationExperiment? Type394 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type395 { get; set; }
+ public global::Braintrust.CodeBundleLocationExperimentType? Type395 { get; set; }
///
///
///
@@ -1628,675 +1628,675 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Braintrust.CodeBundleLocationFunction? Type400 { get; set; }
+ public global::Braintrust.CodeBundleLocationExperimentPositionClassifier? Type400 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationFunctionType? Type401 { get; set; }
+ public global::Braintrust.CodeBundleLocationExperimentPositionClassifierType? Type401 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationVariant3? Type402 { get; set; }
+ public global::Braintrust.CodeBundleLocationFunction? Type402 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationVariant3Type? Type403 { get; set; }
+ public global::Braintrust.CodeBundleLocationFunctionType? Type403 { get; set; }
///
///
///
- public global::Braintrust.OneOf? Type404 { get; set; }
+ public global::Braintrust.CodeBundleLocationVariant3? Type404 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant1? Type405 { get; set; }
+ public global::Braintrust.CodeBundleLocationVariant3Type? Type405 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant1Provider? Type406 { get; set; }
+ public global::Braintrust.OneOf? Type406 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant2? Type407 { get; set; }
+ public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant1? Type407 { get; set; }
///
///
///
- public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant2Provider? Type408 { get; set; }
+ public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant1Provider? Type408 { get; set; }
///
///
///
- public global::Braintrust.PromptBlockData? Type409 { get; set; }
+ public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant2? Type409 { get; set; }
///
///
///
- public global::Braintrust.PromptBlockDataChat? Type410 { get; set; }
+ public global::Braintrust.CodeBundleLocationVariant3SandboxSpecVariant2Provider? Type410 { get; set; }
///
///
///
- public global::Braintrust.PromptBlockDataChatType? Type411 { get; set; }
+ public global::Braintrust.PromptBlockData? Type411 { get; set; }
///
///
///
- public global::Braintrust.PromptBlockDataCompletion? Type412 { get; set; }
+ public global::Braintrust.PromptBlockDataChat? Type412 { get; set; }
///
///
///
- public global::Braintrust.PromptBlockDataCompletionType? Type413 { get; set; }
+ public global::Braintrust.PromptBlockDataChatType? Type413 { get; set; }
///
///
///
- public global::Braintrust.GraphNode? Type414 { get; set; }
+ public global::Braintrust.PromptBlockDataCompletion? Type414 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant1? Type415 { get; set; }
+ public global::Braintrust.PromptBlockDataCompletionType? Type415 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant1Position? Type416 { get; set; }
+ public global::Braintrust.GraphNode? Type416 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant1Type? Type417 { get; set; }
+ public global::Braintrust.GraphNodeVariant1? Type417 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant2? Type418 { get; set; }
+ public global::Braintrust.GraphNodeVariant1Position? Type418 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant2Position? Type419 { get; set; }
+ public global::Braintrust.GraphNodeVariant1Type? Type419 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant2Type? Type420 { get; set; }
+ public global::Braintrust.GraphNodeVariant2? Type420 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant3? Type421 { get; set; }
+ public global::Braintrust.GraphNodeVariant2Position? Type421 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant3Position? Type422 { get; set; }
+ public global::Braintrust.GraphNodeVariant2Type? Type422 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant3Type? Type423 { get; set; }
+ public global::Braintrust.GraphNodeVariant3? Type423 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant4? Type424 { get; set; }
+ public global::Braintrust.GraphNodeVariant3Position? Type424 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant4Position? Type425 { get; set; }
+ public global::Braintrust.GraphNodeVariant3Type? Type425 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant4Type? Type426 { get; set; }
+ public global::Braintrust.GraphNodeVariant4? Type426 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant5? Type427 { get; set; }
+ public global::Braintrust.GraphNodeVariant4Position? Type427 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant5Position? Type428 { get; set; }
+ public global::Braintrust.GraphNodeVariant4Type? Type428 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant5Type? Type429 { get; set; }
+ public global::Braintrust.GraphNodeVariant5? Type429 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant6? Type430 { get; set; }
+ public global::Braintrust.GraphNodeVariant5Position? Type430 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant6Position? Type431 { get; set; }
+ public global::Braintrust.GraphNodeVariant5Type? Type431 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant6Type? Type432 { get; set; }
+ public global::Braintrust.GraphNodeVariant6? Type432 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant7? Type433 { get; set; }
+ public global::Braintrust.GraphNodeVariant6Position? Type433 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant7Position? Type434 { get; set; }
+ public global::Braintrust.GraphNodeVariant6Type? Type434 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant7Type? Type435 { get; set; }
+ public global::Braintrust.GraphNodeVariant7? Type435 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant8? Type436 { get; set; }
+ public global::Braintrust.GraphNodeVariant7Position? Type436 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant8Position? Type437 { get; set; }
+ public global::Braintrust.GraphNodeVariant7Type? Type437 { get; set; }
///
///
///
- public global::Braintrust.GraphNodeVariant8Type? Type438 { get; set; }
+ public global::Braintrust.GraphNodeVariant8? Type438 { get; set; }
///
///
///
- public global::Braintrust.GraphEdge? Type439 { get; set; }
+ public global::Braintrust.GraphNodeVariant8Position? Type439 { get; set; }
///
///
///
- public global::Braintrust.GraphEdgeSource? Type440 { get; set; }
+ public global::Braintrust.GraphNodeVariant8Type? Type440 { get; set; }
///
///
///
- public global::Braintrust.GraphEdgeTarget? Type441 { get; set; }
+ public global::Braintrust.GraphEdge? Type441 { get; set; }
///
///
///
- public global::Braintrust.GraphEdgePurpose? Type442 { get; set; }
+ public global::Braintrust.GraphEdgeSource? Type442 { get; set; }
///
///
///
- public global::Braintrust.GraphData? Type443 { get; set; }
+ public global::Braintrust.GraphEdgeTarget? Type443 { get; set; }
///
///
///
- public global::Braintrust.GraphDataType? Type444 { get; set; }
+ public global::Braintrust.GraphEdgePurpose? Type444 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type445 { get; set; }
+ public global::Braintrust.GraphData? Type445 { get; set; }
///
///
///
- public global::Braintrust.FacetData? Type446 { get; set; }
+ public global::Braintrust.GraphDataType? Type446 { get; set; }
///
///
///
- public global::Braintrust.FacetDataType? Type447 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type447 { get; set; }
///
///
///
- public global::Braintrust.AllOf? Type448 { get; set; }
+ public global::Braintrust.FacetData? Type448 { get; set; }
///
///
///
- public global::Braintrust.TopicMapGenerationSettings? Type449 { get; set; }
+ public global::Braintrust.FacetDataType? Type449 { get; set; }
///
///
///
- public global::Braintrust.TopicMapGenerationSettingsAlgorithm? Type450 { get; set; }
+ public global::Braintrust.AllOf? Type450 { get; set; }
///
///
///
- public global::Braintrust.TopicMapGenerationSettingsDimensionReduction? Type451 { get; set; }
+ public global::Braintrust.TopicMapGenerationSettings? Type451 { get; set; }
///
///
///
- public global::Braintrust.TopicMapData? Type452 { get; set; }
+ public global::Braintrust.TopicMapGenerationSettingsAlgorithm? Type452 { get; set; }
///
///
///
- public global::Braintrust.TopicMapDataType? Type453 { get; set; }
+ public global::Braintrust.TopicMapGenerationSettingsDimensionReduction? Type453 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type454 { get; set; }
+ public global::Braintrust.TopicMapData? Type454 { get; set; }
///
///
///
- public global::Braintrust.BatchedFacetData? Type455 { get; set; }
+ public global::Braintrust.TopicMapDataType? Type455 { get; set; }
///
///
///
- public global::Braintrust.BatchedFacetDataType? Type456 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type456 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type457 { get; set; }
+ public global::Braintrust.BatchedFacetData? Type457 { get; set; }
///
///
///
- public global::Braintrust.BatchedFacetDataFacet? Type458 { get; set; }
+ public global::Braintrust.BatchedFacetDataType? Type458 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary>? Type459 { get; set; }
+ public global::System.Collections.Generic.IList? Type459 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type460 { get; set; }
+ public global::Braintrust.BatchedFacetDataFacet? Type460 { get; set; }
///
///
///
- public global::Braintrust.BatchedFacetDataTopicMap? Type461 { get; set; }
+ public global::System.Collections.Generic.Dictionary>? Type461 { get; set; }
///
///
///
- public global::Braintrust.FunctionData? Type462 { get; set; }
+ public global::System.Collections.Generic.IList? Type462 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataPrompt? Type463 { get; set; }
+ public global::Braintrust.BatchedFacetDataTopicMap? Type463 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataPromptType? Type464 { get; set; }
+ public global::Braintrust.FunctionData? Type464 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCode? Type465 { get; set; }
+ public global::Braintrust.FunctionDataPrompt? Type465 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeType? Type466 { get; set; }
+ public global::Braintrust.FunctionDataPromptType? Type466 { get; set; }
///
///
///
- public global::Braintrust.AnyOf?, global::Braintrust.FunctionDataCodeData2>? Type467 { get; set; }
+ public global::Braintrust.FunctionDataCode? Type467 { get; set; }
///
///
///
- public global::Braintrust.AllOf? Type468 { get; set; }
+ public global::Braintrust.FunctionDataCodeType? Type468 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeData? Type469 { get; set; }
+ public global::Braintrust.AnyOf?, global::Braintrust.FunctionDataCodeData2>? Type469 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeDataType? Type470 { get; set; }
+ public global::Braintrust.AllOf? Type470 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeData2? Type471 { get; set; }
+ public global::Braintrust.FunctionDataCodeData? Type471 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeDataType2? Type472 { get; set; }
+ public global::Braintrust.FunctionDataCodeDataType? Type472 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeDataRuntimeContext? Type473 { get; set; }
+ public global::Braintrust.FunctionDataCodeData2? Type473 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataCodeDataRuntimeContextRuntime? Type474 { get; set; }
+ public global::Braintrust.FunctionDataCodeDataType2? Type474 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataRemoteEval? Type475 { get; set; }
+ public global::Braintrust.FunctionDataCodeDataRuntimeContext? Type475 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataRemoteEvalType? Type476 { get; set; }
+ public global::Braintrust.FunctionDataCodeDataRuntimeContextRuntime? Type476 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataGlobal? Type477 { get; set; }
+ public global::Braintrust.FunctionDataRemoteEval? Type477 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataGlobalType? Type478 { get; set; }
+ public global::Braintrust.FunctionDataRemoteEvalType? Type478 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataParameters? Type479 { get; set; }
+ public global::Braintrust.FunctionDataGlobal? Type479 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataParametersType? Type480 { get; set; }
+ public global::Braintrust.FunctionDataGlobalType? Type480 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataParametersSchema? Type481 { get; set; }
+ public global::Braintrust.FunctionDataParameters? Type481 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataParametersSchemaType? Type482 { get; set; }
+ public global::Braintrust.FunctionDataParametersType? Type482 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary>? Type483 { get; set; }
+ public global::Braintrust.FunctionDataParametersSchema? Type483 { get; set; }
///
///
///
- public global::Braintrust.AllOf? Type484 { get; set; }
+ public global::Braintrust.FunctionDataParametersSchemaType? Type484 { get; set; }
///
///
///
- public global::Braintrust.Function2? Type485 { get; set; }
+ public global::System.Collections.Generic.Dictionary>? Type485 { get; set; }
///
///
///
- public global::Braintrust.FunctionLogId? Type486 { get; set; }
+ public global::Braintrust.AllOf? Type486 { get; set; }
///
///
///
- public global::Braintrust.FunctionOrigin? Type487 { get; set; }
+ public global::Braintrust.Function2? Type487 { get; set; }
///
///
///
- public global::Braintrust.FunctionFunctionSchema? Type488 { get; set; }
+ public global::Braintrust.FunctionLogId? Type488 { get; set; }
///
///
///
- public global::Braintrust.CreateFunction? Type489 { get; set; }
+ public global::Braintrust.FunctionOrigin? Type489 { get; set; }
///
///
///
- public global::Braintrust.CreateFunctionOrigin? Type490 { get; set; }
+ public global::Braintrust.FunctionFunctionSchema? Type490 { get; set; }
///
///
///
- public global::Braintrust.CreateFunctionFunctionSchema? Type491 { get; set; }
+ public global::Braintrust.CreateFunction? Type491 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullish? Type492 { get; set; }
+ public global::Braintrust.CreateFunctionOrigin? Type492 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishPrompt? Type493 { get; set; }
+ public global::Braintrust.CreateFunctionFunctionSchema? Type493 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishPromptType? Type494 { get; set; }
+ public global::Braintrust.FunctionDataNullish? Type494 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCode? Type495 { get; set; }
+ public global::Braintrust.FunctionDataNullishPrompt? Type495 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeType? Type496 { get; set; }
+ public global::Braintrust.FunctionDataNullishPromptType? Type496 { get; set; }
///
///
///
- public global::Braintrust.AnyOf?, global::Braintrust.FunctionDataNullishCodeData2>? Type497 { get; set; }
+ public global::Braintrust.FunctionDataNullishCode? Type497 { get; set; }
///
///
///
- public global::Braintrust.AllOf? Type498 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeType? Type498 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeData? Type499 { get; set; }
+ public global::Braintrust.AnyOf?, global::Braintrust.FunctionDataNullishCodeData2>? Type499 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeDataType? Type500 { get; set; }
+ public global::Braintrust.AllOf? Type500 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeData2? Type501 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeData? Type501 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeDataType2? Type502 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeDataType? Type502 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeDataRuntimeContext? Type503 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeData2? Type503 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishCodeDataRuntimeContextRuntime? Type504 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeDataType2? Type504 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishRemoteEval? Type505 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeDataRuntimeContext? Type505 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishRemoteEvalType? Type506 { get; set; }
+ public global::Braintrust.FunctionDataNullishCodeDataRuntimeContextRuntime? Type506 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishGlobal? Type507 { get; set; }
+ public global::Braintrust.FunctionDataNullishRemoteEval? Type507 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishGlobalType? Type508 { get; set; }
+ public global::Braintrust.FunctionDataNullishRemoteEvalType? Type508 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishParameters? Type509 { get; set; }
+ public global::Braintrust.FunctionDataNullishGlobal? Type509 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishParametersType? Type510 { get; set; }
+ public global::Braintrust.FunctionDataNullishGlobalType? Type510 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishParametersSchema? Type511 { get; set; }
+ public global::Braintrust.FunctionDataNullishParameters? Type511 { get; set; }
///
///
///
- public global::Braintrust.FunctionDataNullishParametersSchemaType? Type512 { get; set; }
+ public global::Braintrust.FunctionDataNullishParametersType? Type512 { get; set; }
///
///
///
- public global::Braintrust.PatchFunction? Type513 { get; set; }
+ public global::Braintrust.FunctionDataNullishParametersSchema? Type513 { get; set; }
///
///
///
- public global::Braintrust.InvokeParent? Type514 { get; set; }
+ public global::Braintrust.FunctionDataNullishParametersSchemaType? Type514 { get; set; }
///
///
///
- public global::Braintrust.InvokeParentSpanParentStruct? Type515 { get; set; }
+ public global::Braintrust.PatchFunction? Type515 { get; set; }
///
///
///
- public global::Braintrust.InvokeParentSpanParentStructObjectType? Type516 { get; set; }
+ public global::Braintrust.InvokeParent? Type516 { get; set; }
///
///
///
- public global::Braintrust.InvokeParentSpanParentStructRowIds? Type517 { get; set; }
+ public global::Braintrust.InvokeParentSpanParentStruct? Type517 { get; set; }
///
///
///
- public global::Braintrust.StreamingMode? Type518 { get; set; }
+ public global::Braintrust.InvokeParentSpanParentStructObjectType? Type518 { get; set; }
///
///
///
- public global::Braintrust.InvokeApi? Type519 { get; set; }
+ public global::Braintrust.InvokeParentSpanParentStructRowIds? Type519 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type520 { get; set; }
+ public global::Braintrust.StreamingMode? Type520 { get; set; }
///
///
///
- public global::Braintrust.InvokeApiMcpAuth2? Type521 { get; set; }
+ public global::Braintrust.InvokeApi? Type521 { get; set; }
///
///
///
- public global::Braintrust.ViewDataSearch? Type522 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type522 { get; set; }
///
///
///
- public global::Braintrust.ViewData? Type523 { get; set; }
+ public global::Braintrust.InvokeApiMcpAuth2? Type523 { get; set; }
///
///
///
- public global::Braintrust.ViewOptions? Type524 { get; set; }
+ public global::Braintrust.ViewDataSearch? Type524 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsMonitorViewOptions? Type525 { get; set; }
+ public global::Braintrust.ViewData? Type525 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsMonitorViewOptionsViewType? Type526 { get; set; }
+ public global::Braintrust.ViewOptions? Type526 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsMonitorViewOptionsOptions? Type527 { get; set; }
+ public global::Braintrust.ViewOptionsMonitorViewOptions? Type527 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsMonitorViewOptionsOptionsSpanType? Type528 { get; set; }
+ public global::Braintrust.ViewOptionsMonitorViewOptionsViewType? Type528 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type529 { get; set; }
+ public global::Braintrust.ViewOptionsMonitorViewOptionsOptions? Type529 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsMonitorViewOptionsOptionsType? Type530 { get; set; }
+ public global::Braintrust.ViewOptionsMonitorViewOptionsOptionsSpanType? Type530 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptions? Type531 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type531 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type532 { get; set; }
+ public global::Braintrust.ViewOptionsMonitorViewOptionsOptionsType? Type532 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsExcludedMeasure? Type533 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptions? Type533 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsExcludedMeasureType? Type534 { get; set; }
+ public global::System.Collections.Generic.IList? Type534 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsYMetric? Type535 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsExcludedMeasure? Type535 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsYMetricType? Type536 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsExcludedMeasureType? Type536 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsXAxis? Type537 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsYMetric? Type537 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsXAxisType? Type538 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsYMetricType? Type538 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsSymbolGrouping? Type539 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsXAxis? Type539 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsSymbolGroupingType? Type540 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsXAxisType? Type540 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type541 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsSymbolGrouping? Type541 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsChartAnnotation? Type542 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsSymbolGroupingType? Type542 { get; set; }
///
///
///
- public global::Braintrust.AnyOf? Type543 { get; set; }
+ public global::System.Collections.Generic.IList? Type543 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsTimeRangeFilter? Type544 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsChartAnnotation? Type544 { get; set; }
///
///
///
- public global::Braintrust.ViewOptionsTableViewOptionsQueryShape? Type545 { get; set; }
+ public global::Braintrust.AnyOf? Type545 { get; set; }
///
///
///
- public global::Braintrust.View? Type546 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsTimeRangeFilter? Type546 { get; set; }
///
///
///
- public global::Braintrust.ViewViewType? Type547 { get; set; }
+ public global::Braintrust.ViewOptionsTableViewOptionsQueryShape? Type547 { get; set; }
///
///
///
- public global::Braintrust.CreateView? Type548 { get; set; }
+ public global::Braintrust.View? Type548 { get; set; }
///
///
///
- public global::Braintrust.CreateViewViewType? Type549 { get; set; }
+ public global::Braintrust.ViewViewType? Type549 { get; set; }
///
///
///
- public global::Braintrust.PatchView? Type550 { get; set; }
+ public global::Braintrust.CreateView? Type550 { get; set; }
///
///
///
- public global::Braintrust.PatchViewViewType? Type551 { get; set; }
+ public global::Braintrust.CreateViewViewType? Type551 { get; set; }
///
///
///
- public global::Braintrust.DeleteView? Type552 { get; set; }
+ public global::Braintrust.PatchView? Type552 { get; set; }
///
///
///
- public global::Braintrust.ImageRenderingMode? Type553 { get; set; }
+ public global::Braintrust.PatchViewViewType? Type553 { get; set; }
///
///
///
- public global::Braintrust.Organization? Type554 { get; set; }
+ public global::Braintrust.DeleteView? Type554 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganization? Type555 { get; set; }
+ public global::Braintrust.ImageRenderingMode? Type555 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembersOutput? Type556 { get; set; }
+ public global::Braintrust.Organization? Type556 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembersOutputStatus? Type557 { get; set; }
+ public global::Braintrust.PatchOrganization? Type557 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type558 { get; set; }
+ public global::Braintrust.PatchOrganizationMembersOutput? Type558 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembersOutputAddedUser? Type559 { get; set; }
+ public global::Braintrust.PatchOrganizationMembersOutputStatus? Type559 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembers? Type560 { get; set; }
+ public global::System.Collections.Generic.IList? Type560 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembersInviteUsers? Type561 { get; set; }
+ public global::Braintrust.PatchOrganizationMembersOutputAddedUser? Type561 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type562 { get; set; }
+ public global::Braintrust.PatchOrganizationMembers? Type562 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembersInviteUsersServiceAccount? Type563 { get; set; }
+ public global::Braintrust.PatchOrganizationMembersInviteUsers? Type563 { get; set; }
///
///
///
- public global::Braintrust.PatchOrganizationMembersRemoveUsers? Type564 { get; set; }
+ public global::System.Collections.Generic.IList? Type564 { get; set; }
///
///
///
- public global::Braintrust.CreateApiKeyOutput? Type565 { get; set; }
+ public global::Braintrust.PatchOrganizationMembersInviteUsersServiceAccount? Type565 { get; set; }
///
///
///
- public global::Braintrust.ApiKey? Type566 { get; set; }
+ public global::Braintrust.PatchOrganizationMembersRemoveUsers? Type566 { get; set; }
///
///
///
- public global::Braintrust.CreateServiceTokenOutput? Type567 { get; set; }
+ public global::Braintrust.ApiKey? Type567 { get; set; }
///
///
///
@@ -2568,235 +2568,223 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Braintrust.PostApiKeyRequest? Type635 { get; set; }
+ public global::Braintrust.PostEnvVarRequest? Type635 { get; set; }
///
///
///
- public global::Braintrust.PostServiceTokenRequest? Type636 { get; set; }
+ public global::Braintrust.PostEnvVarRequestObjectType? Type636 { get; set; }
///
///
///
- public global::Braintrust.PutServiceTokenRequest? Type637 { get; set; }
+ public global::Braintrust.PutEnvVarRequest? Type637 { get; set; }
///
///
///
- public global::Braintrust.PostEnvVarRequest? Type638 { get; set; }
+ public global::Braintrust.PutEnvVarRequestObjectType? Type638 { get; set; }
///
///
///
- public global::Braintrust.PostEnvVarRequestObjectType? Type639 { get; set; }
+ public global::Braintrust.PatchEnvVarIdRequest? Type639 { get; set; }
///
///
///
- public global::Braintrust.PutEnvVarRequest? Type640 { get; set; }
+ public global::Braintrust.ProxycredentialsRequest? Type640 { get; set; }
///
///
///
- public global::Braintrust.PutEnvVarRequestObjectType? Type641 { get; set; }
+ public global::Braintrust.ProxycredentialsRequestLogging? Type641 { get; set; }
///
///
///
- public global::Braintrust.PatchEnvVarIdRequest? Type642 { get; set; }
+ public global::Braintrust.AnyOf>>? Type642 { get; set; }
///
///
///
- public global::Braintrust.ProxycredentialsRequest? Type643 { get; set; }
+ public global::System.Collections.Generic.IList>? Type643 { get; set; }
///
///
///
- public global::Braintrust.ProxycredentialsRequestLogging? Type644 { get; set; }
+ public global::Braintrust.AllOf? Type644 { get; set; }
///
///
///
- public global::Braintrust.AnyOf>>? Type645 { get; set; }
+ public global::Braintrust.AnyOf>? Type645 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type646 { get; set; }
+ public global::Braintrust.GetProjectResponse? Type646 { get; set; }
///
///
///
- public global::Braintrust.AllOf? Type647 { get; set; }
+ public global::System.Collections.Generic.IList? Type647 { get; set; }
///
///
///
- public global::Braintrust.AnyOf>? Type648 { get; set; }
+ public global::Braintrust.GetExperimentResponse? Type648 { get; set; }
///
///
///
- public global::Braintrust.GetProjectResponse? Type649 { get; set; }
+ public global::System.Collections.Generic.IList? Type649 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type650 { get; set; }
+ public global::Braintrust.GetDatasetResponse? Type650 { get; set; }
///
///
///
- public global::Braintrust.GetExperimentResponse? Type651 { get; set; }
+ public global::System.Collections.Generic.IList? Type651 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type652 { get; set; }
+ public global::Braintrust.GetPromptResponse? Type652 { get; set; }
///
///
///
- public global::Braintrust.GetDatasetResponse? Type653 { get; set; }
+ public global::System.Collections.Generic.IList? Type653 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type654 { get; set; }
+ public global::Braintrust.GetRoleResponse? Type654 { get; set; }
///
///
///
- public global::Braintrust.GetPromptResponse? Type655 { get; set; }
+ public global::System.Collections.Generic.IList? Type655 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type656 { get; set; }
+ public global::Braintrust.GetGroupResponse? Type656 { get; set; }
///
///
///
- public global::Braintrust.GetRoleResponse? Type657 { get; set; }
+ public global::System.Collections.Generic.IList? Type657 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type658 { get; set; }
+ public global::Braintrust.GetAclResponse? Type658 { get; set; }
///
///
///
- public global::Braintrust.GetGroupResponse? Type659 { get; set; }
+ public global::Braintrust.GetUserResponse? Type659 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type660 { get; set; }
+ public global::System.Collections.Generic.IList? Type660 { get; set; }
///
///
///
- public global::Braintrust.GetAclResponse? Type661 { get; set; }
+ public global::Braintrust.GetProjectAutomationResponse? Type661 { get; set; }
///
///
///
- public global::Braintrust.GetUserResponse? Type662 { get; set; }
+ public global::System.Collections.Generic.IList? Type662 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type663 { get; set; }
+ public global::Braintrust.GetProjectScoreResponse? Type663 { get; set; }
///
///
///
- public global::Braintrust.GetProjectAutomationResponse? Type664 { get; set; }
+ public global::System.Collections.Generic.IList? Type664 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type665 { get; set; }
+ public global::Braintrust.GetProjectTagResponse? Type665 { get; set; }
///
///
///
- public global::Braintrust.GetProjectScoreResponse? Type666 { get; set; }
+ public global::System.Collections.Generic.IList? Type666 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type667 { get; set; }
+ public global::Braintrust.GetSpanIframeResponse? Type667 { get; set; }
///
///
///
- public global::Braintrust.GetProjectTagResponse? Type668 { get; set; }
+ public global::System.Collections.Generic.IList? Type668 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type669 { get; set; }
+ public global::Braintrust.GetFunctionResponse? Type669 { get; set; }
///
///
///
- public global::Braintrust.GetSpanIframeResponse? Type670 { get; set; }
+ public global::System.Collections.Generic.IList? Type670 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type671 { get; set; }
+ public global::Braintrust.GetViewResponse? Type671 { get; set; }
///
///
///
- public global::Braintrust.GetFunctionResponse? Type672 { get; set; }
+ public global::System.Collections.Generic.IList? Type672 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type673 { get; set; }
+ public global::Braintrust.GetOrganizationResponse? Type673 { get; set; }
///
///
///
- public global::Braintrust.GetViewResponse? Type674 { get; set; }
+ public global::System.Collections.Generic.IList? Type674 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type675 { get; set; }
+ public global::Braintrust.GetApiKeyResponse? Type675 { get; set; }
///
///
///
- public global::Braintrust.GetOrganizationResponse? Type676 { get; set; }
+ public global::System.Collections.Generic.IList? Type676 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type677 { get; set; }
+ public global::Braintrust.GetServiceTokenResponse? Type677 { get; set; }
///
///
///
- public global::Braintrust.GetApiKeyResponse? Type678 { get; set; }
+ public global::System.Collections.Generic.IList? Type678 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type679 { get; set; }
+ public global::Braintrust.GetAiSecretResponse? Type679 { get; set; }
///
///
///
- public global::Braintrust.GetServiceTokenResponse? Type680 { get; set; }
+ public global::System.Collections.Generic.IList? Type680 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type681 { get; set; }
+ public global::Braintrust.GetEnvVarResponse? Type681 { get; set; }
///
///
///
- public global::Braintrust.GetAiSecretResponse? Type682 { get; set; }
+ public global::System.Collections.Generic.IList? Type682 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type683 { get; set; }
+ public global::Braintrust.GetMcpServerResponse? Type683 { get; set; }
///
///
///
- public global::Braintrust.GetEnvVarResponse? Type684 { get; set; }
+ public global::System.Collections.Generic.IList? Type684 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type685 { get; set; }
+ public global::Braintrust.GetDatasetSnapshotResponse? Type685 { get; set; }
///
///
///
- public global::Braintrust.GetMcpServerResponse? Type686 { get; set; }
+ public global::System.Collections.Generic.IList? Type686 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type687 { get; set; }
+ public global::Braintrust.ListEnvironmentsResponse? Type687 { get; set; }
///
///
///
- public global::Braintrust.GetDatasetSnapshotResponse? Type688 { get; set; }
+ public global::System.Collections.Generic.IList? Type688 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type689 { get; set; }
- ///
- ///
- ///
- public global::Braintrust.ListEnvironmentsResponse? Type690 { get; set; }
- ///
- ///
- ///
- public global::System.Collections.Generic.IList? Type691 { get; set; }
- ///
- ///
- ///
- public global::Braintrust.ProxycredentialsResponse? Type692 { get; set; }
+ public global::Braintrust.ProxycredentialsResponse? Type689 { get; set; }
///
///
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.AISecret.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.AISecret.g.cs
index b062f28..1895558 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.AISecret.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.AISecret.g.cs
@@ -27,6 +27,12 @@ public sealed partial class AISecret
[global::System.Text.Json.Serialization.JsonPropertyName("updated_at")]
public global::System.DateTime? UpdatedAt { get; set; }
+ ///
+ /// Date of last update to the encrypted secret value itself
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("secret_updated_at")]
+ public global::System.DateTime? SecretUpdatedAt { get; set; }
+
///
/// Unique identifier for the organization
///
@@ -53,6 +59,12 @@ public sealed partial class AISecret
[global::System.Text.Json.Serialization.JsonPropertyName("metadata")]
public global::System.Collections.Generic.Dictionary? Metadata { get; set; }
+ ///
+ /// User id of the last update to the encrypted secret value
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("secret_updated_by_user_id")]
+ public global::System.Guid? SecretUpdatedByUserId { get; set; }
+
///
///
///
@@ -83,8 +95,14 @@ public sealed partial class AISecret
///
/// Date of last AI secret update
///
+ ///
+ /// Date of last update to the encrypted secret value itself
+ ///
///
///
+ ///
+ /// User id of the last update to the encrypted secret value
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -95,17 +113,21 @@ public AISecret(
string name,
global::System.DateTime? created,
global::System.DateTime? updatedAt,
+ global::System.DateTime? secretUpdatedAt,
string? type,
global::System.Collections.Generic.Dictionary? metadata,
+ global::System.Guid? secretUpdatedByUserId,
string? previewSecret)
{
this.Id = id;
this.Created = created;
this.UpdatedAt = updatedAt;
+ this.SecretUpdatedAt = secretUpdatedAt;
this.OrgId = orgId;
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Type = type;
this.Metadata = metadata;
+ this.SecretUpdatedByUserId = secretUpdatedByUserId;
this.PreviewSecret = previewSecret;
}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.ChatCompletionMessageParamAssistant.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.ChatCompletionMessageParamAssistant.g.cs
index 2595b3a..37333e0 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.ChatCompletionMessageParamAssistant.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.ChatCompletionMessageParamAssistant.g.cs
@@ -46,6 +46,12 @@ public sealed partial class ChatCompletionMessageParamAssistant
[global::System.Text.Json.Serialization.JsonPropertyName("reasoning")]
public global::System.Collections.Generic.IList? Reasoning { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("reasoning_signature")]
+ public string? ReasoningSignature { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -61,6 +67,7 @@ public sealed partial class ChatCompletionMessageParamAssistant
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -70,7 +77,8 @@ public ChatCompletionMessageParamAssistant(
global::Braintrust.ChatCompletionMessageParamAssistantFunctionCall? functionCall,
string? name,
global::System.Collections.Generic.IList? toolCalls,
- global::System.Collections.Generic.IList? reasoning)
+ global::System.Collections.Generic.IList? reasoning,
+ string? reasoningSignature)
{
this.Role = role;
this.Content = content;
@@ -78,6 +86,7 @@ public ChatCompletionMessageParamAssistant(
this.Name = name;
this.ToolCalls = toolCalls;
this.Reasoning = reasoning;
+ this.ReasoningSignature = reasoningSignature;
}
///
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperiment.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperiment.g.cs
index f0a2681..f2ea771 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperiment.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperiment.g.cs
@@ -26,9 +26,9 @@ public sealed partial class CodeBundleLocationExperiment
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("position")]
- [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Braintrust.JsonConverters.AnyOfJsonConverter))]
[global::System.Text.Json.Serialization.JsonRequired]
- public required global::Braintrust.AnyOf Position { get; set; }
+ public required global::Braintrust.AnyOf Position { get; set; }
///
/// Additional properties that are not explicitly defined in the schema
@@ -47,7 +47,7 @@ public sealed partial class CodeBundleLocationExperiment
#endif
public CodeBundleLocationExperiment(
string evalName,
- global::Braintrust.AnyOf position,
+ global::Braintrust.AnyOf position,
global::Braintrust.CodeBundleLocationExperimentType type)
{
this.Type = type;
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CreateApiKeyOutput.Json.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifier.Json.g.cs
similarity index 82%
rename from src/libs/Braintrust/Generated/Braintrust.Models.CreateApiKeyOutput.Json.g.cs
rename to src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifier.Json.g.cs
index 97b3fa5..a76e3b8 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.CreateApiKeyOutput.Json.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifier.Json.g.cs
@@ -2,7 +2,7 @@
namespace Braintrust
{
- public sealed partial class CreateApiKeyOutput
+ public sealed partial class CodeBundleLocationExperimentPositionClassifier
{
///
/// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
@@ -34,14 +34,14 @@ public string ToJson(
///
/// Deserializes a JSON string using the provided JsonSerializerContext.
///
- public static global::Braintrust.CreateApiKeyOutput? FromJson(
+ public static global::Braintrust.CodeBundleLocationExperimentPositionClassifier? FromJson(
string json,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return global::System.Text.Json.JsonSerializer.Deserialize(
json,
- typeof(global::Braintrust.CreateApiKeyOutput),
- jsonSerializerContext) as global::Braintrust.CreateApiKeyOutput;
+ typeof(global::Braintrust.CodeBundleLocationExperimentPositionClassifier),
+ jsonSerializerContext) as global::Braintrust.CodeBundleLocationExperimentPositionClassifier;
}
///
@@ -51,11 +51,11 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
- public static global::Braintrust.CreateApiKeyOutput? FromJson(
+ public static global::Braintrust.CodeBundleLocationExperimentPositionClassifier? FromJson(
string json,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
- return global::System.Text.Json.JsonSerializer.Deserialize(
+ return global::System.Text.Json.JsonSerializer.Deserialize(
json,
jsonSerializerOptions);
}
@@ -63,14 +63,14 @@ public string ToJson(
///
/// Deserializes a JSON stream using the provided JsonSerializerContext.
///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
{
return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
jsonStream,
- typeof(global::Braintrust.CreateApiKeyOutput),
- jsonSerializerContext).ConfigureAwait(false)) as global::Braintrust.CreateApiKeyOutput;
+ typeof(global::Braintrust.CodeBundleLocationExperimentPositionClassifier),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Braintrust.CodeBundleLocationExperimentPositionClassifier;
}
///
@@ -80,11 +80,11 @@ public string ToJson(
[global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
[global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
global::System.IO.Stream jsonStream,
global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
{
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
jsonStream,
jsonSerializerOptions);
}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifier.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifier.g.cs
new file mode 100644
index 0000000..6f52ced
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifier.g.cs
@@ -0,0 +1,55 @@
+
+#nullable enable
+
+namespace Braintrust
+{
+ ///
+ ///
+ ///
+ public sealed partial class CodeBundleLocationExperimentPositionClassifier
+ {
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Braintrust.JsonConverters.CodeBundleLocationExperimentPositionClassifierTypeJsonConverter))]
+ public global::Braintrust.CodeBundleLocationExperimentPositionClassifierType Type { get; set; }
+
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("index")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required int Index { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public CodeBundleLocationExperimentPositionClassifier(
+ int index,
+ global::Braintrust.CodeBundleLocationExperimentPositionClassifierType type)
+ {
+ this.Type = type;
+ this.Index = index;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CodeBundleLocationExperimentPositionClassifier()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifierType.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifierType.g.cs
new file mode 100644
index 0000000..ac450bc
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.CodeBundleLocationExperimentPositionClassifierType.g.cs
@@ -0,0 +1,45 @@
+
+#nullable enable
+
+namespace Braintrust
+{
+ ///
+ ///
+ ///
+ public enum CodeBundleLocationExperimentPositionClassifierType
+ {
+ ///
+ ///
+ ///
+ Classifier,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class CodeBundleLocationExperimentPositionClassifierTypeExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this CodeBundleLocationExperimentPositionClassifierType value)
+ {
+ return value switch
+ {
+ CodeBundleLocationExperimentPositionClassifierType.Classifier => "classifier",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static CodeBundleLocationExperimentPositionClassifierType? ToEnum(string value)
+ {
+ return value switch
+ {
+ "classifier" => CodeBundleLocationExperimentPositionClassifierType.Classifier,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CreateApiKeyOutput.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CreateApiKeyOutput.g.cs
deleted file mode 100644
index 3ea1daa..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.CreateApiKeyOutput.g.cs
+++ /dev/null
@@ -1,147 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- ///
- ///
- ///
- public sealed partial class CreateApiKeyOutput
- {
- ///
- /// Unique identifier for the api key
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("id")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Guid Id { get; set; }
-
- ///
- /// Date of api key creation
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("created")]
- public global::System.DateTime? Created { get; set; }
-
- ///
- /// Name of the api key
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Name { get; set; }
-
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("preview_name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string PreviewName { get; set; }
-
- ///
- /// Unique identifier for the user
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("user_id")]
- public global::System.Guid? UserId { get; set; }
-
- ///
- /// The user's email
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("user_email")]
- public string? UserEmail { get; set; }
-
- ///
- /// Given name of the user
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("user_given_name")]
- public string? UserGivenName { get; set; }
-
- ///
- /// Family name of the user
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("user_family_name")]
- public string? UserFamilyName { get; set; }
-
- ///
- /// Unique identifier for the organization
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("org_id")]
- public global::System.Guid? OrgId { get; set; }
-
- ///
- /// The raw API key. It will only be exposed this one time
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("key")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Key { get; set; }
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- ///
- /// Initializes a new instance of the class.
- ///
- ///
- /// Unique identifier for the api key
- ///
- ///
- /// Name of the api key
- ///
- ///
- ///
- /// The raw API key. It will only be exposed this one time
- ///
- ///
- /// Date of api key creation
- ///
- ///
- /// Unique identifier for the user
- ///
- ///
- /// The user's email
- ///
- ///
- /// Given name of the user
- ///
- ///
- /// Family name of the user
- ///
- ///
- /// Unique identifier for the organization
- ///
-#if NET7_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
-#endif
- public CreateApiKeyOutput(
- global::System.Guid id,
- string name,
- string previewName,
- string key,
- global::System.DateTime? created,
- global::System.Guid? userId,
- string? userEmail,
- string? userGivenName,
- string? userFamilyName,
- global::System.Guid? orgId)
- {
- this.Id = id;
- this.Created = created;
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.PreviewName = previewName ?? throw new global::System.ArgumentNullException(nameof(previewName));
- this.UserId = userId;
- this.UserEmail = userEmail;
- this.UserGivenName = userGivenName;
- this.UserFamilyName = userFamilyName;
- this.OrgId = orgId;
- this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
- }
-
- ///
- /// Initializes a new instance of the class.
- ///
- public CreateApiKeyOutput()
- {
- }
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CreateServiceTokenOutput.Json.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CreateServiceTokenOutput.Json.g.cs
deleted file mode 100644
index c047437..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.CreateServiceTokenOutput.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public sealed partial class CreateServiceTokenOutput
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Braintrust.CreateServiceTokenOutput? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Braintrust.CreateServiceTokenOutput),
- jsonSerializerContext) as global::Braintrust.CreateServiceTokenOutput;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Braintrust.CreateServiceTokenOutput? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Braintrust.CreateServiceTokenOutput),
- jsonSerializerContext).ConfigureAwait(false)) as global::Braintrust.CreateServiceTokenOutput;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.CreateServiceTokenOutput.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.CreateServiceTokenOutput.g.cs
deleted file mode 100644
index 9f4668c..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.CreateServiceTokenOutput.g.cs
+++ /dev/null
@@ -1,136 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- ///
- ///
- ///
- public sealed partial class CreateServiceTokenOutput
- {
- ///
- /// Unique identifier for the service token
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("id")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Guid Id { get; set; }
-
- ///
- /// Date of service token creation
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("created")]
- public global::System.DateTime? Created { get; set; }
-
- ///
- /// Name of the service token
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Name { get; set; }
-
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("preview_name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string PreviewName { get; set; }
-
- ///
- /// Unique identifier for the service token
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("service_account_id")]
- public global::System.Guid? ServiceAccountId { get; set; }
-
- ///
- /// The service account email (not routable)
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("service_account_email")]
- public string? ServiceAccountEmail { get; set; }
-
- ///
- /// The service account name
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("service_account_name")]
- public string? ServiceAccountName { get; set; }
-
- ///
- /// Unique identifier for the organization
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("org_id")]
- public global::System.Guid? OrgId { get; set; }
-
- ///
- /// The raw service token. It will only be exposed this one time
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("key")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Key { get; set; }
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- ///
- /// Initializes a new instance of the class.
- ///
- ///
- /// Unique identifier for the service token
- ///
- ///
- /// Name of the service token
- ///
- ///
- ///
- /// The raw service token. It will only be exposed this one time
- ///
- ///
- /// Date of service token creation
- ///
- ///
- /// Unique identifier for the service token
- ///
- ///
- /// The service account email (not routable)
- ///
- ///
- /// The service account name
- ///
- ///
- /// Unique identifier for the organization
- ///
-#if NET7_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
-#endif
- public CreateServiceTokenOutput(
- global::System.Guid id,
- string name,
- string previewName,
- string key,
- global::System.DateTime? created,
- global::System.Guid? serviceAccountId,
- string? serviceAccountEmail,
- string? serviceAccountName,
- global::System.Guid? orgId)
- {
- this.Id = id;
- this.Created = created;
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.PreviewName = previewName ?? throw new global::System.ArgumentNullException(nameof(previewName));
- this.ServiceAccountId = serviceAccountId;
- this.ServiceAccountEmail = serviceAccountEmail;
- this.ServiceAccountName = serviceAccountName;
- this.OrgId = orgId;
- this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
- }
-
- ///
- /// Initializes a new instance of the class.
- ///
- public CreateServiceTokenOutput()
- {
- }
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.EnvVar.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.EnvVar.g.cs
index f4d204d..4068ba9 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.EnvVar.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.EnvVar.g.cs
@@ -43,6 +43,18 @@ public sealed partial class EnvVar
[global::System.Text.Json.Serialization.JsonPropertyName("created")]
public global::System.DateTime? Created { get; set; }
+ ///
+ /// Date of last update to the encrypted secret value itself
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("secret_updated_at")]
+ public global::System.DateTime? SecretUpdatedAt { get; set; }
+
+ ///
+ /// User id of the last update to the encrypted secret value
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("secret_updated_by_user_id")]
+ public global::System.Guid? SecretUpdatedByUserId { get; set; }
+
///
/// Date the environment variable was last used
///
@@ -55,6 +67,12 @@ public sealed partial class EnvVar
[global::System.Text.Json.Serialization.JsonPropertyName("metadata")]
public global::System.Collections.Generic.Dictionary? Metadata { get; set; }
+ ///
+ /// Redacted preview of the stored secret value
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("preview_secret")]
+ public string? PreviewSecret { get; set; }
+
///
/// Optional classification for the secret (for example, the AI provider name)
///
@@ -93,12 +111,21 @@ public sealed partial class EnvVar
///
/// Date of environment variable creation
///
+ ///
+ /// Date of last update to the encrypted secret value itself
+ ///
+ ///
+ /// User id of the last update to the encrypted secret value
+ ///
///
/// Date the environment variable was last used
///
///
/// Optional metadata associated with the environment variable when managed via the function secrets API
///
+ ///
+ /// Redacted preview of the stored secret value
+ ///
///
/// Optional classification for the secret (for example, the AI provider name)
///
@@ -115,8 +142,11 @@ public EnvVar(
global::System.Guid objectId,
string name,
global::System.DateTime? created,
+ global::System.DateTime? secretUpdatedAt,
+ global::System.Guid? secretUpdatedByUserId,
global::System.DateTime? used,
global::System.Collections.Generic.Dictionary? metadata,
+ string? previewSecret,
string? secretType,
global::Braintrust.EnvVarSecretCategory? secretCategory)
{
@@ -125,8 +155,11 @@ public EnvVar(
this.ObjectId = objectId;
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Created = created;
+ this.SecretUpdatedAt = secretUpdatedAt;
+ this.SecretUpdatedByUserId = secretUpdatedByUserId;
this.Used = used;
this.Metadata = metadata;
+ this.PreviewSecret = previewSecret;
this.SecretType = secretType;
this.SecretCategory = secretCategory;
}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.PostApiKeyRequest.Json.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.PostApiKeyRequest.Json.g.cs
deleted file mode 100644
index 83f24d8..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.PostApiKeyRequest.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public sealed partial class PostApiKeyRequest
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Braintrust.PostApiKeyRequest? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Braintrust.PostApiKeyRequest),
- jsonSerializerContext) as global::Braintrust.PostApiKeyRequest;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Braintrust.PostApiKeyRequest? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Braintrust.PostApiKeyRequest),
- jsonSerializerContext).ConfigureAwait(false)) as global::Braintrust.PostApiKeyRequest;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.PostApiKeyRequest.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.PostApiKeyRequest.g.cs
deleted file mode 100644
index 552e3ce..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.PostApiKeyRequest.g.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- ///
- ///
- ///
- public sealed partial class PostApiKeyRequest
- {
- ///
- /// Name of the api key. Does not have to be unique
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Name { get; set; }
-
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the API key belongs in.
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("org_name")]
- public string? OrgName { get; set; }
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- ///
- /// Initializes a new instance of the class.
- ///
- ///
- /// Name of the api key. Does not have to be unique
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the API key belongs in.
- ///
-#if NET7_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
-#endif
- public PostApiKeyRequest(
- string name,
- string? orgName)
- {
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.OrgName = orgName;
- }
-
- ///
- /// Initializes a new instance of the class.
- ///
- public PostApiKeyRequest()
- {
- }
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.PostServiceTokenRequest.Json.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.PostServiceTokenRequest.Json.g.cs
deleted file mode 100644
index 10d47ba..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.PostServiceTokenRequest.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public sealed partial class PostServiceTokenRequest
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Braintrust.PostServiceTokenRequest? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Braintrust.PostServiceTokenRequest),
- jsonSerializerContext) as global::Braintrust.PostServiceTokenRequest;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Braintrust.PostServiceTokenRequest? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Braintrust.PostServiceTokenRequest),
- jsonSerializerContext).ConfigureAwait(false)) as global::Braintrust.PostServiceTokenRequest;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.PostServiceTokenRequest.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.PostServiceTokenRequest.g.cs
deleted file mode 100644
index f4d695d..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.PostServiceTokenRequest.g.cs
+++ /dev/null
@@ -1,70 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- ///
- ///
- ///
- public sealed partial class PostServiceTokenRequest
- {
- ///
- /// Name of the service token. Does not have to be unique
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Name { get; set; }
-
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the Service token belongs in.
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("org_name")]
- public string? OrgName { get; set; }
-
- ///
- /// The service account ID this service token should belong to. You can create a service account in the Braintrust [organization settings page](https://www.braintrustdata.com/app/settings?subroute=service-tokens) or using the [modify organization membership endpoint](https://www.braintrust.dev/docs/api-reference/organizations/modify-organization-membership)
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("service_account_id")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string ServiceAccountId { get; set; }
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- ///
- /// Initializes a new instance of the class.
- ///
- ///
- /// Name of the service token. Does not have to be unique
- ///
- ///
- /// The service account ID this service token should belong to. You can create a service account in the Braintrust [organization settings page](https://www.braintrustdata.com/app/settings?subroute=service-tokens) or using the [modify organization membership endpoint](https://www.braintrust.dev/docs/api-reference/organizations/modify-organization-membership)
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the Service token belongs in.
- ///
-#if NET7_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
-#endif
- public PostServiceTokenRequest(
- string name,
- string serviceAccountId,
- string? orgName)
- {
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.OrgName = orgName;
- this.ServiceAccountId = serviceAccountId ?? throw new global::System.ArgumentNullException(nameof(serviceAccountId));
- }
-
- ///
- /// Initializes a new instance of the class.
- ///
- public PostServiceTokenRequest()
- {
- }
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.PutServiceTokenRequest.Json.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.PutServiceTokenRequest.Json.g.cs
deleted file mode 100644
index beb8c28..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.PutServiceTokenRequest.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Braintrust
-{
- public sealed partial class PutServiceTokenRequest
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Braintrust.PutServiceTokenRequest? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Braintrust.PutServiceTokenRequest),
- jsonSerializerContext) as global::Braintrust.PutServiceTokenRequest;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Braintrust.PutServiceTokenRequest? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Braintrust.PutServiceTokenRequest),
- jsonSerializerContext).ConfigureAwait(false)) as global::Braintrust.PutServiceTokenRequest;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.PutServiceTokenRequest.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.PutServiceTokenRequest.g.cs
deleted file mode 100644
index 6b04d96..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.Models.PutServiceTokenRequest.g.cs
+++ /dev/null
@@ -1,70 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- ///
- ///
- ///
- public sealed partial class PutServiceTokenRequest
- {
- ///
- /// Name of the service token. Does not have to be unique
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Name { get; set; }
-
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the Service token belongs in.
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("org_name")]
- public string? OrgName { get; set; }
-
- ///
- /// The service account ID this service token should belong to. You can create a service account in the Braintrust [organization settings page](https://www.braintrustdata.com/app/settings?subroute=service-tokens) or using the [modify organization membership endpoint](https://www.braintrust.dev/docs/api-reference/organizations/modify-organization-membership)
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("service_account_id")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string ServiceAccountId { get; set; }
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- ///
- /// Initializes a new instance of the class.
- ///
- ///
- /// Name of the service token. Does not have to be unique
- ///
- ///
- /// The service account ID this service token should belong to. You can create a service account in the Braintrust [organization settings page](https://www.braintrustdata.com/app/settings?subroute=service-tokens) or using the [modify organization membership endpoint](https://www.braintrust.dev/docs/api-reference/organizations/modify-organization-membership)
- ///
- ///
- /// For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, you may specify the name of the organization the Service token belongs in.
- ///
-#if NET7_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
-#endif
- public PutServiceTokenRequest(
- string name,
- string serviceAccountId,
- string? orgName)
- {
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.OrgName = orgName;
- this.ServiceAccountId = serviceAccountId ?? throw new global::System.ArgumentNullException(nameof(serviceAccountId));
- }
-
- ///
- /// Initializes a new instance of the class.
- ///
- public PutServiceTokenRequest()
- {
- }
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationConfig.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationConfig.g.cs
index 6d90408..1dea5db 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationConfig.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationConfig.g.cs
@@ -22,6 +22,13 @@ public sealed partial class TopicAutomationConfig
[global::System.Text.Json.Serialization.JsonRequired]
public required double SamplingRate { get; set; }
+ ///
+ /// Optional facet model override for topic automation
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("facet_model")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Braintrust.JsonConverters.TopicAutomationFacetModelJsonConverter))]
+ public global::Braintrust.TopicAutomationFacetModel? FacetModel { get; set; }
+
///
/// Facet functions used by the topic automation
///
@@ -96,6 +103,9 @@ public sealed partial class TopicAutomationConfig
///
/// The type of automation.
///
+ ///
+ /// Optional facet model override for topic automation
+ ///
///
/// Execution scope for topic automation. Defaults to span-level execution.
///
@@ -122,6 +132,7 @@ public TopicAutomationConfig(
global::System.Collections.Generic.IList?>> facetFunctions,
global::System.Collections.Generic.IList topicMapFunctions,
global::Braintrust.TopicAutomationConfigEventType eventType,
+ global::Braintrust.TopicAutomationFacetModel? facetModel,
global::Braintrust.AnyOf? scope,
global::Braintrust.TopicAutomationDataScope? dataScope,
string? btqlFilter,
@@ -131,6 +142,7 @@ public TopicAutomationConfig(
{
this.EventType = eventType;
this.SamplingRate = samplingRate;
+ this.FacetModel = facetModel;
this.FacetFunctions = facetFunctions ?? throw new global::System.ArgumentNullException(nameof(facetFunctions));
this.TopicMapFunctions = topicMapFunctions ?? throw new global::System.ArgumentNullException(nameof(topicMapFunctions));
this.Scope = scope;
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationFacetModel.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationFacetModel.g.cs
new file mode 100644
index 0000000..21f0f34
--- /dev/null
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.TopicAutomationFacetModel.g.cs
@@ -0,0 +1,57 @@
+
+#nullable enable
+
+namespace Braintrust
+{
+ ///
+ /// Optional facet model override for topic automation
+ ///
+ public enum TopicAutomationFacetModel
+ {
+ ///
+ ///
+ ///
+ BrainFacet1,
+ ///
+ ///
+ ///
+ BrainFacet2,
+ ///
+ ///
+ ///
+ BrainFacetLatest,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class TopicAutomationFacetModelExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this TopicAutomationFacetModel value)
+ {
+ return value switch
+ {
+ TopicAutomationFacetModel.BrainFacet1 => "brain-facet-1",
+ TopicAutomationFacetModel.BrainFacet2 => "brain-facet-2",
+ TopicAutomationFacetModel.BrainFacetLatest => "brain-facet-latest",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static TopicAutomationFacetModel? ToEnum(string value)
+ {
+ return value switch
+ {
+ "brain-facet-1" => TopicAutomationFacetModel.BrainFacet1,
+ "brain-facet-2" => TopicAutomationFacetModel.BrainFacet2,
+ "brain-facet-latest" => TopicAutomationFacetModel.BrainFacetLatest,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.TopicMapData.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.TopicMapData.g.cs
index 663783f..846e34b 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.TopicMapData.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.TopicMapData.g.cs
@@ -53,6 +53,12 @@ public sealed partial class TopicMapData
[global::System.Text.Json.Serialization.JsonPropertyName("generation_settings")]
public global::Braintrust.TopicMapGenerationSettings? GenerationSettings { get; set; }
+ ///
+ /// Whether new topic generation should ignore the previously saved report during reconciliation. Defaults to false when omitted.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("disable_reconciliation")]
+ public bool? DisableReconciliation { get; set; }
+
///
/// Maximum distance to nearest centroid. If exceeded, returns no_match.
///
@@ -87,6 +93,9 @@ public sealed partial class TopicMapData
///
/// Clustering and naming settings used to generate this topic map
///
+ ///
+ /// Whether new topic generation should ignore the previously saved report during reconciliation. Defaults to false when omitted.
+ ///
///
/// Maximum distance to nearest centroid. If exceeded, returns no_match.
///
@@ -101,6 +110,7 @@ public TopicMapData(
string? reportKey,
global::System.Collections.Generic.Dictionary? topicNames,
global::Braintrust.TopicMapGenerationSettings? generationSettings,
+ bool? disableReconciliation,
double? distanceThreshold)
{
this.Type = type;
@@ -110,6 +120,7 @@ public TopicMapData(
this.ReportKey = reportKey;
this.TopicNames = topicNames;
this.GenerationSettings = generationSettings;
+ this.DisableReconciliation = disableReconciliation;
this.DistanceThreshold = distanceThreshold;
}
diff --git a/src/libs/Braintrust/Generated/Braintrust.Models.User.g.cs b/src/libs/Braintrust/Generated/Braintrust.Models.User.g.cs
index c38fc00..901af9e 100644
--- a/src/libs/Braintrust/Generated/Braintrust.Models.User.g.cs
+++ b/src/libs/Braintrust/Generated/Braintrust.Models.User.g.cs
@@ -45,12 +45,6 @@ public sealed partial class User
[global::System.Text.Json.Serialization.JsonPropertyName("created")]
public global::System.DateTime? Created { get; set; }
- ///
- /// Unix timestamp in milliseconds of the user's last activity, when available
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("last_active_at")]
- public double? LastActiveAt { get; set; }
-
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -78,9 +72,6 @@ public sealed partial class User
///
/// Date of user creation
///
- ///
- /// Unix timestamp in milliseconds of the user's last activity, when available
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -90,8 +81,7 @@ public User(
string? familyName,
string? email,
string? avatarUrl,
- global::System.DateTime? created,
- double? lastActiveAt)
+ global::System.DateTime? created)
{
this.Id = id;
this.GivenName = givenName;
@@ -99,7 +89,6 @@ public User(
this.Email = email;
this.AvatarUrl = avatarUrl;
this.Created = created;
- this.LastActiveAt = lastActiveAt;
}
///
diff --git a/src/libs/Braintrust/Generated/Braintrust.ServiceTokensClient.PostServiceToken.g.cs b/src/libs/Braintrust/Generated/Braintrust.ServiceTokensClient.PostServiceToken.g.cs
deleted file mode 100644
index d10dde9..0000000
--- a/src/libs/Braintrust/Generated/Braintrust.ServiceTokensClient.PostServiceToken.g.cs
+++ /dev/null
@@ -1,675 +0,0 @@
-
-#nullable enable
-
-namespace Braintrust
-{
- public partial class ServiceTokensClient
- {
-
-
- private static readonly global::Braintrust.EndPointSecurityRequirement s_PostServiceTokenSecurityRequirement0 =
- new global::Braintrust.EndPointSecurityRequirement
- {
- Authorizations = new global::Braintrust.EndPointAuthorizationRequirement[]
- { new global::Braintrust.EndPointAuthorizationRequirement
- {
- Type = "Http",
- SchemeId = "BearerAuth",
- Location = "Header",
- Name = "Bearer",
- FriendlyName = "Bearer",
- },
- },
- };
-
- private static readonly global::Braintrust.EndPointSecurityRequirement s_PostServiceTokenSecurityRequirement1 =
- new global::Braintrust.EndPointSecurityRequirement
- {
- Authorizations = new global::Braintrust.EndPointAuthorizationRequirement[]
- {
- },
- };
- private static readonly global::Braintrust.EndPointSecurityRequirement[] s_PostServiceTokenSecurityRequirements =
- new global::Braintrust.EndPointSecurityRequirement[]
- { s_PostServiceTokenSecurityRequirement0,
- s_PostServiceTokenSecurityRequirement1,
- };
- partial void PreparePostServiceTokenArguments(
- global::System.Net.Http.HttpClient httpClient,
- global::Braintrust.PostServiceTokenRequest request);
- partial void PreparePostServiceTokenRequest(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpRequestMessage httpRequestMessage,
- global::Braintrust.PostServiceTokenRequest request);
- partial void ProcessPostServiceTokenResponse(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpResponseMessage httpResponseMessage);
-
- partial void ProcessPostServiceTokenResponseContent(
- global::System.Net.Http.HttpClient httpClient,
- global::System.Net.Http.HttpResponseMessage httpResponseMessage,
- ref string content);
-
- ///