diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProject.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProject.g.cs
index 34f5aa456..ac2f6ddba 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProject.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProject.g.cs
@@ -25,12 +25,16 @@ public partial interface IProjectsClient
///
/// Create the project with the specified data residency region. Your organization must have access to Data residency functionality in order to use. See [data residency controls](/docs/guides/your-data#data-residency-controls) to review the functionality and limitations of setting this field.
///
+ ///
+ /// External key ID to associate with the project.
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task CreateProjectAsync(
string name,
- global::tryAGI.OpenAI.ProjectCreateRequestGeography? geography = default,
+ string? geography = default,
+ string? externalKeyId = default,
global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectUser.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectUser.g.cs
index 4179fb36a..f7ebc0da1 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectUser.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectUser.g.cs
@@ -25,6 +25,9 @@ public partial interface IProjectsClient
///
/// The ID of the user.
///
+ ///
+ /// Email of the user to add.
+ ///
///
/// `owner` or `member`
///
@@ -33,8 +36,9 @@ public partial interface IProjectsClient
///
global::System.Threading.Tasks.Task CreateProjectUserAsync(
string projectId,
- string userId,
- global::tryAGI.OpenAI.ProjectUserCreateRequestRole role,
+ string role,
+ string? userId = default,
+ string? email = default,
global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProject.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProject.g.cs
index 6a395792e..6907634fc 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProject.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProject.g.cs
@@ -25,12 +25,20 @@ public partial interface IProjectsClient
///
/// The updated name of the project, this name appears in reports.
///
+ ///
+ /// External key ID to associate with the project.
+ ///
+ ///
+ /// Geography for the project.
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task ModifyProjectAsync(
string projectId,
- string name,
+ string? name = default,
+ string? externalKeyId = default,
+ string? geography = default,
global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProjectUser.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProjectUser.g.cs
index 37806374f..0518110d4 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProjectUser.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.ModifyProjectUser.g.cs
@@ -34,7 +34,7 @@ public partial interface IProjectsClient
global::System.Threading.Tasks.Task ModifyProjectUserAsync(
string projectId,
string userId,
- global::tryAGI.OpenAI.ProjectUserUpdateRequestRole role,
+ string? role = default,
global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IUsersClient.ModifyUser.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IUsersClient.ModifyUser.g.cs
index 1ee3de1bb..deafc8783 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IUsersClient.ModifyUser.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IUsersClient.ModifyUser.g.cs
@@ -25,12 +25,24 @@ public partial interface IUsersClient
///
/// `owner` or `reader`
///
+ ///
+ /// Role ID to assign to the user.
+ ///
+ ///
+ /// Technical level metadata.
+ ///
+ ///
+ /// Developer persona metadata.
+ ///
/// 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 ModifyUserAsync(
string userId,
- global::tryAGI.OpenAI.UserRoleUpdateRequestRole? role = default,
+ string? role = default,
+ string? roleId = default,
+ string? technicalLevel = default,
+ string? developerPersona = default,
global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.AdminApiKeyCreateResponse.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.AdminApiKeyCreateResponse.g.cs
index 6780eecaf..505213f4c 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.AdminApiKeyCreateResponse.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.AdminApiKeyCreateResponse.g.cs
@@ -48,7 +48,6 @@ public class AdminApiKeyCreateResponseJsonConverter : global::System.Text.Json.S
if (__jsonProps.Contains("owner.role")) __score0++;
if (__jsonProps.Contains("owner.type")) __score0++;
if (__jsonProps.Contains("redacted_value")) __score0++;
- if (__jsonProps.Contains("value")) __score0++;
var __score1 = 0;
if (__jsonProps.Contains("value")) __score1++;
var __bestScore = 0;
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeography.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeography.g.cs
deleted file mode 100644
index a0ee9500a..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeography.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectCreateRequestGeographyJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectCreateRequestGeography 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::tryAGI.OpenAI.ProjectCreateRequestGeographyExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectCreateRequestGeography)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectCreateRequestGeography);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectCreateRequestGeography value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.ProjectCreateRequestGeographyExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeographyNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeographyNullable.g.cs
deleted file mode 100644
index c93cb3b96..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeographyNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectCreateRequestGeographyNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectCreateRequestGeography? 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::tryAGI.OpenAI.ProjectCreateRequestGeographyExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectCreateRequestGeography)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectCreateRequestGeography?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectCreateRequestGeography? 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::tryAGI.OpenAI.ProjectCreateRequestGeographyExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectStatus.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectStatus.g.cs
deleted file mode 100644
index 3e381490e..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectStatus.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectStatus 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::tryAGI.OpenAI.ProjectStatusExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectStatus)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectStatus);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectStatus value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.ProjectStatusExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectStatusNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectStatusNullable.g.cs
deleted file mode 100644
index c005108d5..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectStatusNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectStatus? 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::tryAGI.OpenAI.ProjectStatusExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectStatus)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectStatus?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectStatus? 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::tryAGI.OpenAI.ProjectStatusExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRole.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRole.g.cs
deleted file mode 100644
index 16f13c864..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRole.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectUserCreateRequestRoleJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectUserCreateRequestRole 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::tryAGI.OpenAI.ProjectUserCreateRequestRoleExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectUserCreateRequestRole)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectUserCreateRequestRole);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectUserCreateRequestRole value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.ProjectUserCreateRequestRoleExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRoleNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRoleNullable.g.cs
deleted file mode 100644
index 8c874ca95..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRoleNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectUserCreateRequestRoleNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectUserCreateRequestRole? 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::tryAGI.OpenAI.ProjectUserCreateRequestRoleExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectUserCreateRequestRole)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectUserCreateRequestRole?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectUserCreateRequestRole? 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::tryAGI.OpenAI.ProjectUserCreateRequestRoleExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRole.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRole.g.cs
deleted file mode 100644
index fc4e164e1..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRole.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectUserUpdateRequestRoleJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectUserUpdateRequestRole 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::tryAGI.OpenAI.ProjectUserUpdateRequestRoleExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectUserUpdateRequestRole)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectUserUpdateRequestRole);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectUserUpdateRequestRole value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.ProjectUserUpdateRequestRoleExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRoleNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRoleNullable.g.cs
deleted file mode 100644
index 30fc268a5..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRoleNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class ProjectUserUpdateRequestRoleNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.ProjectUserUpdateRequestRole? 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::tryAGI.OpenAI.ProjectUserUpdateRequestRoleExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectUserUpdateRequestRole)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.ProjectUserUpdateRequestRole?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectUserUpdateRequestRole? 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::tryAGI.OpenAI.ProjectUserUpdateRequestRoleExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRole.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserProjectsObject.g.cs
similarity index 67%
rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRole.g.cs
rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserProjectsObject.g.cs
index c59c9fddb..3f5ea0468 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRole.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserProjectsObject.g.cs
@@ -3,10 +3,10 @@
namespace tryAGI.OpenAI.JsonConverters
{
///
- public sealed class UserRoleJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ public sealed class UserProjectsObjectJsonConverter : global::System.Text.Json.Serialization.JsonConverter
{
///
- public override global::tryAGI.OpenAI.UserRole Read(
+ public override global::tryAGI.OpenAI.UserProjectsObject Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -18,7 +18,7 @@ public sealed class UserRoleJsonConverter : global::System.Text.Json.Serializati
var stringValue = reader.GetString();
if (stringValue != null)
{
- return global::tryAGI.OpenAI.UserRoleExtensions.ToEnum(stringValue) ?? default;
+ return global::tryAGI.OpenAI.UserProjectsObjectExtensions.ToEnum(stringValue) ?? default;
}
break;
@@ -26,11 +26,11 @@ public sealed class UserRoleJsonConverter : global::System.Text.Json.Serializati
case global::System.Text.Json.JsonTokenType.Number:
{
var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.UserRole)numValue;
+ return (global::tryAGI.OpenAI.UserProjectsObject)numValue;
}
case global::System.Text.Json.JsonTokenType.Null:
{
- return default(global::tryAGI.OpenAI.UserRole);
+ return default(global::tryAGI.OpenAI.UserProjectsObject);
}
default:
throw new global::System.ArgumentOutOfRangeException(nameof(reader));
@@ -42,12 +42,12 @@ public sealed class UserRoleJsonConverter : global::System.Text.Json.Serializati
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.UserRole value,
+ global::tryAGI.OpenAI.UserProjectsObject value,
global::System.Text.Json.JsonSerializerOptions options)
{
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
- writer.WriteStringValue(global::tryAGI.OpenAI.UserRoleExtensions.ToValueString(value));
+ writer.WriteStringValue(global::tryAGI.OpenAI.UserProjectsObjectExtensions.ToValueString(value));
}
}
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserProjectsObjectNullable.g.cs
similarity index 72%
rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleNullable.g.cs
rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserProjectsObjectNullable.g.cs
index 66aa8c889..8bef3619f 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleNullable.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserProjectsObjectNullable.g.cs
@@ -3,10 +3,10 @@
namespace tryAGI.OpenAI.JsonConverters
{
///
- public sealed class UserRoleNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ public sealed class UserProjectsObjectNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
{
///
- public override global::tryAGI.OpenAI.UserRole? Read(
+ public override global::tryAGI.OpenAI.UserProjectsObject? Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -18,7 +18,7 @@ public sealed class UserRoleNullableJsonConverter : global::System.Text.Json.Ser
var stringValue = reader.GetString();
if (stringValue != null)
{
- return global::tryAGI.OpenAI.UserRoleExtensions.ToEnum(stringValue);
+ return global::tryAGI.OpenAI.UserProjectsObjectExtensions.ToEnum(stringValue);
}
break;
@@ -26,11 +26,11 @@ public sealed class UserRoleNullableJsonConverter : global::System.Text.Json.Ser
case global::System.Text.Json.JsonTokenType.Number:
{
var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.UserRole)numValue;
+ return (global::tryAGI.OpenAI.UserProjectsObject)numValue;
}
case global::System.Text.Json.JsonTokenType.Null:
{
- return default(global::tryAGI.OpenAI.UserRole?);
+ return default(global::tryAGI.OpenAI.UserProjectsObject?);
}
default:
throw new global::System.ArgumentOutOfRangeException(nameof(reader));
@@ -42,7 +42,7 @@ public sealed class UserRoleNullableJsonConverter : global::System.Text.Json.Ser
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.UserRole? value,
+ global::tryAGI.OpenAI.UserProjectsObject? value,
global::System.Text.Json.JsonSerializerOptions options)
{
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
@@ -53,7 +53,7 @@ public override void Write(
}
else
{
- writer.WriteStringValue(global::tryAGI.OpenAI.UserRoleExtensions.ToValueString(value.Value));
+ writer.WriteStringValue(global::tryAGI.OpenAI.UserProjectsObjectExtensions.ToValueString(value.Value));
}
}
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRole.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRole.g.cs
deleted file mode 100644
index 1a4158dda..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRole.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class UserRoleUpdateRequestRoleJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.UserRoleUpdateRequestRole 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::tryAGI.OpenAI.UserRoleUpdateRequestRoleExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.UserRoleUpdateRequestRole)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.UserRoleUpdateRequestRole);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.UserRoleUpdateRequestRole value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.UserRoleUpdateRequestRoleExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRoleNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRoleNullable.g.cs
deleted file mode 100644
index 0f5a2a1d6..000000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRoleNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class UserRoleUpdateRequestRoleNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.UserRoleUpdateRequestRole? 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::tryAGI.OpenAI.UserRoleUpdateRequestRoleExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.UserRoleUpdateRequestRole)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.UserRoleUpdateRequestRole?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.UserRoleUpdateRequestRole? 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::tryAGI.OpenAI.UserRoleUpdateRequestRoleExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserRole.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserUser1Object.g.cs
similarity index 71%
rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserRole.g.cs
rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserUser1Object.g.cs
index 3fbda58b4..382fbf19e 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserRole.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserUser1Object.g.cs
@@ -3,10 +3,10 @@
namespace tryAGI.OpenAI.JsonConverters
{
///
- public sealed class ProjectUserRoleJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ public sealed class UserUser1ObjectJsonConverter : global::System.Text.Json.Serialization.JsonConverter
{
///
- public override global::tryAGI.OpenAI.ProjectUserRole Read(
+ public override global::tryAGI.OpenAI.UserUser1Object Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -18,7 +18,7 @@ public sealed class ProjectUserRoleJsonConverter : global::System.Text.Json.Seri
var stringValue = reader.GetString();
if (stringValue != null)
{
- return global::tryAGI.OpenAI.ProjectUserRoleExtensions.ToEnum(stringValue) ?? default;
+ return global::tryAGI.OpenAI.UserUser1ObjectExtensions.ToEnum(stringValue) ?? default;
}
break;
@@ -26,11 +26,11 @@ public sealed class ProjectUserRoleJsonConverter : global::System.Text.Json.Seri
case global::System.Text.Json.JsonTokenType.Number:
{
var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectUserRole)numValue;
+ return (global::tryAGI.OpenAI.UserUser1Object)numValue;
}
case global::System.Text.Json.JsonTokenType.Null:
{
- return default(global::tryAGI.OpenAI.ProjectUserRole);
+ return default(global::tryAGI.OpenAI.UserUser1Object);
}
default:
throw new global::System.ArgumentOutOfRangeException(nameof(reader));
@@ -42,12 +42,12 @@ public sealed class ProjectUserRoleJsonConverter : global::System.Text.Json.Seri
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectUserRole value,
+ global::tryAGI.OpenAI.UserUser1Object value,
global::System.Text.Json.JsonSerializerOptions options)
{
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
- writer.WriteStringValue(global::tryAGI.OpenAI.ProjectUserRoleExtensions.ToValueString(value));
+ writer.WriteStringValue(global::tryAGI.OpenAI.UserUser1ObjectExtensions.ToValueString(value));
}
}
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserRoleNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserUser1ObjectNullable.g.cs
similarity index 73%
rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserRoleNullable.g.cs
rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserUser1ObjectNullable.g.cs
index 347d10b1a..ac3c8f12d 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ProjectUserRoleNullable.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.UserUser1ObjectNullable.g.cs
@@ -3,10 +3,10 @@
namespace tryAGI.OpenAI.JsonConverters
{
///
- public sealed class ProjectUserRoleNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ public sealed class UserUser1ObjectNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
{
///
- public override global::tryAGI.OpenAI.ProjectUserRole? Read(
+ public override global::tryAGI.OpenAI.UserUser1Object? Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -18,7 +18,7 @@ public sealed class ProjectUserRoleNullableJsonConverter : global::System.Text.J
var stringValue = reader.GetString();
if (stringValue != null)
{
- return global::tryAGI.OpenAI.ProjectUserRoleExtensions.ToEnum(stringValue);
+ return global::tryAGI.OpenAI.UserUser1ObjectExtensions.ToEnum(stringValue);
}
break;
@@ -26,11 +26,11 @@ public sealed class ProjectUserRoleNullableJsonConverter : global::System.Text.J
case global::System.Text.Json.JsonTokenType.Number:
{
var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.ProjectUserRole)numValue;
+ return (global::tryAGI.OpenAI.UserUser1Object)numValue;
}
case global::System.Text.Json.JsonTokenType.Null:
{
- return default(global::tryAGI.OpenAI.ProjectUserRole?);
+ return default(global::tryAGI.OpenAI.UserUser1Object?);
}
default:
throw new global::System.ArgumentOutOfRangeException(nameof(reader));
@@ -42,7 +42,7 @@ public sealed class ProjectUserRoleNullableJsonConverter : global::System.Text.J
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.ProjectUserRole? value,
+ global::tryAGI.OpenAI.UserUser1Object? value,
global::System.Text.Json.JsonSerializerOptions options)
{
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
@@ -53,7 +53,7 @@ public override void Write(
}
else
{
- writer.WriteStringValue(global::tryAGI.OpenAI.ProjectUserRoleExtensions.ToValueString(value.Value));
+ writer.WriteStringValue(global::tryAGI.OpenAI.UserUser1ObjectExtensions.ToValueString(value.Value));
}
}
}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs
index 20fdd0e08..1ff228286 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs
@@ -1457,10 +1457,6 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectObjectNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectStatusJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectStatusNullableJsonConverter),
-
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectApiKeyObjectJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectApiKeyObjectNullableJsonConverter),
@@ -1477,10 +1473,6 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectApiKeyListResponseObjectNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeographyJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectCreateRequestGeographyNullableJsonConverter),
-
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectGroupObjectJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectGroupObjectNullableJsonConverter),
@@ -1537,22 +1529,10 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserObjectNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserRoleJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserRoleNullableJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRoleJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserCreateRequestRoleNullableJsonConverter),
-
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserDeleteResponseObjectJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserDeleteResponseObjectNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRoleJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.ProjectUserUpdateRequestRoleNullableJsonConverter),
-
typeof(global::tryAGI.OpenAI.JsonConverters.PublicRoleListResourceObjectJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.PublicRoleListResourceObjectNullableJsonConverter),
@@ -3049,9 +3029,13 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.UserObjectNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.UserRoleJsonConverter),
+ typeof(global::tryAGI.OpenAI.JsonConverters.UserUser1ObjectJsonConverter),
+
+ typeof(global::tryAGI.OpenAI.JsonConverters.UserUser1ObjectNullableJsonConverter),
+
+ typeof(global::tryAGI.OpenAI.JsonConverters.UserProjectsObjectJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.UserRoleNullableJsonConverter),
+ typeof(global::tryAGI.OpenAI.JsonConverters.UserProjectsObjectNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.UserDeleteResponseObjectJsonConverter),
@@ -3069,10 +3053,6 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.UserRoleAssignmentObjectNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRoleJsonConverter),
-
- typeof(global::tryAGI.OpenAI.JsonConverters.UserRoleUpdateRequestRoleNullableJsonConverter),
-
typeof(global::tryAGI.OpenAI.JsonConverters.VadConfigTypeJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.VadConfigTypeNullableJsonConverter),
@@ -4769,8 +4749,8 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AdminApiKey))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AdminApiKeyObject), TypeInfoPropertyName = "AdminApiKeyObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(string))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(int))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(object))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(int))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AdminApiKeyOwner))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AdminApiKeyCreateResponse), TypeInfoPropertyName = "AdminApiKeyCreateResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AdminApiKeyCreateResponseVariant2))]
@@ -6005,7 +5985,6 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.PredictionContentType), TypeInfoPropertyName = "PredictionContentType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Project))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectObject), TypeInfoPropertyName = "ProjectObject2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectStatus), TypeInfoPropertyName = "ProjectStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectApiKey))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectApiKeyObject), TypeInfoPropertyName = "ProjectApiKeyObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectApiKeyOwner))]
@@ -6018,7 +5997,6 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectApiKeyListResponseObject), TypeInfoPropertyName = "ProjectApiKeyListResponseObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectCreateRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectCreateRequestGeography), TypeInfoPropertyName = "ProjectCreateRequestGeography2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectGroup))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectGroupObject), TypeInfoPropertyName = "ProjectGroupObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectGroupDeletedResource))]
@@ -6052,15 +6030,12 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUpdateRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUser))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserObject), TypeInfoPropertyName = "ProjectUserObject2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserRole), TypeInfoPropertyName = "ProjectUserRole2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserCreateRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserCreateRequestRole), TypeInfoPropertyName = "ProjectUserCreateRequestRole2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserDeleteResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserDeleteResponseObject), TypeInfoPropertyName = "ProjectUserDeleteResponseObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserListResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserUpdateRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectUserUpdateRequestRole), TypeInfoPropertyName = "ProjectUserUpdateRequestRole2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.PromptVariant1))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody))]
@@ -6949,7 +6924,12 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UsageVectorStoresResultObject), TypeInfoPropertyName = "UsageVectorStoresResultObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.User))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserObject), TypeInfoPropertyName = "UserObject2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRole), TypeInfoPropertyName = "UserRole2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserUser1))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserUser1Object), TypeInfoPropertyName = "UserUser1Object2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserProjects2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserProjectsObject), TypeInfoPropertyName = "UserProjectsObject2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserProjectsDataItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserDeleteResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserDeleteResponseObject), TypeInfoPropertyName = "UserDeleteResponseObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserListResource))]
@@ -6961,7 +6941,6 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleAssignment))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleAssignmentObject), TypeInfoPropertyName = "UserRoleAssignmentObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleUpdateRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleUpdateRequestRole), TypeInfoPropertyName = "UserRoleUpdateRequestRole2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VadConfigType), TypeInfoPropertyName = "VadConfigType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ValidateGraderRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ValidateGraderResponse))]
@@ -7722,6 +7701,7 @@ namespace tryAGI.OpenAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs
index 020b71138..dee93da8b 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs
@@ -48,11 +48,11 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public int? Type5 { get; set; }
+ public object? Type5 { get; set; }
///
///
///
- public object? Type6 { get; set; }
+ public int? Type6 { get; set; }
///
///
///
@@ -4952,3759 +4952,3759 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::tryAGI.OpenAI.ProjectStatus? Type1231 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKey? Type1231 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKey? Type1232 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1232 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1233 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1233 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1234 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1234 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1235 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyOwnerUser? Type1235 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyOwnerUser? Type1236 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyOwnerServiceAccount? Type1236 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyOwnerServiceAccount? Type1237 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1237 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1238 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1238 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1239 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1239 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1240 { get; set; }
+ public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1240 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1241 { get; set; }
+ public global::System.Collections.Generic.IList? Type1241 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1242 { get; set; }
+ public global::tryAGI.OpenAI.ProjectCreateRequest? Type1242 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectCreateRequest? Type1243 { get; set; }
+ public global::tryAGI.OpenAI.ProjectGroup? Type1243 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectCreateRequestGeography? Type1244 { get; set; }
+ public global::tryAGI.OpenAI.ProjectGroupObject? Type1244 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectGroup? Type1245 { get; set; }
+ public global::tryAGI.OpenAI.ProjectGroupDeletedResource? Type1245 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectGroupObject? Type1246 { get; set; }
+ public global::tryAGI.OpenAI.ProjectGroupDeletedResourceObject? Type1246 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectGroupDeletedResource? Type1247 { get; set; }
+ public global::tryAGI.OpenAI.ProjectGroupListResource? Type1247 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectGroupDeletedResourceObject? Type1248 { get; set; }
+ public global::tryAGI.OpenAI.ProjectGroupListResourceObject? Type1248 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectGroupListResource? Type1249 { get; set; }
+ public global::System.Collections.Generic.IList? Type1249 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectGroupListResourceObject? Type1250 { get; set; }
+ public global::tryAGI.OpenAI.ProjectListResponse? Type1250 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1251 { get; set; }
+ public global::tryAGI.OpenAI.ProjectListResponseObject? Type1251 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectListResponse? Type1252 { get; set; }
+ public global::System.Collections.Generic.IList? Type1252 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectListResponseObject? Type1253 { get; set; }
+ public global::tryAGI.OpenAI.ProjectRateLimit? Type1253 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1254 { get; set; }
+ public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1254 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectRateLimit? Type1255 { get; set; }
+ public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1255 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1256 { get; set; }
+ public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1256 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1257 { get; set; }
+ public global::System.Collections.Generic.IList? Type1257 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1258 { get; set; }
+ public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1258 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1259 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccount? Type1259 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1260 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1260 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccount? Type1261 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1261 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1262 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1262 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1263 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1263 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1264 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1264 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1265 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1265 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1266 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1266 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1267 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1267 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1268 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1268 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1269 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1269 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1270 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1270 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1271 { get; set; }
+ public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1271 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1272 { get; set; }
+ public global::System.Collections.Generic.IList? Type1272 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1273 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1273 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1274 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUser? Type1274 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1275 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUserObject? Type1275 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUser? Type1276 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1276 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserObject? Type1277 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1277 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserRole? Type1278 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1278 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1279 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUserListResponse? Type1279 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserCreateRequestRole? Type1280 { get; set; }
+ public global::System.Collections.Generic.IList? Type1280 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1281 { get; set; }
+ public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1281 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1282 { get; set; }
+ public global::tryAGI.OpenAI.PromptVariant1? Type1282 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserListResponse? Type1283 { get; set; }
+ public global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody? Type1283 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1284 { get; set; }
+ public global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody? Type1284 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1285 { get; set; }
+ public global::tryAGI.OpenAI.PublicRoleListResource? Type1285 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ProjectUserUpdateRequestRole? Type1286 { get; set; }
+ public global::tryAGI.OpenAI.PublicRoleListResourceObject? Type1286 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PromptVariant1? Type1287 { get; set; }
+ public global::System.Collections.Generic.IList? Type1287 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody? Type1288 { get; set; }
+ public global::tryAGI.OpenAI.PublicUpdateOrganizationRoleBody? Type1288 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody? Type1289 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1289 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PublicRoleListResource? Type1290 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormat? Type1290 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PublicRoleListResourceObject? Type1291 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormatType? Type1291 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1292 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormat? Type1292 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PublicUpdateOrganizationRoleBody? Type1293 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormatType? Type1293 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1294 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormat? Type1294 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormat? Type1295 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormatType? Type1295 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormatType? Type1296 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1296 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormat? Type1297 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1297 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormatType? Type1298 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItem? Type1298 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormat? Type1299 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1299 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormatType? Type1300 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1300 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1301 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1301 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1302 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1302 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItem? Type1303 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1303 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1304 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1304 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1305 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1305 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1306 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1306 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1307 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1307 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1308 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1308 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1309 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1309 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1310 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1310 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1311 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1311 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1312 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1312 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1313 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1313 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1314 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1314 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1315 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1315 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1316 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1316 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1317 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1317 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1318 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1318 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1319 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1319 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1320 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1320 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1321 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1321 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1322 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1322 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1323 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1323 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1324 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1324 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1325 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1325 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1326 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1326 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1327 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1327 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1328 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1328 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1329 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1329 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1330 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1330 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1331 { get; set; }
+ public global::System.Collections.Generic.IList? Type1331 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1332 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1332 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1333 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1333 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1334 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1334 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1335 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1335 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1336 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsShared? Type1336 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1337 { get; set; }
+ public global::System.Collections.Generic.IList? Type1337 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1338 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1338 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1339 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1339 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1340 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1340 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsShared? Type1341 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1341 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1342 { get; set; }
+ public global::System.Collections.Generic.IList? Type1342 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1343 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1343 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1344 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1344 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1345 { get; set; }
+ public global::System.Collections.Generic.IList? Type1345 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1346 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1346 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1347 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1347 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1348 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1348 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1349 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceOptions? Type1349 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1350 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceFunction? Type1350 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1351 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceMCP? Type1351 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1352 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1352 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1353 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1353 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceOptions? Type1354 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1354 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceFunction? Type1355 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1355 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceMCP? Type1356 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1356 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1357 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1357 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1358 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1358 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1359 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1359 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1360 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1360 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1361 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1361 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1362 { get; set; }
+ public global::System.Collections.Generic.IList? Type1362 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1363 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1363 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1364 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1364 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1365 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1365 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1366 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1366 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1367 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1367 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1368 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1368 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1369 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1369 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1370 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1370 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1371 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1371 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1372 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1372 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1373 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1373 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1374 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1374 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1375 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1375 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1376 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1376 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1377 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1377 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1378 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1378 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1379 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1379 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1380 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1380 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1381 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1381 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1382 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1382 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1383 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1383 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1384 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1384 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1385 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1385 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1386 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1386 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1387 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1387 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1388 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1388 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1389 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1389 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1390 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1390 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1391 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1391 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1392 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1392 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1393 { get; set; }
+ public global::System.Collections.Generic.IList? Type1393 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1394 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1394 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1395 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1395 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1396 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1396 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1397 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1397 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1398 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1398 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1399 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1399 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1400 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1400 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1401 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1401 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1402 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1402 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1403 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1403 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1404 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1404 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1405 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1405 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1406 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1406 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1407 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1407 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1408 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1408 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1409 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1409 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1410 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1410 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1411 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1411 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1412 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1412 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1413 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1413 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1414 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1414 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1415 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1415 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1416 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1416 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1417 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1417 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1418 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1418 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1419 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1419 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1420 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1420 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1421 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1421 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1422 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1422 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1423 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1423 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1424 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1424 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1425 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1425 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1426 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1426 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1427 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1427 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1428 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1428 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1429 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1429 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1430 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1430 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1431 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1431 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1432 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1432 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1433 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1433 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1434 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1434 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1435 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1435 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1436 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1436 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1437 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1437 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1438 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1438 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1439 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1439 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1440 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSession? Type1440 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1441 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1441 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1442 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1442 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1443 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1443 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1444 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1444 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSession? Type1445 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1445 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1446 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1446 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1447 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1447 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1448 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCallCreateRequest? Type1448 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1449 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1449 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1450 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCallReferRequest? Type1450 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1451 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCallRejectRequest? Type1451 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1452 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEvent? Type1452 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCallCreateRequest? Type1453 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1453 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1454 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1454 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCallReferRequest? Type1455 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1455 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCallRejectRequest? Type1456 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1456 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEvent? Type1457 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1457 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1458 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1458 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1459 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1459 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1460 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1460 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1461 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1461 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1462 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1462 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1463 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1463 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1464 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1464 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1465 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1465 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1466 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1466 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1467 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1467 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1468 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1468 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1469 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1469 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1470 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1470 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1471 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1471 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1472 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1472 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1473 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1473 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1474 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1474 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1475 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1475 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1476 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1476 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1477 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1477 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1478 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1478 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1479 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1479 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1480 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1480 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1481 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1481 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1482 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1482 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1483 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1483 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1484 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1484 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1485 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1485 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1486 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1486 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1487 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1487 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1488 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1488 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1489 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1489 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1490 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminator? Type1490 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1491 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1491 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1492 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1492 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1493 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1493 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1494 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1494 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminator? Type1495 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1495 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1496 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1496 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1497 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1497 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1498 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1498 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1499 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1499 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1500 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1500 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1501 { get; set; }
+ public global::System.Collections.Generic.IList? Type1501 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1502 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1502 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1503 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1503 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1504 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1504 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1505 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1505 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1506 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1506 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1507 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1507 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1508 { get; set; }
+ public global::System.Collections.Generic.IList? Type1508 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1509 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1509 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1510 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1510 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1511 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1511 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1512 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1512 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1513 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1513 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1514 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1514 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1515 { get; set; }
+ public global::System.Collections.Generic.IList? Type1515 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1516 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1516 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1517 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1517 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1518 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1518 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1519 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1519 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1520 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1520 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1521 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1521 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1522 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1522 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1523 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1523 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1524 { get; set; }
+ public global::System.Collections.Generic.IList? Type1524 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1525 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1525 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1526 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1526 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1527 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1527 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1528 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1528 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1529 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1529 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1530 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1530 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1531 { get; set; }
+ public global::tryAGI.OpenAI.Session2? Type1531 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1532 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1532 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1533 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1533 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1534 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1534 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1535 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1535 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Session2? Type1536 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1536 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1537 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1537 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1538 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1538 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1539 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1539 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1540 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1540 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1541 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1541 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1542 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1542 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1543 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1543 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1544 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1544 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1545 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1545 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1546 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1546 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1547 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1547 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1548 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponse? Type1548 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1549 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseObject? Type1549 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1550 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1550 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1551 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseStatusDetails? Type1551 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1552 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsType? Type1552 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponse? Type1553 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsReason? Type1553 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseObject? Type1554 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsError? Type1554 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1555 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseAudio? Type1555 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseStatusDetails? Type1556 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseAudioOutput? Type1556 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsType? Type1557 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1557 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsReason? Type1558 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetails? Type1558 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsError? Type1559 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetailsCachedTokensDetails? Type1559 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseAudio? Type1560 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseUsageOutputTokenDetails? Type1560 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseAudioOutput? Type1561 { get; set; }
+ public global::System.Collections.Generic.IList? Type1561 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1562 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseOutputModalitie? Type1562 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetails? Type1563 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1563 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetailsCachedTokensDetails? Type1564 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseMaxOutputTokens? Type1564 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseUsageOutputTokenDetails? Type1565 { get; set; }
+ public global::System.Collections.Generic.IList? Type1565 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1566 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1566 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseOutputModalitie? Type1567 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1567 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1568 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1568 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseMaxOutputTokens? Type1569 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1569 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1570 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1570 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1571 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1571 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1572 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1572 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1573 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1573 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1574 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1574 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1575 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEvent? Type1575 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1576 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1576 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1577 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1577 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1578 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1578 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1579 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1579 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEvent? Type1580 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1580 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1581 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1581 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1582 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1582 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1583 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1583 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1584 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventError? Type1584 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1585 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1585 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1586 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1586 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1587 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type1587 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1588 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1588 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventError? Type1589 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1589 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1590 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1590 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1591 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1591 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type1592 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1592 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1593 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1593 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1594 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1594 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1595 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1595 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1596 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1596 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1597 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1597 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1598 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1598 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1599 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1599 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1600 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1600 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1601 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1601 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1602 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1602 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1603 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1603 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1604 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1604 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1605 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1605 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1606 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1606 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1607 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1607 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1608 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1608 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1609 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1609 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1610 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1610 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1611 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1611 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1612 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1612 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1613 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1613 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1614 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1614 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1615 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1615 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1616 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1616 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1617 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1617 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1618 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1618 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1619 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1619 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1620 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1620 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1621 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1621 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1622 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventDiscriminator? Type1622 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1623 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1623 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1624 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1624 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1625 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1625 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1626 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1626 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventDiscriminator? Type1627 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1627 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1628 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1628 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1629 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1629 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1630 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1630 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1631 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1631 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1632 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1632 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1633 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1633 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1634 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1634 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1635 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1635 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1636 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1636 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1637 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1637 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1638 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1638 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1639 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1639 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1640 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type1640 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1641 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1641 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1642 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1642 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1643 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1643 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1644 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1644 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type1645 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1645 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1646 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1646 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1647 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1647 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1648 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1648 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1649 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1649 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1650 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1650 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1651 { get; set; }
+ public global::System.Collections.Generic.IList? Type1651 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1652 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1652 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1653 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1653 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1654 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1654 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1655 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1655 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1656 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1656 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1657 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1657 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1658 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1658 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1659 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1659 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1660 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1660 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1661 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1661 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1662 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1662 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1663 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1663 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1664 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1664 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1665 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1665 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1666 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1666 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1667 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1667 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1668 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1668 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1669 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1669 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1670 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1670 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1671 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1671 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1672 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1672 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1673 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1673 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1674 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1674 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1675 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1675 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1676 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1676 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1677 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1677 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1678 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1678 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1679 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1679 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1680 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1680 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1681 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionObject? Type1681 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1682 { get; set; }
+ public global::System.Collections.Generic.IList? Type1682 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1683 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionModalitie? Type1683 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1684 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1684 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1685 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionModel? Type1685 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionObject? Type1686 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionInputAudioFormat? Type1686 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1687 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionOutputAudioFormat? Type1687 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionModalitie? Type1688 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1? Type1688 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1689 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionInputAudioNoiseReduction? Type1689 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionModel? Type1690 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1690 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionInputAudioFormat? Type1691 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum? Type1691 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionOutputAudioFormat? Type1692 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum2? Type1692 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1? Type1693 { get; set; }
+ public global::System.Collections.Generic.IList? Type1693 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionInputAudioNoiseReduction? Type1694 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1694 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1695 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionMaxResponseOutputTokens? Type1695 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum? Type1696 { get; set; }
+ public global::System.Collections.Generic.IList? Type1696 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum2? Type1697 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionIncludeVariant1Item? Type1697 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1698 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1698 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1699 { get; set; }
+ public global::System.Collections.Generic.IList? Type1699 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionMaxResponseOutputTokens? Type1700 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1700 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1701 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1701 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionIncludeVariant1Item? Type1702 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1702 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1703 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1703 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1704 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1704 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1705 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1705 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1706 { get; set; }
+ public global::System.Collections.Generic.IList? Type1706 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1707 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1707 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1708 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1708 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1709 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1709 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1710 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1710 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1711 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTruncation? Type1711 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1712 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1712 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1713 { get; set; }
+ public global::System.Collections.Generic.IList? Type1713 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1714 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1714 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1715 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1715 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTruncation? Type1716 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1716 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1717 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1717 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1718 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1718 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1719 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1719 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1720 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1720 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1721 { get; set; }
+ public global::System.Collections.Generic.IList? Type1721 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1722 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1722 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1723 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1723 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1724 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1724 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1725 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1725 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1726 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1726 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1727 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1727 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1728 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1728 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1729 { get; set; }
+ public global::System.Collections.Generic.IList? Type1729 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1730 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type1730 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1731 { get; set; }
+ public global::System.Collections.Generic.IList? Type1731 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1732 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type1732 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1733 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1733 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1734 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type1734 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type1735 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type1735 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1736 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type1736 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type1737 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type1737 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1738 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1738 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type1739 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type1739 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type1740 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type1740 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type1741 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type1741 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type1742 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1742 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1743 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type1743 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type1744 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAClientSecret? Type1744 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type1745 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1745 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type1746 { get; set; }
+ public global::System.Collections.Generic.IList? Type1746 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1747 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1747 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type1748 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1748 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAClientSecret? Type1749 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1749 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1750 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1750 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1751 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1751 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1752 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1752 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1753 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1753 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1754 { get; set; }
+ public global::System.Collections.Generic.IList? Type1754 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1755 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1755 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1756 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type1756 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1757 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type1757 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1758 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1758 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1759 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1759 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1760 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1760 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type1761 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1761 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type1762 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1762 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1763 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1763 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1764 { get; set; }
+ public global::System.Collections.Generic.IList? Type1764 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1765 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1765 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1766 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1766 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1767 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1767 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1768 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1768 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1769 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1769 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1770 { get; set; }
+ public global::System.Collections.Generic.IList? Type1770 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1771 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1771 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1772 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1772 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1773 { get; set; }
+ public global::System.Collections.Generic.IList? Type1773 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1774 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1774 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1775 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1775 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1776 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1776 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1777 { get; set; }
+ public global::System.Collections.Generic.IList? Type1777 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1778 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1778 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1779 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1779 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1780 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1780 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1781 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1781 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1782 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection? Type1782 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1783 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1783 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1784 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1784 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1785 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1785 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1786 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTruncationEnumTokenLimits? Type1786 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection? Type1787 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type1787 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1788 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type1788 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1789 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type1789 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1790 { get; set; }
+ public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type1790 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTruncationEnumTokenLimits? Type1791 { get; set; }
+ public global::tryAGI.OpenAI.Reasoning? Type1791 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type1792 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningSummary2? Type1792 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type1793 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1793 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type1794 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningItemType? Type1794 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type1795 { get; set; }
+ public global::System.Collections.Generic.IList? Type1795 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Reasoning? Type1796 { get; set; }
+ public global::tryAGI.OpenAI.SummaryTextContent? Type1796 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningSummary2? Type1797 { get; set; }
+ public global::System.Collections.Generic.IList? Type1797 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1798 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningItemStatus? Type1798 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningItemType? Type1799 { get; set; }
+ public global::tryAGI.OpenAI.Response? Type1799 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1800 { get; set; }
+ public global::tryAGI.OpenAI.ResponseVariant3? Type1800 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SummaryTextContent? Type1801 { get; set; }
+ public global::tryAGI.OpenAI.ResponseVariant3Object? Type1801 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1802 { get; set; }
+ public global::tryAGI.OpenAI.ResponseVariant3Status? Type1802 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningItemStatus? Type1803 { get; set; }
+ public global::tryAGI.OpenAI.ResponseErrorVariant1? Type1803 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Response? Type1804 { get; set; }
+ public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? Type1804 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseVariant3? Type1805 { get; set; }
+ public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type1805 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseVariant3Object? Type1806 { get; set; }
+ public global::System.Collections.Generic.IList? Type1806 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseVariant3Status? Type1807 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>? Type1807 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseErrorVariant1? Type1808 { get; set; }
+ public global::tryAGI.OpenAI.ResponseUsage? Type1808 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? Type1809 { get; set; }
+ public global::tryAGI.OpenAI.Conversation22? Type1809 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type1810 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type1810 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1811 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type1811 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>? Type1812 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type1812 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseUsage? Type1813 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type1813 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Conversation22? Type1814 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type1814 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type1815 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type1815 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type1816 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type1816 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type1817 { get; set; }
+ public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type1817 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type1818 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type1818 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type1819 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type1819 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type1820 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type1820 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type1821 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type1821 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type1822 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type1822 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type1823 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type1823 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type1824 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type1824 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type1825 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type1825 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type1826 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type1826 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type1827 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type1827 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type1828 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCompletedEvent? Type1828 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type1829 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCompletedEventType? Type1829 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type1830 { get; set; }
+ public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type1830 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type1831 { get; set; }
+ public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type1831 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type1832 { get; set; }
+ public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type1832 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCompletedEvent? Type1833 { get; set; }
+ public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type1833 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCompletedEventType? Type1834 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCreatedEvent? Type1834 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type1835 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCreatedEventType? Type1835 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type1836 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type1836 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type1837 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type1837 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type1838 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type1838 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCreatedEvent? Type1839 { get; set; }
+ public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type1839 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCreatedEventType? Type1840 { get; set; }
+ public global::tryAGI.OpenAI.ResponseErrorCode? Type1840 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type1841 { get; set; }
+ public global::tryAGI.OpenAI.ResponseErrorEvent? Type1841 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type1842 { get; set; }
+ public global::tryAGI.OpenAI.ResponseErrorEventType? Type1842 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type1843 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFailedEvent? Type1843 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type1844 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFailedEventType? Type1844 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseErrorCode? Type1845 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type1845 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseErrorEvent? Type1846 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type1846 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseErrorEventType? Type1847 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type1847 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFailedEvent? Type1848 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type1848 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFailedEventType? Type1849 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type1849 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type1850 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type1850 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type1851 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatJsonObjectType? Type1851 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type1852 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatJsonSchemaType? Type1852 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type1853 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatJsonSchemaJsonSchema? Type1853 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type1854 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatJsonSchemaSchema? Type1854 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type1855 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatTextType? Type1855 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatJsonObjectType? Type1856 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type1856 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatJsonSchemaType? Type1857 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type1857 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatJsonSchemaJsonSchema? Type1858 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatTextPython? Type1858 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatJsonSchemaSchema? Type1859 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type1859 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatTextType? Type1860 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type1860 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type1861 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type1861 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type1862 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type1862 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatTextPython? Type1863 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type1863 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type1864 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type1864 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type1865 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type1865 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type1866 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type1866 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type1867 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type1867 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type1868 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type1868 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type1869 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type1869 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type1870 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type1870 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type1871 { get; set; }
+ public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type1871 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type1872 { get; set; }
+ public global::tryAGI.OpenAI.ResponseInProgressEvent? Type1872 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type1873 { get; set; }
+ public global::tryAGI.OpenAI.ResponseInProgressEventType? Type1873 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type1874 { get; set; }
+ public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type1874 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type1875 { get; set; }
+ public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type1875 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type1876 { get; set; }
+ public global::tryAGI.OpenAI.ResponseItemList? Type1876 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseInProgressEvent? Type1877 { get; set; }
+ public global::tryAGI.OpenAI.ResponseItemListObject? Type1877 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseInProgressEventType? Type1878 { get; set; }
+ public global::System.Collections.Generic.IList? Type1878 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type1879 { get; set; }
+ public global::tryAGI.OpenAI.ResponseLogProb? Type1879 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type1880 { get; set; }
+ public global::System.Collections.Generic.IList? Type1880 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseItemList? Type1881 { get; set; }
+ public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type1881 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseItemListObject? Type1882 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type1882 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1883 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type1883 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseLogProb? Type1884 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type1884 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1885 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type1885 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type1886 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type1886 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type1887 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type1887 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type1888 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type1888 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type1889 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type1889 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type1890 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type1890 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type1891 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type1891 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type1892 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type1892 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type1893 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type1893 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type1894 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type1894 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type1895 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type1895 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type1896 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type1896 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type1897 { get; set; }
+ public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type1897 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type1898 { get; set; }
+ public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type1898 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type1899 { get; set; }
+ public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type1899 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type1900 { get; set; }
+ public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type1900 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type1901 { get; set; }
+ public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type1901 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type1902 { get; set; }
+ public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type1902 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type1903 { get; set; }
+ public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type1903 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type1904 { get; set; }
+ public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type1904 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type1905 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1905 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type1906 { get; set; }
+ public global::tryAGI.OpenAI.ResponseTextParam? Type1906 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type1907 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceParam? Type1907 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type1908 { get; set; }
+ public global::tryAGI.OpenAI.ResponsePropertiesTruncation2? Type1908 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type1909 { get; set; }
+ public global::tryAGI.OpenAI.ResponseQueuedEvent? Type1909 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1910 { get; set; }
+ public global::tryAGI.OpenAI.ResponseQueuedEventType? Type1910 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseTextParam? Type1911 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type1911 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceParam? Type1912 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type1912 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsePropertiesTruncation2? Type1913 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type1913 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseQueuedEvent? Type1914 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type1914 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseQueuedEventType? Type1915 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type1915 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type1916 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type1916 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type1917 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type1917 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type1918 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type1918 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type1919 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type1919 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type1920 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type1920 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type1921 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type1921 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type1922 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type1922 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type1923 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type1923 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type1924 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type1924 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type1925 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type1925 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type1926 { get; set; }
+ public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type1926 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type1927 { get; set; }
+ public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type1927 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type1928 { get; set; }
+ public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type1928 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type1929 { get; set; }
+ public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type1929 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type1930 { get; set; }
+ public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type1930 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type1931 { get; set; }
+ public global::tryAGI.OpenAI.ResponseStreamEvent? Type1931 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type1932 { get; set; }
+ public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type1932 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type1933 { get; set; }
+ public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type1933 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type1934 { get; set; }
+ public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type1934 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type1935 { get; set; }
+ public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type1935 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseStreamEvent? Type1936 { get; set; }
+ public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type1936 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type1937 { get; set; }
+ public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type1937 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type1938 { get; set; }
+ public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type1938 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type1939 { get; set; }
+ public global::System.Collections.Generic.IList? Type1939 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type1940 { get; set; }
+ public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type1940 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type1941 { get; set; }
+ public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type1941 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type1942 { get; set; }
+ public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type1942 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type1943 { get; set; }
+ public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type1943 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1944 { get; set; }
+ public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type1944 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type1945 { get; set; }
+ public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type1945 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type1946 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesClientEvent? Type1946 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type1947 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesClientEventResponseCreate? Type1947 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type1948 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesClientEventDiscriminator? Type1948 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type1949 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1? Type1949 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type1950 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1Type? Type1950 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesClientEvent? Type1951 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesServerEvent? Type1951 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesClientEventResponseCreate? Type1952 { get; set; }
+ public global::tryAGI.OpenAI.ResponsesServerEventDiscriminator? Type1952 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesClientEventDiscriminator? Type1953 { get; set; }
+ public global::tryAGI.OpenAI.RoleObject? Type1953 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1? Type1954 { get; set; }
+ public global::tryAGI.OpenAI.RoleDeletedResource? Type1954 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1Type? Type1955 { get; set; }
+ public global::tryAGI.OpenAI.RoleDeletedResourceObject? Type1955 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesServerEvent? Type1956 { get; set; }
+ public global::tryAGI.OpenAI.RoleListResource? Type1956 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsesServerEventDiscriminator? Type1957 { get; set; }
+ public global::tryAGI.OpenAI.RoleListResourceObject? Type1957 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RoleObject? Type1958 { get; set; }
+ public global::System.Collections.Generic.IList? Type1958 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RoleDeletedResource? Type1959 { get; set; }
+ public global::tryAGI.OpenAI.RunCompletionUsageVariant1? Type1959 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RoleDeletedResourceObject? Type1960 { get; set; }
+ public global::tryAGI.OpenAI.RunGraderRequest? Type1960 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RoleListResource? Type1961 { get; set; }
+ public global::tryAGI.OpenAI.RunGraderResponse? Type1961 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RoleListResourceObject? Type1962 { get; set; }
+ public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type1962 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1963 { get; set; }
+ public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type1963 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunCompletionUsageVariant1? Type1964 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectObject? Type1964 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunGraderRequest? Type1965 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectStatus? Type1965 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunGraderResponse? Type1966 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectRequiredAction? Type1966 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type1967 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectRequiredActionType? Type1967 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type1968 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type1968 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectObject? Type1969 { get; set; }
+ public global::System.Collections.Generic.IList? Type1969 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectStatus? Type1970 { get; set; }
+ public global::tryAGI.OpenAI.RunToolCallObject? Type1970 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectRequiredAction? Type1971 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectLastError? Type1971 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectRequiredActionType? Type1972 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectLastErrorCode? Type1972 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type1973 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectIncompleteDetails? Type1973 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1974 { get; set; }
+ public global::tryAGI.OpenAI.RunObjectIncompleteDetailsReason? Type1974 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunToolCallObject? Type1975 { get; set; }
+ public global::tryAGI.OpenAI.RunStepCompletionUsageVariant1? Type1975 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectLastError? Type1976 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaObject? Type1976 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectLastErrorCode? Type1977 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaObjectObject? Type1977 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectIncompleteDetails? Type1978 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaObjectDelta? Type1978 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunObjectIncompleteDetailsReason? Type1979 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1979 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepCompletionUsageVariant1? Type1980 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObject? Type1980 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaObject? Type1981 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObject? Type1981 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaObjectObject? Type1982 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type1982 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaObjectDelta? Type1983 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type1983 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1984 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObject? Type1984 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObject? Type1985 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectType? Type1985 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObject? Type1986 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter? Type1986 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type1987 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1987 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type1988 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject? Type1988 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObject? Type1989 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObject? Type1989 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectType? Type1990 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType? Type1990 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter? Type1991 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage? Type1991 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1992 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType? Type1992 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject? Type1993 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObject? Type1993 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObject? Type1994 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType? Type1994 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType? Type1995 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObject? Type1995 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage? Type1996 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType? Type1996 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType? Type1997 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectFunction? Type1997 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObject? Type1998 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type1998 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType? Type1999 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObject? Type1999 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObject? Type2000 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType? Type2000 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType? Type2001 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type2001 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectFunction? Type2002 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObject? Type2002 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type2003 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType? Type2003 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObject? Type2004 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type2004 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType? Type2005 { get; set; }
+ public global::System.Collections.Generic.IList>? Type2005 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type2006 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2006 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObject? Type2007 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObject? Type2007 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType? Type2008 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObject? Type2008 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type2009 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType? Type2009 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type2010 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectImage? Type2010 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2011 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObjectType? Type2011 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObject? Type2012 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObject? Type2012 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObject? Type2013 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectType? Type2013 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType? Type2014 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectFileSearch? Type2014 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectImage? Type2015 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchRankingOptionsObject? Type2015 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObjectType? Type2016 { get; set; }
+ public global::System.Collections.Generic.IList? Type2016 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObject? Type2017 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObject? Type2017 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectType? Type2018 { get; set; }
+ public global::System.Collections.Generic.IList? Type2018 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectFileSearch? Type2019 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItem? Type2019 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchRankingOptionsObject? Type2020 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItemType? Type2020 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2021 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObject? Type2021 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObject? Type2022 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectType? Type2022 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2023 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectFunction? Type2023 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItem? Type2024 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsObject? Type2024 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItemType? Type2025 { get; set; }
+ public global::tryAGI.OpenAI.RunStepDetailsToolCallsObjectType? Type2025 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObject? Type2026 { get; set; }
+ public global::tryAGI.OpenAI.RunStepObjectObject? Type2026 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectType? Type2027 { get; set; }
+ public global::tryAGI.OpenAI.RunStepObjectType? Type2027 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectFunction? Type2028 { get; set; }
+ public global::tryAGI.OpenAI.RunStepObjectStatus? Type2028 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsObject? Type2029 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2029 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepDetailsToolCallsObjectType? Type2030 { get; set; }
+ public global::tryAGI.OpenAI.RunStepObjectLastError2? Type2030 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepObjectObject? Type2031 { get; set; }
+ public global::tryAGI.OpenAI.RunStepObjectLastErrorCode? Type2031 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepObjectType? Type2032 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant1? Type2032 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepObjectStatus? Type2033 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant1Event? Type2033 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2034 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant2? Type2034 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepObjectLastError2? Type2035 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant2Event? Type2035 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepObjectLastErrorCode? Type2036 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant3? Type2036 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant1? Type2037 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant3Event? Type2037 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant1Event? Type2038 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant4? Type2038 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant2? Type2039 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant4Event? Type2039 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant2Event? Type2040 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant5? Type2040 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant3? Type2041 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant5Event? Type2041 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant3Event? Type2042 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant6? Type2042 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant4? Type2043 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant6Event? Type2043 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant4Event? Type2044 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant7? Type2044 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant5? Type2045 { get; set; }
+ public global::tryAGI.OpenAI.RunStepStreamEventVariant7Event? Type2045 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant5Event? Type2046 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant1? Type2046 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant6? Type2047 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant1Event? Type2047 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant6Event? Type2048 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant2? Type2048 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant7? Type2049 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant2Event? Type2049 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStepStreamEventVariant7Event? Type2050 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant3? Type2050 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant1? Type2051 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant3Event? Type2051 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant1Event? Type2052 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant4? Type2052 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant2? Type2053 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant4Event? Type2053 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant2Event? Type2054 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant5? Type2054 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant3? Type2055 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant5Event? Type2055 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant3Event? Type2056 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant6? Type2056 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant4? Type2057 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant6Event? Type2057 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant4Event? Type2058 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant7? Type2058 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant5? Type2059 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant7Event? Type2059 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant5Event? Type2060 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant8? Type2060 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant6? Type2061 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant8Event? Type2061 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant6Event? Type2062 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant9? Type2062 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant7? Type2063 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant9Event? Type2063 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant7Event? Type2064 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant10? Type2064 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant8? Type2065 { get; set; }
+ public global::tryAGI.OpenAI.RunStreamEventVariant10Event? Type2065 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant8Event? Type2066 { get; set; }
+ public global::tryAGI.OpenAI.RunToolCallObjectType? Type2066 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant9? Type2067 { get; set; }
+ public global::tryAGI.OpenAI.RunToolCallObjectFunction? Type2067 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant9Event? Type2068 { get; set; }
+ public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type2068 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant10? Type2069 { get; set; }
+ public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type2069 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunStreamEventVariant10Event? Type2070 { get; set; }
+ public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type2070 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunToolCallObjectType? Type2071 { get; set; }
+ public global::tryAGI.OpenAI.StaticChunkingStrategy? Type2071 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RunToolCallObjectFunction? Type2072 { get; set; }
+ public global::tryAGI.OpenAI.StaticChunkingStrategyRequestParamType? Type2072 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type2073 { get; set; }
+ public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParam? Type2073 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type2074 { get; set; }
+ public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParamType? Type2074 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type2075 { get; set; }
+ public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2075 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.StaticChunkingStrategy? Type2076 { get; set; }
+ public global::System.Collections.Generic.IList? Type2076 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.StaticChunkingStrategyRequestParamType? Type2077 { get; set; }
+ public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2077 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParam? Type2078 { get; set; }
+ public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type2078 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParamType? Type2079 { get; set; }
+ public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type2079 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2080 { get; set; }
+ public global::tryAGI.OpenAI.ThreadObject? Type2080 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2081 { get; set; }
+ public global::tryAGI.OpenAI.ThreadObjectObject? Type2081 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2082 { get; set; }
+ public global::tryAGI.OpenAI.ThreadObjectToolResources2? Type2082 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type2083 { get; set; }
+ public global::tryAGI.OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type2083 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type2084 { get; set; }
+ public global::tryAGI.OpenAI.ThreadObjectToolResourcesFileSearch? Type2084 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadObject? Type2085 { get; set; }
+ public global::tryAGI.OpenAI.ThreadStreamEventVariant1? Type2085 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadObjectObject? Type2086 { get; set; }
+ public global::tryAGI.OpenAI.ThreadStreamEventVariant1Event? Type2086 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadObjectToolResources2? Type2087 { get; set; }
+ public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2087 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type2088 { get; set; }
+ public global::tryAGI.OpenAI.FunctionTool? Type2088 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadObjectToolResourcesFileSearch? Type2089 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchTool? Type2089 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadStreamEventVariant1? Type2090 { get; set; }
+ public global::tryAGI.OpenAI.ComputerTool? Type2090 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ThreadStreamEventVariant1Event? Type2091 { get; set; }
+ public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type2091 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2092 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchTool? Type2092 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionTool? Type2093 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolParam? Type2093 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchTool? Type2094 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellToolParam? Type2094 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerTool? Type2095 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolParam? Type2095 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type2096 { get; set; }
+ public global::tryAGI.OpenAI.NamespaceToolParam? Type2096 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchTool? Type2097 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchToolParam? Type2097 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolParam? Type2098 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchPreviewTool? Type2098 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellToolParam? Type2099 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolParam? Type2099 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolParam? Type2100 { get; set; }
+ public global::tryAGI.OpenAI.ToolDiscriminator? Type2100 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NamespaceToolParam? Type2101 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceAllowed? Type2101 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchToolParam? Type2102 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type2102 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchPreviewTool? Type2103 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type2103 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolParam? Type2104 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceCustom? Type2104 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolDiscriminator? Type2105 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceCustomType? Type2105 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceAllowed? Type2106 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type2106 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type2107 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceMCPType? Type2107 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type2108 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceTypes? Type2108 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceCustom? Type2109 { get; set; }
+ public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type2109 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceCustomType? Type2110 { get; set; }
+ public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type2110 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type2111 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceTypesType? Type2111 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceMCPType? Type2112 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type2112 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceTypes? Type2113 { get; set; }
+ public global::System.Collections.Generic.IList? Type2113 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type2114 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type2114 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type2115 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type2115 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceTypesType? Type2116 { get; set; }
+ public global::System.Collections.Generic.IList? Type2116 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type2117 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type2117 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2118 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextSegmentEventType? Type2118 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type2119 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type2119 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type2120 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type2120 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2121 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type2121 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type2122 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptionChunkingStrategy? Type2122 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextSegmentEventType? Type2123 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptionChunkingStrategyEnum? Type2123 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type2124 { get; set; }
+ public global::tryAGI.OpenAI.TranscriptionDiarizedSegmentType? Type2124 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type2125 { get; set; }
+ public global::tryAGI.OpenAI.TruncationObjectType? Type2125 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type2126 { get; set; }
+ public global::tryAGI.OpenAI.UpdateGroupBody? Type2126 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptionChunkingStrategy? Type2127 { get; set; }
+ public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2127 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptionChunkingStrategyEnum? Type2128 { get; set; }
+ public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2128 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TranscriptionDiarizedSegmentType? Type2129 { get; set; }
+ public global::tryAGI.OpenAI.AllOf? Type2129 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TruncationObjectType? Type2130 { get; set; }
+ public global::tryAGI.OpenAI.UpdateVoiceConsentRequest? Type2130 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UpdateGroupBody? Type2131 { get; set; }
+ public global::tryAGI.OpenAI.Upload? Type2131 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2132 { get; set; }
+ public global::tryAGI.OpenAI.UploadStatus? Type2132 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2133 { get; set; }
+ public global::tryAGI.OpenAI.UploadObject? Type2133 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AllOf? Type2134 { get; set; }
+ public global::tryAGI.OpenAI.AllOf? Type2134 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UpdateVoiceConsentRequest? Type2135 { get; set; }
+ public global::tryAGI.OpenAI.UploadCertificateRequest? Type2135 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Upload? Type2136 { get; set; }
+ public global::tryAGI.OpenAI.UploadPart? Type2136 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UploadStatus? Type2137 { get; set; }
+ public global::tryAGI.OpenAI.UploadPartObject? Type2137 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UploadObject? Type2138 { get; set; }
+ public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2138 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AllOf? Type2139 { get; set; }
+ public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2139 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UploadCertificateRequest? Type2140 { get; set; }
+ public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2140 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UploadPart? Type2141 { get; set; }
+ public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2141 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UploadPartObject? Type2142 { get; set; }
+ public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2142 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2143 { get; set; }
+ public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2143 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2144 { get; set; }
+ public global::tryAGI.OpenAI.UsageCompletionsResult? Type2144 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2145 { get; set; }
+ public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2145 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2146 { get; set; }
+ public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2146 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2147 { get; set; }
+ public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2147 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2148 { get; set; }
+ public global::tryAGI.OpenAI.UsageImagesResult? Type2148 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageCompletionsResult? Type2149 { get; set; }
+ public global::tryAGI.OpenAI.UsageImagesResultObject? Type2149 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2150 { get; set; }
+ public global::tryAGI.OpenAI.UsageModerationsResult? Type2150 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2151 { get; set; }
+ public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2151 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2152 { get; set; }
+ public global::tryAGI.OpenAI.UsageResponse? Type2152 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageImagesResult? Type2153 { get; set; }
+ public global::tryAGI.OpenAI.UsageResponseObject? Type2153 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageImagesResultObject? Type2154 { get; set; }
+ public global::System.Collections.Generic.IList? Type2154 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageModerationsResult? Type2155 { get; set; }
+ public global::tryAGI.OpenAI.UsageTimeBucket? Type2155 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2156 { get; set; }
+ public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2156 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageResponse? Type2157 { get; set; }
+ public global::System.Collections.Generic.IList? Type2157 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageResponseObject? Type2158 { get; set; }
+ public global::tryAGI.OpenAI.ResultsItem? Type2158 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2159 { get; set; }
+ public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2159 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageTimeBucket? Type2160 { get; set; }
+ public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminator? Type2160 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2161 { get; set; }
+ public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2161 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2162 { get; set; }
+ public global::tryAGI.OpenAI.User? Type2162 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResultsItem? Type2163 { get; set; }
+ public global::tryAGI.OpenAI.UserObject? Type2163 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2164 { get; set; }
+ public global::tryAGI.OpenAI.UserUser1? Type2164 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminator? Type2165 { get; set; }
+ public global::tryAGI.OpenAI.UserUser1Object? Type2165 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2166 { get; set; }
+ public global::tryAGI.OpenAI.UserProjects2? Type2166 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.User? Type2167 { get; set; }
+ public global::tryAGI.OpenAI.UserProjectsObject? Type2167 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UserObject? Type2168 { get; set; }
+ public global::System.Collections.Generic.IList? Type2168 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UserRole? Type2169 { get; set; }
+ public global::tryAGI.OpenAI.UserProjectsDataItem? Type2169 { get; set; }
///
///
///
@@ -8752,2243 +8752,2239 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::tryAGI.OpenAI.UserRoleUpdateRequestRole? Type2181 { get; set; }
+ public global::tryAGI.OpenAI.VadConfigType? Type2181 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VadConfigType? Type2182 { get; set; }
+ public global::tryAGI.OpenAI.ValidateGraderRequest? Type2182 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ValidateGraderRequest? Type2183 { get; set; }
+ public global::tryAGI.OpenAI.ValidateGraderResponse? Type2183 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ValidateGraderResponse? Type2184 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type2184 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type2185 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2185 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2186 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2186 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2187 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2187 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2188 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2188 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2189 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2189 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2190 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2190 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2191 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2191 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2192 { get; set; }
+ public global::System.Collections.Generic.IList? Type2192 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2193 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2193 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2194 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type2194 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type2195 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type2195 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type2196 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileObjectLastError2? Type2196 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileObjectLastError2? Type2197 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type2197 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type2198 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2198 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2199 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreObjectObject? Type2199 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreObjectObject? Type2200 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type2200 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type2201 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type2201 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type2202 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2202 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2203 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>? Type2203 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>? Type2204 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2204 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2205 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2205 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2206 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2206 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2207 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2207 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2208 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2208 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2209 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2209 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2210 { get; set; }
+ public global::System.Collections.Generic.IList? Type2210 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2211 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2211 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2212 { get; set; }
+ public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2212 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2213 { get; set; }
+ public global::System.Collections.Generic.IList? Type2213 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2214 { get; set; }
+ public global::tryAGI.OpenAI.VoiceConsentDeletedResource? Type2214 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceConsentDeletedResource? Type2215 { get; set; }
+ public global::tryAGI.OpenAI.VoiceConsentDeletedResourceObject? Type2215 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceConsentDeletedResourceObject? Type2216 { get; set; }
+ public global::tryAGI.OpenAI.VoiceConsentListResource? Type2216 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceConsentListResource? Type2217 { get; set; }
+ public global::tryAGI.OpenAI.VoiceConsentListResourceObject? Type2217 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceConsentListResourceObject? Type2218 { get; set; }
+ public global::System.Collections.Generic.IList? Type2218 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2219 { get; set; }
+ public global::tryAGI.OpenAI.VoiceConsentResource? Type2219 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceConsentResource? Type2220 { get; set; }
+ public global::tryAGI.OpenAI.VoiceConsentResourceObject? Type2220 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceConsentResourceObject? Type2221 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type2221 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type2222 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type2222 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type2223 { get; set; }
+ public global::tryAGI.OpenAI.VoiceResource? Type2223 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceResource? Type2224 { get; set; }
+ public global::tryAGI.OpenAI.VoiceResourceObject? Type2224 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceResourceObject? Type2225 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionFind? Type2225 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionFind? Type2226 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionFindType? Type2226 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionFindType? Type2227 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type2227 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type2228 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type2228 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type2229 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearch? Type2229 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearch? Type2230 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearchType? Type2230 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearchType? Type2231 { get; set; }
+ public global::System.Collections.Generic.IList? Type2231 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2232 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type2232 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type2233 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type2233 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type2234 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type2234 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type2235 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type2235 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type2236 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolType? Type2236 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolType? Type2237 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolFilters2? Type2237 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolFilters2? Type2238 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type2238 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type2239 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallType? Type2239 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallType? Type2240 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type2240 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type2241 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallAction? Type2241 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallAction? Type2242 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type2242 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type2243 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2243 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2244 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2244 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2245 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2245 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2246 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2246 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2247 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2247 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2248 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2248 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2249 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2249 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2250 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2250 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2251 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchExpired? Type2251 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchExpired? Type2252 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2252 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2253 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2253 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2254 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2254 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2255 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchFailed? Type2255 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchFailed? Type2256 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2256 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2257 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2257 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2258 { get; set; }
+ public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2258 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2259 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2259 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2260 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2260 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2261 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2261 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2262 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2262 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2263 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2263 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2264 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2264 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2265 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2265 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2266 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2266 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2267 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2267 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2268 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2268 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2269 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2269 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2270 { get; set; }
+ public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2270 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2271 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2271 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2272 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2272 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2273 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2273 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2274 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2274 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2275 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2275 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2276 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2276 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2277 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2277 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2278 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2278 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2279 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2279 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2280 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2280 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2281 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2281 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2282 { get; set; }
+ public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2282 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2283 { get; set; }
+ public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2283 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2284 { get; set; }
+ public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2284 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2285 { get; set; }
+ public global::System.Collections.Generic.IList? Type2285 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2286 { get; set; }
+ public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2286 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2287 { get; set; }
+ public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2287 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2288 { get; set; }
+ public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2288 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2289 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2289 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2290 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2290 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2291 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2291 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2292 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2292 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2293 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2293 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2294 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2294 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2295 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2295 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2296 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2296 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2297 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseFailed? Type2297 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseFailed? Type2298 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2298 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2299 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2299 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2300 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2300 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2301 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2301 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2302 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2302 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2303 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2303 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2304 { get; set; }
+ public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2304 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2305 { get; set; }
+ public global::tryAGI.OpenAI.SkillReferenceParamType? Type2305 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SkillReferenceParamType? Type2306 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillSourceParam? Type2306 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillSourceParam? Type2307 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type2307 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type2308 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type2308 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type2309 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillParamType? Type2309 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillParamType? Type2310 { get; set; }
+ public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParamType? Type2310 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParamType? Type2311 { get; set; }
+ public global::tryAGI.OpenAI.ContainerNetworkPolicyDomainSecretParam? Type2311 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerNetworkPolicyDomainSecretParam? Type2312 { get; set; }
+ public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParamType? Type2312 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParamType? Type2313 { get; set; }
+ public global::System.Collections.Generic.IList? Type2313 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2314 { get; set; }
+ public global::tryAGI.OpenAI.MessageStatus? Type2314 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageStatus? Type2315 { get; set; }
+ public global::tryAGI.OpenAI.MessageRole? Type2315 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageRole? Type2316 { get; set; }
+ public global::tryAGI.OpenAI.InputTextContentType? Type2316 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputTextContentType? Type2317 { get; set; }
+ public global::tryAGI.OpenAI.FileCitationBody? Type2317 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileCitationBody? Type2318 { get; set; }
+ public global::tryAGI.OpenAI.FileCitationBodyType? Type2318 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileCitationBodyType? Type2319 { get; set; }
+ public global::tryAGI.OpenAI.UrlCitationBody? Type2319 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UrlCitationBody? Type2320 { get; set; }
+ public global::tryAGI.OpenAI.UrlCitationBodyType? Type2320 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UrlCitationBodyType? Type2321 { get; set; }
+ public global::tryAGI.OpenAI.ContainerFileCitationBody? Type2321 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerFileCitationBody? Type2322 { get; set; }
+ public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type2322 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type2323 { get; set; }
+ public global::tryAGI.OpenAI.Annotation? Type2323 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Annotation? Type2324 { get; set; }
+ public global::tryAGI.OpenAI.AnnotationDiscriminator? Type2324 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnnotationDiscriminator? Type2325 { get; set; }
+ public global::tryAGI.OpenAI.TopLogProb? Type2325 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TopLogProb? Type2326 { get; set; }
+ public global::tryAGI.OpenAI.LogProb? Type2326 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LogProb? Type2327 { get; set; }
+ public global::System.Collections.Generic.IList? Type2327 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2328 { get; set; }
+ public global::tryAGI.OpenAI.OutputTextContentType? Type2328 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputTextContentType? Type2329 { get; set; }
+ public global::System.Collections.Generic.IList? Type2329 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2330 { get; set; }
+ public global::System.Collections.Generic.IList? Type2330 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2331 { get; set; }
+ public global::tryAGI.OpenAI.TextContent? Type2331 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextContent? Type2332 { get; set; }
+ public global::tryAGI.OpenAI.TextContentType? Type2332 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextContentType? Type2333 { get; set; }
+ public global::tryAGI.OpenAI.SummaryTextContentType? Type2333 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SummaryTextContentType? Type2334 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningTextContentType? Type2334 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningTextContentType? Type2335 { get; set; }
+ public global::tryAGI.OpenAI.RefusalContentType? Type2335 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RefusalContentType? Type2336 { get; set; }
+ public global::tryAGI.OpenAI.ImageDetail? Type2336 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageDetail? Type2337 { get; set; }
+ public global::tryAGI.OpenAI.InputImageContentType? Type2337 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputImageContentType? Type2338 { get; set; }
+ public global::tryAGI.OpenAI.ComputerScreenshotContent? Type2338 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerScreenshotContent? Type2339 { get; set; }
+ public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type2339 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type2340 { get; set; }
+ public global::tryAGI.OpenAI.FileInputDetail? Type2340 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileInputDetail? Type2341 { get; set; }
+ public global::tryAGI.OpenAI.InputFileContentType? Type2341 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputFileContentType? Type2342 { get; set; }
+ public global::tryAGI.OpenAI.MessagePhase2? Type2342 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessagePhase2? Type2343 { get; set; }
+ public global::tryAGI.OpenAI.MessageType? Type2343 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageType? Type2344 { get; set; }
+ public global::System.Collections.Generic.IList? Type2344 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2345 { get; set; }
+ public global::tryAGI.OpenAI.ContentItem3? Type2345 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContentItem3? Type2346 { get; set; }
+ public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type2346 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type2347 { get; set; }
+ public global::tryAGI.OpenAI.ClickButtonType? Type2347 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ClickButtonType? Type2348 { get; set; }
+ public global::tryAGI.OpenAI.ClickParamType? Type2348 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ClickParamType? Type2349 { get; set; }
+ public global::tryAGI.OpenAI.DoubleClickActionType? Type2349 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.DoubleClickActionType? Type2350 { get; set; }
+ public global::tryAGI.OpenAI.CoordParam? Type2350 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CoordParam? Type2351 { get; set; }
+ public global::tryAGI.OpenAI.DragParamType? Type2351 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.DragParamType? Type2352 { get; set; }
+ public global::System.Collections.Generic.IList? Type2352 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2353 { get; set; }
+ public global::tryAGI.OpenAI.KeyPressActionType? Type2353 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.KeyPressActionType? Type2354 { get; set; }
+ public global::tryAGI.OpenAI.MoveParamType? Type2354 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MoveParamType? Type2355 { get; set; }
+ public global::tryAGI.OpenAI.ScreenshotParamType? Type2355 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ScreenshotParamType? Type2356 { get; set; }
+ public global::tryAGI.OpenAI.ScrollParamType? Type2356 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ScrollParamType? Type2357 { get; set; }
+ public global::tryAGI.OpenAI.TypeParamType? Type2357 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TypeParamType? Type2358 { get; set; }
+ public global::tryAGI.OpenAI.WaitParamType? Type2358 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WaitParamType? Type2359 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchExecutionType? Type2359 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchExecutionType? Type2360 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchCallType? Type2360 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchCallType? Type2361 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolType? Type2361 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolType? Type2362 { get; set; }
+ public global::tryAGI.OpenAI.RankerVersionType? Type2362 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RankerVersionType? Type2363 { get; set; }
+ public global::tryAGI.OpenAI.HybridSearchOptions? Type2363 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.HybridSearchOptions? Type2364 { get; set; }
+ public global::tryAGI.OpenAI.RankingOptions? Type2364 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RankingOptions? Type2365 { get; set; }
+ public global::tryAGI.OpenAI.Filters2? Type2365 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Filters2? Type2366 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchToolType? Type2366 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchToolType? Type2367 { get; set; }
+ public global::tryAGI.OpenAI.ComputerToolType? Type2367 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerToolType? Type2368 { get; set; }
+ public global::tryAGI.OpenAI.ComputerEnvironment? Type2368 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerEnvironment? Type2369 { get; set; }
+ public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type2369 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type2370 { get; set; }
+ public global::tryAGI.OpenAI.ContainerMemoryLimit? Type2370 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerMemoryLimit? Type2371 { get; set; }
+ public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamType? Type2371 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamType? Type2372 { get; set; }
+ public global::tryAGI.OpenAI.NetworkPolicy2? Type2372 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NetworkPolicy2? Type2373 { get; set; }
+ public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type2373 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type2374 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolParamType? Type2374 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolParamType? Type2375 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParam? Type2375 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParam? Type2376 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParamType? Type2376 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParamType? Type2377 { get; set; }
+ public global::tryAGI.OpenAI.NetworkPolicy3? Type2377 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NetworkPolicy3? Type2378 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type2378 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type2379 { get; set; }
+ public global::System.Collections.Generic.IList? Type2379 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2380 { get; set; }
+ public global::tryAGI.OpenAI.SkillsItem2? Type2380 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SkillsItem2? Type2381 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type2381 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type2382 { get; set; }
+ public global::tryAGI.OpenAI.LocalSkillParam? Type2382 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalSkillParam? Type2383 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentParam? Type2383 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentParam? Type2384 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type2384 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type2385 { get; set; }
+ public global::System.Collections.Generic.IList? Type2385 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2386 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceParam? Type2386 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceParam? Type2387 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceParamType? Type2387 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceParamType? Type2388 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellToolParamType? Type2388 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellToolParamType? Type2389 { get; set; }
+ public global::tryAGI.OpenAI.EnvironmentVariant1? Type2389 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EnvironmentVariant1? Type2390 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type2390 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type2391 { get; set; }
+ public global::tryAGI.OpenAI.CustomTextFormatParam? Type2391 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomTextFormatParam? Type2392 { get; set; }
+ public global::tryAGI.OpenAI.CustomTextFormatParamType? Type2392 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomTextFormatParamType? Type2393 { get; set; }
+ public global::tryAGI.OpenAI.GrammarSyntax1? Type2393 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GrammarSyntax1? Type2394 { get; set; }
+ public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type2394 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type2395 { get; set; }
+ public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type2395 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type2396 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolParamType? Type2396 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolParamType? Type2397 { get; set; }
+ public global::tryAGI.OpenAI.Format2? Type2397 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Format2? Type2398 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type2398 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type2399 { get; set; }
+ public global::tryAGI.OpenAI.EmptyModelParam? Type2399 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EmptyModelParam? Type2400 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolParam? Type2400 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolParam? Type2401 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolParamType? Type2401 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolParamType? Type2402 { get; set; }
+ public global::tryAGI.OpenAI.NamespaceToolParamType? Type2402 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NamespaceToolParamType? Type2403 { get; set; }
+ public global::System.Collections.Generic.IList? Type2403 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2404 { get; set; }
+ public global::tryAGI.OpenAI.ToolsItem13? Type2404 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolsItem13? Type2405 { get; set; }
+ public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type2405 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type2406 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchToolParamType? Type2406 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchToolParamType? Type2407 { get; set; }
+ public global::tryAGI.OpenAI.ApproximateLocation? Type2407 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApproximateLocation? Type2408 { get; set; }
+ public global::tryAGI.OpenAI.ApproximateLocationType? Type2408 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApproximateLocationType? Type2409 { get; set; }
+ public global::tryAGI.OpenAI.SearchContextSize? Type2409 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SearchContextSize? Type2410 { get; set; }
+ public global::tryAGI.OpenAI.SearchContentType? Type2410 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SearchContentType? Type2411 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type2411 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type2412 { get; set; }
+ public global::System.Collections.Generic.IList? Type2412 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2413 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type2413 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type2414 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchOutputType? Type2414 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchOutputType? Type2415 { get; set; }
+ public global::tryAGI.OpenAI.CompactionBodyType? Type2415 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CompactionBodyType? Type2416 { get; set; }
+ public global::tryAGI.OpenAI.CodeInterpreterOutputLogsType? Type2416 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CodeInterpreterOutputLogsType? Type2417 { get; set; }
+ public global::tryAGI.OpenAI.CodeInterpreterOutputImageType? Type2417 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CodeInterpreterOutputImageType? Type2418 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellExecActionType? Type2418 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellExecActionType? Type2419 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellAction? Type2419 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellAction? Type2420 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallStatus? Type2420 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallStatus? Type2421 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentResource? Type2421 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentResource? Type2422 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type2422 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type2423 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceResource? Type2423 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceResource? Type2424 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type2424 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type2425 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallType? Type2425 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallType? Type2426 { get; set; }
+ public global::tryAGI.OpenAI.EnvironmentVariant12? Type2426 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EnvironmentVariant12? Type2427 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type2427 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type2428 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputStatusEnum? Type2428 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputStatusEnum? Type2429 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type2429 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type2430 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type2430 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type2431 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type2431 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type2432 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type2432 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type2433 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type2433 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type2434 { get; set; }
+ public global::tryAGI.OpenAI.Outcome? Type2434 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Outcome? Type2435 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type2435 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type2436 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type2436 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type2437 { get; set; }
+ public global::System.Collections.Generic.IList? Type2437 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2438 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type2438 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type2439 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type2439 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type2440 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type2440 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type2441 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type2441 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type2442 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type2442 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type2443 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type2443 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type2444 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type2444 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type2445 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type2445 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type2446 { get; set; }
+ public global::tryAGI.OpenAI.Operation? Type2446 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Operation? Type2447 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type2447 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type2448 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type2448 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type2449 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type2449 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type2450 { get; set; }
+ public global::tryAGI.OpenAI.DetailEnum? Type2450 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.DetailEnum? Type2451 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallItemStatus? Type2451 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallItemStatus? Type2452 { get; set; }
+ public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type2452 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type2453 { get; set; }
+ public global::tryAGI.OpenAI.InputTextContentParam? Type2453 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputTextContentParam? Type2454 { get; set; }
+ public global::tryAGI.OpenAI.InputTextContentParamType? Type2454 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputTextContentParamType? Type2455 { get; set; }
+ public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type2455 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type2456 { get; set; }
+ public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type2456 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type2457 { get; set; }
+ public global::tryAGI.OpenAI.FileDetailEnum? Type2457 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileDetailEnum? Type2458 { get; set; }
+ public global::tryAGI.OpenAI.InputFileContentParam? Type2458 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputFileContentParam? Type2459 { get; set; }
+ public global::tryAGI.OpenAI.InputFileContentParamType? Type2459 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputFileContentParamType? Type2460 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type2460 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type2461 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>? Type2461 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>? Type2462 { get; set; }
+ public global::System.Collections.Generic.IList? Type2462 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2463 { get; set; }
+ public global::tryAGI.OpenAI.OutputVariant2Item? Type2463 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputVariant2Item? Type2464 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type2464 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type2465 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type2465 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type2466 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type2466 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type2467 { get; set; }
+ public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type2467 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type2468 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellActionParam? Type2468 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellActionParam? Type2469 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type2469 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type2470 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type2470 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type2471 { get; set; }
+ public global::tryAGI.OpenAI.EnvironmentVariant13? Type2471 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EnvironmentVariant13? Type2472 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type2472 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type2473 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type2473 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type2474 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type2474 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type2475 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type2475 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type2476 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type2476 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type2477 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type2477 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type2478 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type2478 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type2479 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type2479 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type2480 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type2480 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type2481 { get; set; }
+ public global::System.Collections.Generic.IList? Type2481 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2482 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type2482 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type2483 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type2483 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type2484 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type2484 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type2485 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type2485 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type2486 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type2486 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type2487 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type2487 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type2488 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type2488 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type2489 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type2489 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type2490 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type2490 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type2491 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type2491 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type2492 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type2492 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type2493 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type2493 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type2494 { get; set; }
+ public global::tryAGI.OpenAI.ItemReferenceParamType2? Type2494 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ItemReferenceParamType2? Type2495 { get; set; }
+ public global::tryAGI.OpenAI.ConversationResource? Type2495 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationResource? Type2496 { get; set; }
+ public global::tryAGI.OpenAI.ConversationResourceObject? Type2496 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationResourceObject? Type2497 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenOutputTokensDetails? Type2497 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenOutputTokensDetails? Type2498 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type2498 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type2499 { get; set; }
+ public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type2499 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type2500 { get; set; }
+ public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type2500 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type2501 { get; set; }
+ public global::tryAGI.OpenAI.CreateConversationBody? Type2501 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateConversationBody? Type2502 { get; set; }
+ public global::tryAGI.OpenAI.UpdateConversationBody? Type2502 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UpdateConversationBody? Type2503 { get; set; }
+ public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type2503 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type2504 { get; set; }
+ public global::tryAGI.OpenAI.OrderEnum? Type2504 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OrderEnum? Type2505 { get; set; }
+ public global::tryAGI.OpenAI.VideoModel? Type2505 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoModel? Type2506 { get; set; }
+ public global::tryAGI.OpenAI.VideoModelEnum? Type2506 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoModelEnum? Type2507 { get; set; }
+ public global::tryAGI.OpenAI.VideoStatus? Type2507 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoStatus? Type2508 { get; set; }
+ public global::tryAGI.OpenAI.VideoSize? Type2508 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoSize? Type2509 { get; set; }
+ public global::tryAGI.OpenAI.Error2? Type2509 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Error2? Type2510 { get; set; }
+ public global::tryAGI.OpenAI.VideoResource? Type2510 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoResource? Type2511 { get; set; }
+ public global::tryAGI.OpenAI.VideoResourceObject? Type2511 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoResourceObject? Type2512 { get; set; }
+ public global::tryAGI.OpenAI.VideoListResource? Type2512 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoListResource? Type2513 { get; set; }
+ public global::tryAGI.OpenAI.VideoListResourceObject? Type2513 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoListResourceObject? Type2514 { get; set; }
+ public global::System.Collections.Generic.IList? Type2514 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2515 { get; set; }
+ public global::tryAGI.OpenAI.ImageRefParam2? Type2515 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageRefParam2? Type2516 { get; set; }
+ public global::tryAGI.OpenAI.VideoSeconds? Type2516 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoSeconds? Type2517 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoMultipartBody? Type2517 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateVideoMultipartBody? Type2518 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2518 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2519 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoJsonBody? Type2519 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateVideoJsonBody? Type2520 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoCharacterBody? Type2520 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateVideoCharacterBody? Type2521 { get; set; }
+ public global::tryAGI.OpenAI.VideoCharacterResource? Type2521 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoCharacterResource? Type2522 { get; set; }
+ public global::tryAGI.OpenAI.VideoReferenceInputParam? Type2522 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VideoReferenceInputParam? Type2523 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoEditMultipartBody? Type2523 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateVideoEditMultipartBody? Type2524 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2524 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2525 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoEditJsonBody? Type2525 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateVideoEditJsonBody? Type2526 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoExtendMultipartBody? Type2526 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateVideoExtendMultipartBody? Type2527 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type2527 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type2528 { get; set; }
+ public global::tryAGI.OpenAI.CreateVideoExtendJsonBody? Type2528 { get; set; }
///