diff --git a/src/libs/AutoSDK/Models/AnyOfData.cs b/src/libs/AutoSDK/Models/AnyOfData.cs
index 816ac8bd63..90e1a6da61 100644
--- a/src/libs/AutoSDK/Models/AnyOfData.cs
+++ b/src/libs/AutoSDK/Models/AnyOfData.cs
@@ -47,9 +47,7 @@ public static AnyOfData FromSchemaContext(SchemaContext context)
context.Settings.JsonSerializerType == JsonSerializerType.SystemTextJson &&
(!string.IsNullOrWhiteSpace(context.Settings.JsonSerializerContext) ||
context.Settings.GenerateJsonSerializerContextTypes),
- Namespace: context.IsComponent
- ? context.Settings.Namespace
- : "System",
+ Namespace: context.Settings.Namespace,
Name: context.IsComponent
? context.Id
: string.Empty,
diff --git a/src/libs/AutoSDK/Models/TypeData.cs b/src/libs/AutoSDK/Models/TypeData.cs
index e5a10b1338..c4658f607e 100644
--- a/src/libs/AutoSDK/Models/TypeData.cs
+++ b/src/libs/AutoSDK/Models/TypeData.cs
@@ -208,9 +208,9 @@ public static string GetCSharpType(SchemaContext context, SchemaContext? additio
(_, _) when context.Schema.IsOneOf() && context.IsComponent => ($"global::{context.Settings.Namespace}.{context.Id}", true),
(_, _) when context.Schema.IsAllOf() && context.IsComponent => ($"global::{context.Settings.Namespace}.{context.Id}", true),
- (_, _) when context.Schema.IsAnyOf() => ($"global::System.AnyOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AnyOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true),
- (_, _) when context.Schema.IsOneOf() => ($"global::System.OneOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.OneOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true),
- (_, _) when context.Schema.IsAllOf() => ($"global::System.AllOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AllOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true),
+ (_, _) when context.Schema.IsAnyOf() => ($"global::{context.Settings.Namespace}.AnyOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AnyOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true),
+ (_, _) when context.Schema.IsOneOf() => ($"global::{context.Settings.Namespace}.OneOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.OneOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true),
+ (_, _) when context.Schema.IsAllOf() => ($"global::{context.Settings.Namespace}.AllOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AllOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true),
("object", _) or (null, _) when context.Schema.Reference != null =>
($"global::{context.Settings.Namespace}.{context.Id}", true),
diff --git a/src/libs/AutoSDK/Generation/Data.cs b/src/libs/AutoSDK/Sources/Data.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Data.cs
rename to src/libs/AutoSDK/Sources/Data.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.AnyOf.cs b/src/libs/AutoSDK/Sources/Sources.AnyOf.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.AnyOf.cs
rename to src/libs/AutoSDK/Sources/Sources.AnyOf.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Authorizations.cs b/src/libs/AutoSDK/Sources/Sources.Authorizations.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Authorizations.cs
rename to src/libs/AutoSDK/Sources/Sources.Authorizations.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Clients.cs b/src/libs/AutoSDK/Sources/Sources.Clients.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Clients.cs
rename to src/libs/AutoSDK/Sources/Sources.Clients.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Exceptions.cs b/src/libs/AutoSDK/Sources/Sources.Exceptions.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Exceptions.cs
rename to src/libs/AutoSDK/Sources/Sources.Exceptions.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.JsonConverters.AnyOf.cs b/src/libs/AutoSDK/Sources/Sources.JsonConverters.AnyOf.cs
similarity index 97%
rename from src/libs/AutoSDK/Generation/Sources.JsonConverters.AnyOf.cs
rename to src/libs/AutoSDK/Sources/Sources.JsonConverters.AnyOf.cs
index 002cda3ed4..ec94eff1d0 100644
--- a/src/libs/AutoSDK/Generation/Sources.JsonConverters.AnyOf.cs
+++ b/src/libs/AutoSDK/Sources/Sources.JsonConverters.AnyOf.cs
@@ -22,7 +22,7 @@ public static string GenerateAnyOfJsonConverter(
? $"{subType}JsonConverter{types}"
: $"{name}JsonConverter";
var typeNameWithTypes = string.IsNullOrWhiteSpace(name)
- ? $"global::System.{subType}{types}"
+ ? $"global::{@namespace}.{subType}{types}"
: $"global::{@namespace}.{name}";
var allTypes = fixedTypes.IsEmpty
? Enumerable
@@ -156,7 +156,7 @@ public sealed class {subType}JsonConverterFactory{count} : global::System.Text.J
///
public override bool CanConvert(global::System.Type? typeToConvert)
{{
- return typeToConvert is {{ IsGenericType: true }} && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.{subType}{types});
+ return typeToConvert is {{ IsGenericType: true }} && typeToConvert.GetGenericTypeDefinition() == typeof(global::{anyOfData.Settings.Namespace}.{subType}{types});
}}
///
diff --git a/src/libs/AutoSDK/Generation/Sources.JsonConverters.Enum.cs b/src/libs/AutoSDK/Sources/Sources.JsonConverters.Enum.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.JsonConverters.Enum.cs
rename to src/libs/AutoSDK/Sources/Sources.JsonConverters.Enum.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.JsonConverters.UnixTimestamp.cs b/src/libs/AutoSDK/Sources/Sources.JsonConverters.UnixTimestamp.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.JsonConverters.UnixTimestamp.cs
rename to src/libs/AutoSDK/Sources/Sources.JsonConverters.UnixTimestamp.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.JsonSerializerContext.cs b/src/libs/AutoSDK/Sources/Sources.JsonSerializerContext.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.JsonSerializerContext.cs
rename to src/libs/AutoSDK/Sources/Sources.JsonSerializerContext.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.JsonSerializerContextConverters.cs b/src/libs/AutoSDK/Sources/Sources.JsonSerializerContextConverters.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.JsonSerializerContextConverters.cs
rename to src/libs/AutoSDK/Sources/Sources.JsonSerializerContextConverters.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.JsonSerializerContextTypes.cs b/src/libs/AutoSDK/Sources/Sources.JsonSerializerContextTypes.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.JsonSerializerContextTypes.cs
rename to src/libs/AutoSDK/Sources/Sources.JsonSerializerContextTypes.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Methods.cs b/src/libs/AutoSDK/Sources/Sources.Methods.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Methods.cs
rename to src/libs/AutoSDK/Sources/Sources.Methods.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Models.Enum.cs b/src/libs/AutoSDK/Sources/Sources.Models.Enum.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Models.Enum.cs
rename to src/libs/AutoSDK/Sources/Sources.Models.Enum.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Models.cs b/src/libs/AutoSDK/Sources/Sources.Models.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Models.cs
rename to src/libs/AutoSDK/Sources/Sources.Models.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.Polyfills.cs b/src/libs/AutoSDK/Sources/Sources.Polyfills.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.Polyfills.cs
rename to src/libs/AutoSDK/Sources/Sources.Polyfills.cs
diff --git a/src/libs/AutoSDK/Generation/Sources.cs b/src/libs/AutoSDK/Sources/Sources.cs
similarity index 100%
rename from src/libs/AutoSDK/Generation/Sources.cs
rename to src/libs/AutoSDK/Sources/Sources.cs
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs
index 2e5f47dd3f..f9f2524e96 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs
index 8333f3c3e9..a4e52ba19a 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs
index 8cd2d6abd6..dad2affaea 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs
@@ -106,7 +106,7 @@ partial void ProcessV1EmbedResponseContent(
///
public async global::System.Threading.Tasks.Task V1EmbedAsync(
global::System.Collections.Generic.IList texts,
- global::System.AllOf? type = default,
+ global::G.AllOf? type = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var request = new global::G.EmbeddingsBody
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs
index be711e496e..1cb3aa599e 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs
@@ -141,9 +141,9 @@ partial void ProcessV1J2UltraChatResponseContent(
global::System.Collections.Generic.IList messages,
string system,
string? model = "j2-ultra",
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int numResults = 1,
double temperature = 0.7,
int maxTokens = 300,
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs
index 0796dc30bb..707a545c2c 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs
index 820354ae95..fb417ff416 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2GrandeCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs
index b230f71762..2178cc9b07 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeInstructCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs
index 9b320718c2..90c3ac5425 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2JumboCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs
index 46b58ac758..28e6afa3a4 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2JumboComplete2ResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs
index be056725e3..00a8c49cca 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2JumboInstructCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs
index be67b8e4be..a545a51872 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2LargeCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs
index e9ae1dae82..7bd15de0ea 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2LargeCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs
index 611b0c1643..ee0e533c46 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2LargeInstructCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs
index 75304456e8..7f49bcaa80 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2LightCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs
index 7b4d9181bb..284aaffa01 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2LightCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs
index 45f11eb1f5..a8859fe17d 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2MidCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs
index 7752701085..8f2005e9d6 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2MidCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs
index 876785d8c9..2fe223dcfa 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2UltraCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs
index b63da2644c..4d9a00aade 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2UltraComplete2ResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs
index f7ca7018d2..f5a7a88e30 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs
@@ -36,7 +36,7 @@ partial void ProcessV1ChatCompleteResponseContent(
///
/// The token to cancel the operation with
///
- public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
+ public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
string authorization,
global::G.LanguageStudioApiServerDataTypesChatChatRequest request,
global::System.Threading.CancellationToken cancellationToken = default)
@@ -102,7 +102,7 @@ partial void ProcessV1ChatCompleteResponseContent(
}
return
- global::Newtonsoft.Json.JsonConvert.DeserializeObject>?>(__content, _jsonSerializerOptions) ??
+ global::Newtonsoft.Json.JsonConvert.DeserializeObject>?>(__content, _jsonSerializerOptions) ??
throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
}
@@ -146,20 +146,20 @@ partial void ProcessV1ChatCompleteResponseContent(
///
/// The token to cancel the operation with
///
- public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
+ public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
string authorization,
global::G.ModelName model,
- global::System.Collections.Generic.IList> messages,
+ global::System.Collections.Generic.IList> messages,
global::System.Collections.Generic.IList? tools = default,
int n = 1,
int maxTokens = 4096,
double temperature = default,
double topP = 1,
- global::System.AnyOf>? stop = default,
+ global::G.AnyOf>? stop = default,
bool stream = false,
global::G.MockResponseConfig? mockResponse = default,
global::System.Collections.Generic.IList? documents = default,
- global::System.AllOf? responseFormat = default,
+ global::G.AllOf? responseFormat = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var request = new global::G.LanguageStudioApiServerDataTypesChatChatRequest
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs
index ac01b3cd68..94dd8fbd79 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs
@@ -22,7 +22,7 @@ public sealed partial class ChatCompletionResponseDeltaChoice
/// - **Subsequent messages** will have an object `{"content": __token__}` with the generated token.
///
[global::Newtonsoft.Json.JsonProperty("delta", Required = global::Newtonsoft.Json.Required.Always)]
- public global::System.AnyOf Delta { get; set; } = default!;
+ public global::G.AnyOf Delta { get; set; } = default!;
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs
index 57376df461..6d41045cf7 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs
@@ -75,19 +75,19 @@ public sealed partial class CompletionBody
///
///
[global::Newtonsoft.Json.JsonProperty("frequencyPenalty")]
- public global::System.AllOf? FrequencyPenalty { get; set; }
+ public global::G.AllOf? FrequencyPenalty { get; set; }
///
///
///
[global::Newtonsoft.Json.JsonProperty("presencePenalty")]
- public global::System.AllOf? PresencePenalty { get; set; }
+ public global::G.AllOf? PresencePenalty { get; set; }
///
///
///
[global::Newtonsoft.Json.JsonProperty("countPenalty")]
- public global::System.AllOf? CountPenalty { get; set; }
+ public global::G.AllOf? CountPenalty { get; set; }
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs
index 11abf36aae..75975d6e4a 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs
@@ -21,7 +21,7 @@ public sealed partial class EmbeddingsBody
/// Default Value: segment
///
[global::Newtonsoft.Json.JsonProperty("type")]
- public global::System.AllOf? Type { get; set; } = global::G.EmbedType.Segment;
+ public global::G.AllOf? Type { get; set; } = global::G.EmbedType.Segment;
///
/// Additional properties that are not explicitly defined in the schema
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs
index a7f88bb965..afe85b7013 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs
@@ -21,7 +21,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest
/// messages
///
[global::Newtonsoft.Json.JsonProperty("messages", Required = global::Newtonsoft.Json.Required.Always)]
- public global::System.Collections.Generic.IList> Messages { get; set; } = default!;
+ public global::System.Collections.Generic.IList> Messages { get; set; } = default!;
///
///
@@ -57,7 +57,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest
///
///
[global::Newtonsoft.Json.JsonProperty("stop")]
- public global::System.AnyOf>? Stop { get; set; }
+ public global::G.AnyOf>? Stop { get; set; }
///
/// Whether or not to stream the result one token at a time using
@@ -86,7 +86,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest
///
///
[global::Newtonsoft.Json.JsonProperty("response_format")]
- public global::System.AllOf? ResponseFormat { get; set; }
+ public global::G.AllOf? ResponseFormat { get; set; }
///
/// Additional properties that are not explicitly defined in the schema
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs
index 1bae7fc091..7536ddac8b 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs
@@ -27,19 +27,19 @@ public sealed partial class LanguageStudioApiServerDataTypesJ2ChatChatRequest
///
///
[global::Newtonsoft.Json.JsonProperty("frequencyPenalty")]
- public global::System.AllOf? FrequencyPenalty { get; set; }
+ public global::G.AllOf? FrequencyPenalty { get; set; }
///
///
///
[global::Newtonsoft.Json.JsonProperty("presencePenalty")]
- public global::System.AllOf? PresencePenalty { get; set; }
+ public global::G.AllOf? PresencePenalty { get; set; }
///
///
///
[global::Newtonsoft.Json.JsonProperty("countPenalty")]
- public global::System.AllOf? CountPenalty { get; set; }
+ public global::G.AllOf? CountPenalty { get; set; }
///
/// Default Value: 1
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs
index f116ac4c41..cfdf2ee415 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs
@@ -57,7 +57,7 @@ public sealed partial class LibraryAnswerRequest
/// Default Value: default
///
[global::Newtonsoft.Json.JsonProperty("retrievalStrategy")]
- public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
+ public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs
index eaa08f3c0b..34fa6f85ea 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs
@@ -45,7 +45,7 @@ public sealed partial class LibrarySearchRequest
/// Default Value: default
///
[global::Newtonsoft.Json.JsonProperty("retrievalStrategy")]
- public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
+ public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
///
/// Default Value: 1
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs
index 6b6d94964f..8c035a5c3a 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs
@@ -21,7 +21,7 @@ public sealed partial class ParaphraseBody
/// Default Value: general
///
[global::Newtonsoft.Json.JsonProperty("style")]
- public global::System.AllOf? Style { get; set; } = global::G.StyleType.General;
+ public global::G.AllOf? Style { get; set; } = global::G.StyleType.General;
///
/// Default Value: 0
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs
index 829e8b106e..aca8da89d6 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs
@@ -15,7 +15,7 @@ public sealed partial class ValidationError
///
///
[global::Newtonsoft.Json.JsonProperty("loc", Required = global::Newtonsoft.Json.Required.Always)]
- public global::System.Collections.Generic.IList> Loc { get; set; } = default!;
+ public global::System.Collections.Generic.IList> Loc { get; set; } = default!;
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs
index 02d62b410f..8c28dcde92 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs
@@ -110,7 +110,7 @@ partial void ProcessV1ParaphrazeResponseContent(
///
public async global::System.Threading.Tasks.Task V1ParaphrazeAsync(
string text,
- global::System.AllOf? style = default,
+ global::G.AllOf? style = default,
int startIndex = 0,
int endIndex = default,
global::System.Threading.CancellationToken cancellationToken = default)
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs
index 7dbb502b8b..ec0e94d1cf 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs
@@ -124,7 +124,7 @@ partial void ProcessV1LibraryAnswerResponseContent(
global::System.Collections.Generic.IList? fileIds = default,
global::G.AnswerLength? answerLength = default,
global::G.Mode? mode = default,
- global::System.AllOf? retrievalStrategy = default,
+ global::G.AllOf? retrievalStrategy = default,
double retrievalSimilarityThreshold = default,
double hybridSearchAlpha = default,
global::System.Threading.CancellationToken cancellationToken = default)
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs
index 9abf4e0929..1ede5b4328 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs
@@ -119,7 +119,7 @@ partial void ProcessV1LibrarySearchResponseContent(
string? path = default,
global::System.Collections.Generic.IList? labels = default,
global::System.Collections.Generic.IList? fileIds = default,
- global::System.AllOf? retrievalStrategy = default,
+ global::G.AllOf? retrievalStrategy = default,
int maxNeighbors = 1,
double retrievalSimilarityThreshold = default,
double hybridSearchAlpha = default,
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs
index 9ea95f4cbc..3cf14720fe 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs
index 2e5f47dd3f..f9f2524e96 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs
index 8333f3c3e9..a4e52ba19a 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs
index 990d56583d..18a3dcbe54 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs
@@ -106,7 +106,7 @@ partial void ProcessV1EmbedResponseContent(
///
public async global::System.Threading.Tasks.Task V1EmbedAsync(
global::System.Collections.Generic.IList texts,
- global::System.AllOf? type = default,
+ global::G.AllOf? type = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var request = new global::G.EmbeddingsBody
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs
index 434c8b9061..7d3cae6971 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs
@@ -141,9 +141,9 @@ partial void ProcessV1J2UltraChatResponseContent(
global::System.Collections.Generic.IList messages,
string system,
string? model = "j2-ultra",
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int numResults = 1,
double temperature = 0.7,
int maxTokens = 300,
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs
index 94326ab226..79683fbf37 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs
index 3905e50aec..666b45ca07 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2GrandeCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs
index dc96f72b10..73d4c9a870 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeInstructCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs
index 3f94d3bb02..f833ef6b2d 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2JumboCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs
index 996c0b65f2..deb997aad1 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2JumboComplete2ResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs
index ecdbdb46e8..ac4043cac5 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2JumboInstructCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs
index 6ebf4579b1..38e52295cb 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2LargeCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs
index 0360f3e438..99df316959 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2LargeCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs
index 918410732a..5944a7db73 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2LargeInstructCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs
index 61c3cba9cf..7780cda98f 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2LightCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs
index 5b8759de85..e98af51a3e 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2LightCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs
index 8275f9230c..d41ed06804 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2MidCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs
index 7d2853c198..6b423e861d 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2MidCustomModelCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs
index 4016a04f35..d0636625f3 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs
@@ -151,9 +151,9 @@ partial void ProcessV1J2UltraCompleteResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs
index 956596be5b..c3807720b6 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs
@@ -159,9 +159,9 @@ partial void ProcessV1J2UltraComplete2ResponseContent(
global::System.Collections.Generic.IList? stopSequences = default,
int topKReturn = 0,
global::G.CompletionBodyLogitBias? logitBias = default,
- global::System.AllOf? frequencyPenalty = default,
- global::System.AllOf? presencePenalty = default,
- global::System.AllOf? countPenalty = default,
+ global::G.AllOf? frequencyPenalty = default,
+ global::G.AllOf? presencePenalty = default,
+ global::G.AllOf? countPenalty = default,
int epoch = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs
index 641f7364ea..abbbf36370 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs
@@ -36,7 +36,7 @@ partial void ProcessV1ChatCompleteResponseContent(
///
/// The token to cancel the operation with
///
- public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
+ public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
string authorization,
global::G.LanguageStudioApiServerDataTypesChatChatRequest request,
global::System.Threading.CancellationToken cancellationToken = default)
@@ -102,7 +102,7 @@ partial void ProcessV1ChatCompleteResponseContent(
}
return
- global::System.Text.Json.JsonSerializer.Deserialize>?>(__content, _jsonSerializerOptions) ??
+ global::System.Text.Json.JsonSerializer.Deserialize>?>(__content, _jsonSerializerOptions) ??
throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
}
@@ -146,20 +146,20 @@ partial void ProcessV1ChatCompleteResponseContent(
///
/// The token to cancel the operation with
///
- public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
+ public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync(
string authorization,
global::G.ModelName model,
- global::System.Collections.Generic.IList> messages,
+ global::System.Collections.Generic.IList> messages,
global::System.Collections.Generic.IList? tools = default,
int n = 1,
int maxTokens = 4096,
double temperature = default,
double topP = 1,
- global::System.AnyOf>? stop = default,
+ global::G.AnyOf>? stop = default,
bool stream = false,
global::G.MockResponseConfig? mockResponse = default,
global::System.Collections.Generic.IList? documents = default,
- global::System.AllOf? responseFormat = default,
+ global::G.AllOf? responseFormat = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var request = new global::G.LanguageStudioApiServerDataTypesChatChatRequest
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs
index 561c54d6df..e5cd4a7d17 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs
@@ -25,7 +25,7 @@ public sealed partial class ChatCompletionResponseDeltaChoice
[global::System.Text.Json.Serialization.JsonPropertyName("delta")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))]
[global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.AnyOf Delta { get; set; }
+ public required global::G.AnyOf Delta { get; set; }
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs
index dc3d255d82..0d5abfa4b9 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs
@@ -77,21 +77,21 @@ public sealed partial class CompletionBody
///
[global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? FrequencyPenalty { get; set; }
+ public global::G.AllOf? FrequencyPenalty { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? PresencePenalty { get; set; }
+ public global::G.AllOf? PresencePenalty { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("countPenalty")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? CountPenalty { get; set; }
+ public global::G.AllOf? CountPenalty { get; set; }
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs
index a97bddbdc5..df51b41150 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs
@@ -23,7 +23,7 @@ public sealed partial class EmbeddingsBody
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? Type { get; set; } = global::G.EmbedType.Segment;
+ public global::G.AllOf? Type { get; set; } = global::G.EmbedType.Segment;
///
/// Additional properties that are not explicitly defined in the schema
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs
index 667ff3d993..4b2585486c 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs
@@ -24,7 +24,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest
///
[global::System.Text.Json.Serialization.JsonPropertyName("messages")]
[global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Collections.Generic.IList> Messages { get; set; }
+ public required global::System.Collections.Generic.IList> Messages { get; set; }
///
///
@@ -61,7 +61,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest
///
[global::System.Text.Json.Serialization.JsonPropertyName("stop")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))]
- public global::System.AnyOf>? Stop { get; set; }
+ public global::G.AnyOf>? Stop { get; set; }
///
/// Whether or not to stream the result one token at a time using
@@ -91,7 +91,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest
///
[global::System.Text.Json.Serialization.JsonPropertyName("response_format")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? ResponseFormat { get; set; }
+ public global::G.AllOf? ResponseFormat { get; set; }
///
/// Additional properties that are not explicitly defined in the schema
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs
index 584f304f67..46111e7ffc 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs
@@ -30,21 +30,21 @@ public sealed partial class LanguageStudioApiServerDataTypesJ2ChatChatRequest
///
[global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? FrequencyPenalty { get; set; }
+ public global::G.AllOf? FrequencyPenalty { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? PresencePenalty { get; set; }
+ public global::G.AllOf? PresencePenalty { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("countPenalty")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? CountPenalty { get; set; }
+ public global::G.AllOf? CountPenalty { get; set; }
///
/// Default Value: 1
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs
index c683e70562..971acd1f68 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs
@@ -61,7 +61,7 @@ public sealed partial class LibraryAnswerRequest
///
[global::System.Text.Json.Serialization.JsonPropertyName("retrievalStrategy")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
+ public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs
index 1e8f2c2f08..efaf82cce6 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs
@@ -47,7 +47,7 @@ public sealed partial class LibrarySearchRequest
///
[global::System.Text.Json.Serialization.JsonPropertyName("retrievalStrategy")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
+ public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default;
///
/// Default Value: 1
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs
index e889a2fee5..5b2282a39f 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs
@@ -23,7 +23,7 @@ public sealed partial class ParaphraseBody
///
[global::System.Text.Json.Serialization.JsonPropertyName("style")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))]
- public global::System.AllOf? Style { get; set; } = global::G.StyleType.General;
+ public global::G.AllOf? Style { get; set; } = global::G.StyleType.General;
///
/// Default Value: 0
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs
index 1868a06a87..4bbd0af7c0 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs
@@ -16,7 +16,7 @@ public sealed partial class ValidationError
///
[global::System.Text.Json.Serialization.JsonPropertyName("loc")]
[global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Collections.Generic.IList> Loc { get; set; }
+ public required global::System.Collections.Generic.IList> Loc { get; set; }
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs
index 5e0a54a47f..17e7e27342 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs
@@ -110,7 +110,7 @@ partial void ProcessV1ParaphrazeResponseContent(
///
public async global::System.Threading.Tasks.Task V1ParaphrazeAsync(
string text,
- global::System.AllOf? style = default,
+ global::G.AllOf? style = default,
int startIndex = 0,
int endIndex = default,
global::System.Threading.CancellationToken cancellationToken = default)
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs
index 68250af9ee..6271763003 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs
@@ -124,7 +124,7 @@ partial void ProcessV1LibraryAnswerResponseContent(
global::System.Collections.Generic.IList? fileIds = default,
global::G.AnswerLength? answerLength = default,
global::G.Mode? mode = default,
- global::System.AllOf? retrievalStrategy = default,
+ global::G.AllOf? retrievalStrategy = default,
double retrievalSimilarityThreshold = default,
double hybridSearchAlpha = default,
global::System.Threading.CancellationToken cancellationToken = default)
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs
index dcb1d3c03f..325b9da68e 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs
@@ -119,7 +119,7 @@ partial void ProcessV1LibrarySearchResponseContent(
string? path = default,
global::System.Collections.Generic.IList? labels = default,
global::System.Collections.Generic.IList? fileIds = default,
- global::System.AllOf? retrievalStrategy = default,
+ global::G.AllOf? retrievalStrategy = default,
int maxNeighbors = 1,
double retrievalSimilarityThreshold = default,
double hybridSearchAlpha = default,
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs
index 065b7b7667..28122c230f 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs
@@ -4,10 +4,10 @@
namespace AutoSDK.JsonConverters
{
///
- public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
+ public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
{
///
- public override global::System.AllOf Read(
+ public override global::G.AllOf Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -25,7 +25,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso
{
}
- var result = new global::System.AllOf(
+ var result = new global::G.AllOf(
value1
);
@@ -40,7 +40,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::System.AllOf value,
+ global::G.AllOf value,
global::System.Text.Json.JsonSerializerOptions options)
{
options = options ?? throw new global::System.ArgumentNullException(nameof(options));
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs
index e43ac28aeb..f1d60f1cc7 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs
@@ -9,7 +9,7 @@ public sealed class AllOfJsonConverterFactory1 : global::System.Text.Json.Serial
///
public override bool CanConvert(global::System.Type? typeToConvert)
{
- return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AllOf<>);
+ return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AllOf<>);
}
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs
index ae666f4e9e..46337d368c 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs
@@ -4,10 +4,10 @@
namespace AutoSDK.JsonConverters
{
///
- public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
+ public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
{
///
- public override global::System.AnyOf Read(
+ public override global::G.AnyOf Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization
{
}
- var result = new global::System.AnyOf(
+ var result = new global::G.AnyOf(
value1,
value2
);
@@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::System.AnyOf value,
+ global::G.AnyOf value,
global::System.Text.Json.JsonSerializerOptions options)
{
options = options ?? throw new global::System.ArgumentNullException(nameof(options));
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs
index fff185313c..f5ed7f5051 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs
@@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial
///
public override bool CanConvert(global::System.Type? typeToConvert)
{
- return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>);
+ return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>);
}
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs
index dc36115487..0f6c5aea48 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs
@@ -4,10 +4,10 @@
namespace AutoSDK.JsonConverters
{
///
- public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
+ public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
{
///
- public override global::System.OneOf Read(
+ public override global::G.OneOf Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria
{
}
- var result = new global::System.OneOf(
+ var result = new global::G.OneOf(
value1,
value2,
value3,
@@ -85,7 +85,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::System.OneOf value,
+ global::G.OneOf value,
global::System.Text.Json.JsonSerializerOptions options)
{
options = options ?? throw new global::System.ArgumentNullException(nameof(options));
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs
index 8193f367d6..2bca2bec47 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs
@@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory4 : global::System.Text.Json.Serial
///
public override bool CanConvert(global::System.Type? typeToConvert)
{
- return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,>);
+ return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,>);
}
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs
index 9ea95f4cbc..3cf14720fe 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs
index 8333f3c3e9..a4e52ba19a 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs
@@ -3,7 +3,7 @@
#nullable enable
-namespace System
+namespace G
{
///
///
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs
index 793533eb4c..4527e4ce72 100644
--- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs
+++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs
@@ -308,7 +308,7 @@ partial void ProcessCreateMessageResponseContent(
///