diff --git a/src/libs/Simli/Generated/Simli.AnyOf.2.g.cs b/src/libs/Simli/Generated/Simli.AnyOf.2.g.cs
index 73ac2d0..b6a93cd 100644
--- a/src/libs/Simli/Generated/Simli.AnyOf.2.g.cs
+++ b/src/libs/Simli/Generated/Simli.AnyOf.2.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public readonly partial struct AnyOf : global::System.IEquatable>
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T1? Value1 { get; init; }
@@ -18,7 +18,7 @@ namespace Simli
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
@@ -26,7 +26,7 @@ namespace Simli
public bool IsValue1 => Value1 != null;
///
- ///
+ ///
///
public bool TryPickValue1(
#if NET6_0_OR_GREATER
@@ -39,14 +39,14 @@ public bool TryPickValue1(
}
///
- ///
+ ///
///
public T1 PickValue1() => IsValue1
? Value1!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T2? Value2 { get; init; }
@@ -55,7 +55,7 @@ public T1 PickValue1() => IsValue1
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))]
@@ -63,7 +63,7 @@ public T1 PickValue1() => IsValue1
public bool IsValue2 => Value2 != null;
///
- ///
+ ///
///
public bool TryPickValue2(
#if NET6_0_OR_GREATER
@@ -76,23 +76,23 @@ public bool TryPickValue2(
}
///
- ///
+ ///
///
public T2 PickValue2() => IsValue2
? Value2!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator AnyOf(T1 value) => new AnyOf((T1?)value);
///
- ///
+ ///
///
public static implicit operator T1?(AnyOf @this) => @this.Value1;
///
- ///
+ ///
///
public AnyOf(T1? value)
{
@@ -100,22 +100,22 @@ public AnyOf(T1? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue1(T1? value) => new AnyOf(value);
///
- ///
+ ///
///
public static implicit operator AnyOf(T2 value) => new AnyOf((T2?)value);
///
- ///
+ ///
///
public static implicit operator T2?(AnyOf @this) => @this.Value2;
///
- ///
+ ///
///
public AnyOf(T2? value)
{
@@ -123,12 +123,12 @@ public AnyOf(T2? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue2(T2? value) => new AnyOf(value);
///
- ///
+ ///
///
public AnyOf(
T1? value1,
@@ -140,23 +140,23 @@ public AnyOf(
}
///
- ///
+ ///
///
public object? Object =>
Value2 as object ??
- Value1 as object
+ Value1 as object
;
///
- ///
+ ///
///
public override string? ToString() =>
Value1?.ToString() ??
- Value2?.ToString()
+ Value2?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -164,7 +164,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? value1 = null,
@@ -189,7 +189,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? value1 = null,
@@ -213,7 +213,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? value1 = null,
@@ -236,7 +236,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -257,18 +257,18 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(AnyOf other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
;
}
///
- ///
+ ///
///
public static bool operator ==(AnyOf obj1, AnyOf obj2)
{
@@ -276,7 +276,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public static bool operator !=(AnyOf obj1, AnyOf obj2)
{
@@ -284,7 +284,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/Simli/Generated/Simli.AnyOf.3.g.cs b/src/libs/Simli/Generated/Simli.AnyOf.3.g.cs
index ad66812..34af167 100644
--- a/src/libs/Simli/Generated/Simli.AnyOf.3.g.cs
+++ b/src/libs/Simli/Generated/Simli.AnyOf.3.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public readonly partial struct AnyOf : global::System.IEquatable>
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T1? Value1 { get; init; }
@@ -18,7 +18,7 @@ namespace Simli
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
@@ -26,7 +26,7 @@ namespace Simli
public bool IsValue1 => Value1 != null;
///
- ///
+ ///
///
public bool TryPickValue1(
#if NET6_0_OR_GREATER
@@ -39,14 +39,14 @@ public bool TryPickValue1(
}
///
- ///
+ ///
///
public T1 PickValue1() => IsValue1
? Value1!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T2? Value2 { get; init; }
@@ -55,7 +55,7 @@ public T1 PickValue1() => IsValue1
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))]
@@ -63,7 +63,7 @@ public T1 PickValue1() => IsValue1
public bool IsValue2 => Value2 != null;
///
- ///
+ ///
///
public bool TryPickValue2(
#if NET6_0_OR_GREATER
@@ -76,14 +76,14 @@ public bool TryPickValue2(
}
///
- ///
+ ///
///
public T2 PickValue2() => IsValue2
? Value2!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T3? Value3 { get; init; }
@@ -92,7 +92,7 @@ public T2 PickValue2() => IsValue2
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value3))]
@@ -100,7 +100,7 @@ public T2 PickValue2() => IsValue2
public bool IsValue3 => Value3 != null;
///
- ///
+ ///
///
public bool TryPickValue3(
#if NET6_0_OR_GREATER
@@ -113,23 +113,23 @@ public bool TryPickValue3(
}
///
- ///
+ ///
///
public T3 PickValue3() => IsValue3
? Value3!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value3' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator AnyOf(T1 value) => new AnyOf((T1?)value);
///
- ///
+ ///
///
public static implicit operator T1?(AnyOf @this) => @this.Value1;
///
- ///
+ ///
///
public AnyOf(T1? value)
{
@@ -137,22 +137,22 @@ public AnyOf(T1? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue1(T1? value) => new AnyOf(value);
///
- ///
+ ///
///
public static implicit operator AnyOf(T2 value) => new AnyOf((T2?)value);
///
- ///
+ ///
///
public static implicit operator T2?(AnyOf @this) => @this.Value2;
///
- ///
+ ///
///
public AnyOf(T2? value)
{
@@ -160,22 +160,22 @@ public AnyOf(T2? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue2(T2? value) => new AnyOf(value);
///
- ///
+ ///
///
public static implicit operator AnyOf(T3 value) => new AnyOf((T3?)value);
///
- ///
+ ///
///
public static implicit operator T3?(AnyOf @this) => @this.Value3;
///
- ///
+ ///
///
public AnyOf(T3? value)
{
@@ -183,12 +183,12 @@ public AnyOf(T3? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue3(T3? value) => new AnyOf(value);
///
- ///
+ ///
///
public AnyOf(
T1? value1,
@@ -202,25 +202,25 @@ public AnyOf(
}
///
- ///
+ ///
///
public object? Object =>
Value3 as object ??
Value2 as object ??
- Value1 as object
+ Value1 as object
;
///
- ///
+ ///
///
public override string? ToString() =>
Value1?.ToString() ??
Value2?.ToString() ??
- Value3?.ToString()
+ Value3?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -228,7 +228,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? value1 = null,
@@ -258,7 +258,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? value1 = null,
@@ -288,7 +288,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? value1 = null,
@@ -316,7 +316,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -339,19 +339,19 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(AnyOf other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) &&
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3)
;
}
///
- ///
+ ///
///
public static bool operator ==(AnyOf obj1, AnyOf obj2)
{
@@ -359,7 +359,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public static bool operator !=(AnyOf obj1, AnyOf obj2)
{
@@ -367,7 +367,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/Simli/Generated/Simli.ISimliClient.g.cs b/src/libs/Simli/Generated/Simli.ISimliClient.g.cs
index 59c2707..8cfbce6 100644
--- a/src/libs/Simli/Generated/Simli.ISimliClient.g.cs
+++ b/src/libs/Simli/Generated/Simli.ISimliClient.g.cs
@@ -39,7 +39,7 @@ public partial interface ISimliClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProvider.g.cs
index 6f2d6dd..b44e901 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentRequestLlmProviderJsonConverter : global::System.Text.J
{
return global::Simli.AgentRequestLlmProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProviderNullable.g.cs
index b742fe0..3d361c2 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestLlmProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentRequestLlmProviderNullableJsonConverter : global::Syste
{
return global::Simli.AgentRequestLlmProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProvider.g.cs
index 9c2d8a0..53a3eff 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentRequestVoiceProviderJsonConverter : global::System.Text
{
return global::Simli.AgentRequestVoiceProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProviderNullable.g.cs
index e3583d7..8c6bec7 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentRequestVoiceProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentRequestVoiceProviderNullableJsonConverter : global::Sys
{
return global::Simli.AgentRequestVoiceProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProvider.g.cs
index cc11372..d83dac2 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentResponseLlmProviderJsonConverter : global::System.Text.
{
return global::Simli.AgentResponseLlmProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProviderNullable.g.cs
index 75ef6bd..de8821b 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseLlmProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentResponseLlmProviderNullableJsonConverter : global::Syst
{
return global::Simli.AgentResponseLlmProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProvider.g.cs
index ea39da8..bb0ee5e 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentResponseVoiceProviderJsonConverter : global::System.Tex
{
return global::Simli.AgentResponseVoiceProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProviderNullable.g.cs
index 99de35e..f45f8a6 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentResponseVoiceProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentResponseVoiceProviderNullableJsonConverter : global::Sy
{
return global::Simli.AgentResponseVoiceProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProvider.g.cs
index a795ab5..6efc65c 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentUpdateLlmProviderJsonConverter : global::System.Text.Js
{
return global::Simli.AgentUpdateLlmProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProviderNullable.g.cs
index c9f3e00..cdbf3b9 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateLlmProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentUpdateLlmProviderNullableJsonConverter : global::System
{
return global::Simli.AgentUpdateLlmProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProvider.g.cs
index eef69fa..acd5498 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentUpdateVoiceProviderJsonConverter : global::System.Text.
{
return global::Simli.AgentUpdateVoiceProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProviderNullable.g.cs
index 600640a..3ba210e 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AgentUpdateVoiceProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AgentUpdateVoiceProviderNullableJsonConverter : global::Syst
{
return global::Simli.AgentUpdateVoiceProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormat.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormat.g.cs
index 618b7c6..262da02 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormat.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormat.g.cs
@@ -20,7 +20,7 @@ public sealed class AudioToVideoRequestAudioFormatJsonConverter : global::System
{
return global::Simli.AudioToVideoRequestAudioFormatExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormatNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormatNullable.g.cs
index 002db02..44565e7 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormatNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.AudioToVideoRequestAudioFormatNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class AudioToVideoRequestAudioFormatNullableJsonConverter : global
{
return global::Simli.AudioToVideoRequestAudioFormatExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersion.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersion.g.cs
index e40d416..8a7f61c 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersion.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersion.g.cs
@@ -20,7 +20,7 @@ public sealed class CharacterVersionJsonConverter : global::System.Text.Json.Ser
{
return global::Simli.CharacterVersionExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersionNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersionNullable.g.cs
index e74e564..fa188c3 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersionNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.CharacterVersionNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class CharacterVersionNullableJsonConverter : global::System.Text.
{
return global::Simli.CharacterVersionExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModels.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModels.g.cs
index d3c7941..ff3e095 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModels.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModels.g.cs
@@ -20,7 +20,7 @@ public sealed class GoogleModelsJsonConverter : global::System.Text.Json.Seriali
{
return global::Simli.GoogleModelsExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModelsNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModelsNullable.g.cs
index 9f6191f..560be29 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModelsNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.GoogleModelsNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GoogleModelsNullableJsonConverter : global::System.Text.Json
{
return global::Simli.GoogleModelsExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.LlmProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.LlmProvider.g.cs
index eff867e..814cef5 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.LlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.LlmProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class LlmProviderJsonConverter : global::System.Text.Json.Serializ
{
return global::Simli.LlmProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.LlmProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.LlmProviderNullable.g.cs
index 60f4dfc..5396a65 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.LlmProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.LlmProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class LlmProviderNullableJsonConverter : global::System.Text.Json.
{
return global::Simli.LlmProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModels.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModels.g.cs
index ba1e8ed..bc6c1bc 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModels.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModels.g.cs
@@ -20,7 +20,7 @@ public sealed class OpenAIModelsJsonConverter : global::System.Text.Json.Seriali
{
return global::Simli.OpenAIModelsExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModelsNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModelsNullable.g.cs
index 3ded41d..1063e87 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModelsNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.OpenAIModelsNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class OpenAIModelsNullableJsonConverter : global::System.Text.Json
{
return global::Simli.OpenAIModelsExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.SimliModels.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.SimliModels.g.cs
index a71b7ec..17264e2 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.SimliModels.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.SimliModels.g.cs
@@ -20,7 +20,7 @@ public sealed class SimliModelsJsonConverter : global::System.Text.Json.Serializ
{
return global::Simli.SimliModelsExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.SimliModelsNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.SimliModelsNullable.g.cs
index 0287e92..78034be 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.SimliModelsNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.SimliModelsNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class SimliModelsNullableJsonConverter : global::System.Text.Json.
{
return global::Simli.SimliModelsExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersion.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersion.g.cs
index c8a6f2f..8396564 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersion.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersion.g.cs
@@ -20,7 +20,7 @@ public sealed class TrinityVersionJsonConverter : global::System.Text.Json.Seria
{
return global::Simli.TrinityVersionExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersionNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersionNullable.g.cs
index 7812728..4a58570 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersionNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.TrinityVersionNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrinityVersionNullableJsonConverter : global::System.Text.Js
{
return global::Simli.TrinityVersionExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.TtsProvider.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.TtsProvider.g.cs
index 5d7807e..a6facc8 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.TtsProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.TtsProvider.g.cs
@@ -20,7 +20,7 @@ public sealed class TtsProviderJsonConverter : global::System.Text.Json.Serializ
{
return global::Simli.TtsProviderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.TtsProviderNullable.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.TtsProviderNullable.g.cs
index 7997564..c97dabb 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.TtsProviderNullable.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.TtsProviderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TtsProviderNullableJsonConverter : global::System.Text.Json.
{
return global::Simli.TtsProviderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Simli/Generated/Simli.JsonConverters.UnixTimestamp.g.cs b/src/libs/Simli/Generated/Simli.JsonConverters.UnixTimestamp.g.cs
index 9d4ac75..34d6c72 100644
--- a/src/libs/Simli/Generated/Simli.JsonConverters.UnixTimestamp.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonConverters.UnixTimestamp.g.cs
@@ -19,7 +19,7 @@ public class UnixTimestampJsonConverter : global::System.Text.Json.Serialization
{
return global::System.DateTimeOffset.FromUnixTimeSeconds(unixTimestamp);
}
-
+
return global::System.DateTimeOffset.FromUnixTimeMilliseconds(unixTimestamp);
}
if (reader.TryGetInt32(out int unixTimestampInt))
diff --git a/src/libs/Simli/Generated/Simli.JsonSerializerContext.g.cs b/src/libs/Simli/Generated/Simli.JsonSerializerContext.g.cs
index 5ae766a..1c5e85e 100644
--- a/src/libs/Simli/Generated/Simli.JsonSerializerContext.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonSerializerContext.g.cs
@@ -7,7 +7,7 @@
namespace Simli
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
diff --git a/src/libs/Simli/Generated/Simli.JsonSerializerContextTypes.g.cs b/src/libs/Simli/Generated/Simli.JsonSerializerContextTypes.g.cs
index be8114a..744fa56 100644
--- a/src/libs/Simli/Generated/Simli.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Simli/Generated/Simli.JsonSerializerContextTypes.g.cs
@@ -6,288 +6,288 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class JsonSerializerContextTypes
{
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringStringDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringObjectDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Text.Json.JsonElement? JsonElement { get; set; }
///
- ///
+ ///
///
public global::Simli.FacesRequest? Type0 { get; set; }
///
- ///
+ ///
///
public global::System.Guid? Type1 { get; set; }
///
- ///
+ ///
///
public string? Type2 { get; set; }
///
- ///
+ ///
///
public int? Type3 { get; set; }
///
- ///
+ ///
///
public global::Simli.FacesResponse? Type4 { get; set; }
///
- ///
+ ///
///
public global::System.DateTime? Type5 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentResponse? Type6 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentResponseVoiceProvider? Type7 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentResponseLlmProvider? Type8 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentRequest? Type9 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentRequestVoiceProvider? Type10 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentRequestLlmProvider? Type11 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentUpdate? Type12 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentUpdateVoiceProvider? Type13 { get; set; }
///
- ///
+ ///
///
public global::Simli.AgentUpdateLlmProvider? Type14 { get; set; }
///
- ///
+ ///
///
public global::Simli.AudioToVideoRequest? Type15 { get; set; }
///
- ///
+ ///
///
public global::Simli.AudioToVideoRequestAudioFormat? Type16 { get; set; }
///
- ///
+ ///
///
public global::Simli.ConfigurableSessionRequest? Type17 { get; set; }
///
- ///
+ ///
///
public global::Simli.TtsProvider? Type18 { get; set; }
///
- ///
+ ///
///
public object? Type19 { get; set; }
///
- ///
+ ///
///
public global::Simli.CustomLLMConfig? Type20 { get; set; }
///
- ///
+ ///
///
public global::Simli.LLMConfig? Type21 { get; set; }
///
- ///
+ ///
///
public bool? Type22 { get; set; }
///
- ///
+ ///
///
public global::Simli.SimliModels? Type23 { get; set; }
///
- ///
+ ///
///
public global::Simli.GoogleModels? Type24 { get; set; }
///
- ///
+ ///
///
public global::Simli.HTTPValidationError? Type25 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type26 { get; set; }
///
- ///
+ ///
///
public global::Simli.ValidationError? Type27 { get; set; }
///
- ///
+ ///
///
public global::Simli.AnyOf? Type28 { get; set; }
///
- ///
+ ///
///
public global::Simli.OpenAIModels? Type29 { get; set; }
///
- ///
+ ///
///
public global::Simli.LlmProvider? Type30 { get; set; }
///
- ///
+ ///
///
public global::Simli.LiveKitInitializationRequest? Type31 { get; set; }
///
- ///
+ ///
///
public global::Simli.SessionDetails? Type32 { get; set; }
///
- ///
+ ///
///
public global::Simli.StartStreamingSessionRequest? Type33 { get; set; }
///
- ///
+ ///
///
public global::Simli.TokenRequest? Type34 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type35 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList>? Type36 { get; set; }
///
- ///
+ ///
///
public global::Simli.AnyOf? Type37 { get; set; }
///
- ///
+ ///
///
public global::Simli.HistoryRecord? Type38 { get; set; }
///
- ///
+ ///
///
public double? Type39 { get; set; }
///
- ///
+ ///
///
public global::System.DateTimeOffset? Type40 { get; set; }
///
- ///
+ ///
///
public global::Simli.Error? Type41 { get; set; }
///
- ///
+ ///
///
public global::Simli.BodyGenerateFaceIDAPIFacesLegacyCreatePost? Type42 { get; set; }
///
- ///
+ ///
///
public byte[]? Type43 { get; set; }
///
- ///
+ ///
///
public global::Simli.CharacterVersion? Type44 { get; set; }
///
- ///
+ ///
///
public global::Simli.BodyEnqueueGSAGenerationFacesGsCreatePost? Type45 { get; set; }
///
- ///
+ ///
///
public global::Simli.BodyPreprocessImageFacesTrinityPreprocessPost? Type46 { get; set; }
///
- ///
+ ///
///
public global::Simli.TrinityVersion? Type47 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type48 { get; set; }
///
- ///
+ ///
///
public global::Simli.GetIceServersComposeIceGetResponseItem? Type49 { get; set; }
///
- ///
+ ///
///
public global::Simli.StartAudioToVideoSessionComposeTokenPostResponse? Type50 { get; set; }
///
- ///
+ ///
///
public global::Simli.StartAudioToVideoSessionComposeTokenPostResponse2? Type51 { get; set; }
///
- ///
+ ///
///
public global::Simli.AudioToVideoInterfaceStaticAudioPostResponse? Type52 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type53 { get; set; }
///
- ///
+ ///
///
public global::Simli.InitIntegrationsLivekitAgentsPostResponse? Type54 { get; set; }
///
- ///
+ ///
///
public global::Simli.GetHistorySessionsResponse? Type55 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type56 { get; set; }
///
- ///
+ ///
///
public global::Simli.GetRatelimiterSessionsResponse? Type57 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type58 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType0 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType1 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List>? ListType2 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType3 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType4 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType5 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType6 { get; set; }
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentRequest.g.cs
index e99cf76..cb38af9 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentRequest.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class AgentRequest
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("face_id")]
[global::System.Text.Json.Serialization.JsonRequired]
@@ -24,26 +24,26 @@ public sealed partial class AgentRequest
public required string Name { get; set; } = "Untitled Agent";
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("first_message")]
public string? FirstMessage { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("prompt")]
public string? Prompt { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("voice_provider")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Simli.JsonConverters.AgentRequestVoiceProviderJsonConverter))]
public global::Simli.AgentRequestVoiceProvider? VoiceProvider { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("voice_id")]
public global::System.Guid? VoiceId { get; set; }
@@ -62,13 +62,13 @@ public sealed partial class AgentRequest
public string? OwnerId { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language")]
public string? Language { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("emotion")]
public global::System.Guid? Emotion { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentRequestLlmProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentRequestLlmProvider.g.cs
index 6c5a7d8..5dcfc42 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentRequestLlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentRequestLlmProvider.g.cs
@@ -9,15 +9,15 @@ namespace Simli
public enum AgentRequestLlmProvider
{
///
- ///
+ ///
///
Google,
///
- ///
+ ///
///
Openai,
///
- ///
+ ///
///
User,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentRequestVoiceProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentRequestVoiceProvider.g.cs
index 99e9f78..896bb7e 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentRequestVoiceProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentRequestVoiceProvider.g.cs
@@ -4,16 +4,16 @@
namespace Simli
{
///
- ///
+ ///
///
public enum AgentRequestVoiceProvider
{
///
- ///
+ ///
///
Cartesia,
///
- ///
+ ///
///
Elevenlabs,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentResponse.g.cs
index 702b2aa..0cdc45f 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class AgentResponse
{
@@ -16,7 +16,7 @@ public sealed partial class AgentResponse
public required global::System.Guid Id { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("face_id")]
[global::System.Text.Json.Serialization.JsonRequired]
@@ -31,21 +31,21 @@ public sealed partial class AgentResponse
public required string Name { get; set; } = "Untitled Agent";
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("first_message")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string FirstMessage { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("prompt")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Prompt { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("voice_provider")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Simli.JsonConverters.AgentResponseVoiceProviderJsonConverter))]
@@ -53,7 +53,7 @@ public sealed partial class AgentResponse
public required global::Simli.AgentResponseVoiceProvider VoiceProvider { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("voice_id")]
[global::System.Text.Json.Serialization.JsonRequired]
@@ -68,14 +68,14 @@ public sealed partial class AgentResponse
public required string VoiceModel { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Language { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("emotion")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentResponseLlmProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentResponseLlmProvider.g.cs
index ec95fe0..d42d683 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentResponseLlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentResponseLlmProvider.g.cs
@@ -9,15 +9,15 @@ namespace Simli
public enum AgentResponseLlmProvider
{
///
- ///
+ ///
///
Google,
///
- ///
+ ///
///
Openai,
///
- ///
+ ///
///
User,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentResponseVoiceProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentResponseVoiceProvider.g.cs
index c49047a..6204fea 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentResponseVoiceProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentResponseVoiceProvider.g.cs
@@ -4,16 +4,16 @@
namespace Simli
{
///
- ///
+ ///
///
public enum AgentResponseVoiceProvider
{
///
- ///
+ ///
///
Cartesia,
///
- ///
+ ///
///
Elevenlabs,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentUpdate.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentUpdate.g.cs
index 1b500cd..7369a95 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentUpdate.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentUpdate.g.cs
@@ -4,43 +4,43 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class AgentUpdate
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("face_id")]
public global::System.Guid? FaceId { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("name")]
public string? Name { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("first_message")]
public string? FirstMessage { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("prompt")]
public string? Prompt { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("voice_provider")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Simli.JsonConverters.AgentUpdateVoiceProviderJsonConverter))]
public global::Simli.AgentUpdateVoiceProvider? VoiceProvider { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("voice_id")]
public global::System.Guid? VoiceId { get; set; }
@@ -68,25 +68,25 @@ public sealed partial class AgentUpdate
public string? LlmEndpoint { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language")]
public string? Language { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("emotion")]
public global::System.Guid? Emotion { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("max_idle_time")]
public int? MaxIdleTime { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("max_session_length")]
public int? MaxSessionLength { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentUpdateLlmProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentUpdateLlmProvider.g.cs
index 0f9a2c1..a4a7f63 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentUpdateLlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentUpdateLlmProvider.g.cs
@@ -9,15 +9,15 @@ namespace Simli
public enum AgentUpdateLlmProvider
{
///
- ///
+ ///
///
Google,
///
- ///
+ ///
///
Openai,
///
- ///
+ ///
///
User,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AgentUpdateVoiceProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.AgentUpdateVoiceProvider.g.cs
index 7634fa8..99e373c 100644
--- a/src/libs/Simli/Generated/Simli.Models.AgentUpdateVoiceProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AgentUpdateVoiceProvider.g.cs
@@ -4,16 +4,16 @@
namespace Simli
{
///
- ///
+ ///
///
public enum AgentUpdateVoiceProvider
{
///
- ///
+ ///
///
Cartesia,
///
- ///
+ ///
///
Elevenlabs,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.AudioToVideoInterfaceStaticAudioPostResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.AudioToVideoInterfaceStaticAudioPostResponse.g.cs
index a5cd94f..379a1cc 100644
--- a/src/libs/Simli/Generated/Simli.Models.AudioToVideoInterfaceStaticAudioPostResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AudioToVideoInterfaceStaticAudioPostResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class AudioToVideoInterfaceStaticAudioPostResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequest.g.cs
index 07ad15d..1c5a6d0 100644
--- a/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequest.g.cs
@@ -4,26 +4,26 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class AudioToVideoRequest
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("faceId")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string FaceId { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("audioBase64")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string AudioBase64 { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("audioFormat")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Simli.JsonConverters.AudioToVideoRequestAudioFormatJsonConverter))]
diff --git a/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequestAudioFormat.g.cs b/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequestAudioFormat.g.cs
index 196545b..6351f47 100644
--- a/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequestAudioFormat.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.AudioToVideoRequestAudioFormat.g.cs
@@ -4,28 +4,28 @@
namespace Simli
{
///
- ///
+ ///
///
public enum AudioToVideoRequestAudioFormat
{
///
- ///
+ ///
///
Mp3,
///
- ///
+ ///
///
Ogg,
///
- ///
+ ///
///
Pcm16,
///
- ///
+ ///
///
Pcm32,
///
- ///
+ ///
///
Wav,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.BodyEnqueueGSAGenerationFacesGsCreatePost.g.cs b/src/libs/Simli/Generated/Simli.Models.BodyEnqueueGSAGenerationFacesGsCreatePost.g.cs
index 3192bcc..c1d07f5 100644
--- a/src/libs/Simli/Generated/Simli.Models.BodyEnqueueGSAGenerationFacesGsCreatePost.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.BodyEnqueueGSAGenerationFacesGsCreatePost.g.cs
@@ -4,19 +4,19 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class BodyEnqueueGSAGenerationFacesGsCreatePost
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("image")]
[global::System.Text.Json.Serialization.JsonRequired]
public required byte[] Image { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("imagename")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.Models.BodyGenerateFaceIDAPIFacesLegacyCreatePost.g.cs b/src/libs/Simli/Generated/Simli.Models.BodyGenerateFaceIDAPIFacesLegacyCreatePost.g.cs
index 75746f0..240316f 100644
--- a/src/libs/Simli/Generated/Simli.Models.BodyGenerateFaceIDAPIFacesLegacyCreatePost.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.BodyGenerateFaceIDAPIFacesLegacyCreatePost.g.cs
@@ -4,19 +4,19 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class BodyGenerateFaceIDAPIFacesLegacyCreatePost
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("image")]
[global::System.Text.Json.Serialization.JsonRequired]
public required byte[] Image { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("imagename")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.Models.BodyPreprocessImageFacesTrinityPreprocessPost.g.cs b/src/libs/Simli/Generated/Simli.Models.BodyPreprocessImageFacesTrinityPreprocessPost.g.cs
index bd5226d..49cb0bf 100644
--- a/src/libs/Simli/Generated/Simli.Models.BodyPreprocessImageFacesTrinityPreprocessPost.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.BodyPreprocessImageFacesTrinityPreprocessPost.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class BodyPreprocessImageFacesTrinityPreprocessPost
{
diff --git a/src/libs/Simli/Generated/Simli.Models.CharacterVersion.g.cs b/src/libs/Simli/Generated/Simli.Models.CharacterVersion.g.cs
index 70e0cc1..925e2d2 100644
--- a/src/libs/Simli/Generated/Simli.Models.CharacterVersion.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.CharacterVersion.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public enum CharacterVersion
{
///
- ///
+ ///
///
x15,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequest.g.cs
index 50aacce..027d757 100644
--- a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequest.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class ConfigurableSessionRequest
{
@@ -22,7 +22,7 @@ public sealed partial class ConfigurableSessionRequest
public global::Simli.TtsProvider? TtsProvider { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("ttsAPIKey")]
public string? TtsAPIKey { get; set; }
@@ -46,7 +46,7 @@ public sealed partial class ConfigurableSessionRequest
public string? SystemPrompt { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("firstMessage")]
public string? FirstMessage { get; set; }
@@ -70,7 +70,7 @@ public sealed partial class ConfigurableSessionRequest
public string? Language { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("customLLMConfig")]
public global::Simli.CustomLLMConfig? CustomLLMConfig { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestCustomLLMConfig.g.cs b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestCustomLLMConfig.g.cs
index bc7cbe0..08596e9 100644
--- a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestCustomLLMConfig.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestCustomLLMConfig.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class ConfigurableSessionRequestCustomLLMConfig
{
diff --git a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestFirstMessage.g.cs b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestFirstMessage.g.cs
index 1957a40..a69f2a9 100644
--- a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestFirstMessage.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestFirstMessage.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class ConfigurableSessionRequestFirstMessage
{
diff --git a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestTtsAPIKey.g.cs b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestTtsAPIKey.g.cs
index abf58c1..a66eb41 100644
--- a/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestTtsAPIKey.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.ConfigurableSessionRequestTtsAPIKey.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class ConfigurableSessionRequestTtsAPIKey
{
diff --git a/src/libs/Simli/Generated/Simli.Models.CreatePipecatSessionTokenAutoTokenPostResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.CreatePipecatSessionTokenAutoTokenPostResponse.g.cs
index 711a842..3c3dd27 100644
--- a/src/libs/Simli/Generated/Simli.Models.CreatePipecatSessionTokenAutoTokenPostResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.CreatePipecatSessionTokenAutoTokenPostResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class CreatePipecatSessionTokenAutoTokenPostResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.CustomLLMConfig.g.cs b/src/libs/Simli/Generated/Simli.Models.CustomLLMConfig.g.cs
index 1c43b91..2fdb7b8 100644
--- a/src/libs/Simli/Generated/Simli.Models.CustomLLMConfig.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.CustomLLMConfig.g.cs
@@ -4,26 +4,26 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class CustomLLMConfig
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("model")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Model { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("baseURL")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string BaseURL { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("llmAPIKey")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.Models.EnqueueGSAGenerationFacesGsCreatePostResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.EnqueueGSAGenerationFacesGsCreatePostResponse.g.cs
index 4947ddb..48f2e94 100644
--- a/src/libs/Simli/Generated/Simli.Models.EnqueueGSAGenerationFacesGsCreatePostResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.EnqueueGSAGenerationFacesGsCreatePostResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class EnqueueGSAGenerationFacesGsCreatePostResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.Error.g.cs b/src/libs/Simli/Generated/Simli.Models.Error.g.cs
index 8a8fbe9..544dc25 100644
--- a/src/libs/Simli/Generated/Simli.Models.Error.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.Error.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class Error
{
diff --git a/src/libs/Simli/Generated/Simli.Models.FacesRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.FacesRequest.g.cs
index b98f1be..48f00af 100644
--- a/src/libs/Simli/Generated/Simli.Models.FacesRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.FacesRequest.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class FacesRequest
{
diff --git a/src/libs/Simli/Generated/Simli.Models.FacesResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.FacesResponse.g.cs
index fa33d24..2a480ce 100644
--- a/src/libs/Simli/Generated/Simli.Models.FacesResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.FacesResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class FacesResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GenerateFaceIDAPIFacesLegacyCreatePostResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GenerateFaceIDAPIFacesLegacyCreatePostResponse.g.cs
index fac512d..7f11b5a 100644
--- a/src/libs/Simli/Generated/Simli.Models.GenerateFaceIDAPIFacesLegacyCreatePostResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GenerateFaceIDAPIFacesLegacyCreatePostResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GenerateFaceIDAPIFacesLegacyCreatePostResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GetCachedVideoMp4StaticMp4MachineIPFileGetResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetCachedVideoMp4StaticMp4MachineIPFileGetResponse.g.cs
index 7366132..9130c0f 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetCachedVideoMp4StaticMp4MachineIPFileGetResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetCachedVideoMp4StaticMp4MachineIPFileGetResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetCachedVideoMp4StaticMp4MachineIPFileGetResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse.g.cs
index 3146d12..e0feb08 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetCachedVideoStaticHlsMachineIPFileGetResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse2.g.cs b/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse2.g.cs
index 053fe2b..172f6c2 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse2.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetCachedVideoStaticHlsMachineIPFileGetResponse2.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetCachedVideoStaticHlsMachineIPFileGetResponse2
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GetE2ETranscriptAutoTranscriptSessionIdGetResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetE2ETranscriptAutoTranscriptSessionIdGetResponse.g.cs
index baa193e..317d27d 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetE2ETranscriptAutoTranscriptSessionIdGetResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetE2ETranscriptAutoTranscriptSessionIdGetResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetE2ETranscriptAutoTranscriptSessionIdGetResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GetHistorySessionsResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetHistorySessionsResponse.g.cs
index f952219..cdbe0c4 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetHistorySessionsResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetHistorySessionsResponse.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetHistorySessionsResponse
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("sessions")]
public global::System.Collections.Generic.IList? Sessions { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.GetIceServersComposeIceGetResponseItem.g.cs b/src/libs/Simli/Generated/Simli.Models.GetIceServersComposeIceGetResponseItem.g.cs
index 4fe17b5..c62b905 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetIceServersComposeIceGetResponseItem.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetIceServersComposeIceGetResponseItem.g.cs
@@ -4,24 +4,24 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetIceServersComposeIceGetResponseItem
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("urls")]
public string? Urls { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("username")]
public string? Username { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("credential")]
public string? Credential { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.GetRatelimiterSessionsResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetRatelimiterSessionsResponse.g.cs
index c031f70..f057acc 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetRatelimiterSessionsResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetRatelimiterSessionsResponse.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetRatelimiterSessionsResponse
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("currentUsage")]
public int? CurrentUsage { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesGsStatusGetResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesGsStatusGetResponse.g.cs
index 028ffd4..060f77a 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesGsStatusGetResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesGsStatusGetResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetRequestStatusFacesGsStatusGetResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesLegacyStatusGetResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesLegacyStatusGetResponse.g.cs
index 555db3b..113872d 100644
--- a/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesLegacyStatusGetResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GetRequestStatusFacesLegacyStatusGetResponse.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class GetRequestStatusFacesLegacyStatusGetResponse
{
diff --git a/src/libs/Simli/Generated/Simli.Models.GoogleModels.g.cs b/src/libs/Simli/Generated/Simli.Models.GoogleModels.g.cs
index 0aefdfa..f01c3f9 100644
--- a/src/libs/Simli/Generated/Simli.Models.GoogleModels.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.GoogleModels.g.cs
@@ -4,20 +4,20 @@
namespace Simli
{
///
- ///
+ ///
///
public enum GoogleModels
{
///
- ///
+ ///
///
Gemini25Flash,
///
- ///
+ ///
///
Gemini25FlashLitePreview0617,
///
- ///
+ ///
///
Gemini25Pro,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.HTTPValidationError.g.cs b/src/libs/Simli/Generated/Simli.Models.HTTPValidationError.g.cs
index 88307d7..9bd9c4b 100644
--- a/src/libs/Simli/Generated/Simli.Models.HTTPValidationError.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.HTTPValidationError.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class HTTPValidationError
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("detail")]
public global::System.Collections.Generic.IList? Detail { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.HistoryRecord.g.cs b/src/libs/Simli/Generated/Simli.Models.HistoryRecord.g.cs
index 37259e0..3f8d444 100644
--- a/src/libs/Simli/Generated/Simli.Models.HistoryRecord.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.HistoryRecord.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class HistoryRecord
{
diff --git a/src/libs/Simli/Generated/Simli.Models.InitIntegrationsLivekitAgentsPostResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.InitIntegrationsLivekitAgentsPostResponse.g.cs
index 11fd335..3318b82 100644
--- a/src/libs/Simli/Generated/Simli.Models.InitIntegrationsLivekitAgentsPostResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.InitIntegrationsLivekitAgentsPostResponse.g.cs
@@ -4,24 +4,24 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class InitIntegrationsLivekitAgentsPostResponse
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("status")]
public string? Status { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("session_id")]
public global::System.Guid? SessionId { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("destination")]
public string? Destination { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.LLMConfig.g.cs b/src/libs/Simli/Generated/Simli.Models.LLMConfig.g.cs
index 21a9ab1..6c7d673 100644
--- a/src/libs/Simli/Generated/Simli.Models.LLMConfig.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.LLMConfig.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class LLMConfig
{
@@ -23,13 +23,13 @@ public sealed partial class LLMConfig
public global::Simli.LlmProvider? Provider { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("apiKey")]
public string? ApiKey { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("baseURL")]
public string? BaseURL { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.LLMConfigApiKey.g.cs b/src/libs/Simli/Generated/Simli.Models.LLMConfigApiKey.g.cs
index 5dd74ea..e7d7ed5 100644
--- a/src/libs/Simli/Generated/Simli.Models.LLMConfigApiKey.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.LLMConfigApiKey.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class LLMConfigApiKey
{
diff --git a/src/libs/Simli/Generated/Simli.Models.LLMConfigBaseURL.g.cs b/src/libs/Simli/Generated/Simli.Models.LLMConfigBaseURL.g.cs
index 1607ed8..df29030 100644
--- a/src/libs/Simli/Generated/Simli.Models.LLMConfigBaseURL.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.LLMConfigBaseURL.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class LLMConfigBaseURL
{
diff --git a/src/libs/Simli/Generated/Simli.Models.LiveKitInitializationRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.LiveKitInitializationRequest.g.cs
index 0db9371..f7b54e4 100644
--- a/src/libs/Simli/Generated/Simli.Models.LiveKitInitializationRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.LiveKitInitializationRequest.g.cs
@@ -4,26 +4,26 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class LiveKitInitializationRequest
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("session_token")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string SessionToken { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("livekit_token")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string LivekitToken { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("livekit_url")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.Models.LlmProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.LlmProvider.g.cs
index 0ef9ce8..71d5100 100644
--- a/src/libs/Simli/Generated/Simli.Models.LlmProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.LlmProvider.g.cs
@@ -4,20 +4,20 @@
namespace Simli
{
///
- ///
+ ///
///
public enum LlmProvider
{
///
- ///
+ ///
///
Google,
///
- ///
+ ///
///
OpenAI,
///
- ///
+ ///
///
User,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.OpenAIModels.g.cs b/src/libs/Simli/Generated/Simli.Models.OpenAIModels.g.cs
index 6d5a207..1992ce1 100644
--- a/src/libs/Simli/Generated/Simli.Models.OpenAIModels.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.OpenAIModels.g.cs
@@ -4,28 +4,28 @@
namespace Simli
{
///
- ///
+ ///
///
public enum OpenAIModels
{
///
- ///
+ ///
///
Gpt41,
///
- ///
+ ///
///
Gpt41Mini,
///
- ///
+ ///
///
Gpt41Nano,
///
- ///
+ ///
///
Gpt4o,
///
- ///
+ ///
///
Gpt4oMini,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.SessionDetails.g.cs b/src/libs/Simli/Generated/Simli.Models.SessionDetails.g.cs
index 6124d56..f6b5732 100644
--- a/src/libs/Simli/Generated/Simli.Models.SessionDetails.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.SessionDetails.g.cs
@@ -4,19 +4,19 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class SessionDetails
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("roomUrl")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string RoomUrl { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("sessionId")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.Models.SimliModels.g.cs b/src/libs/Simli/Generated/Simli.Models.SimliModels.g.cs
index 176a385..53151b0 100644
--- a/src/libs/Simli/Generated/Simli.Models.SimliModels.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.SimliModels.g.cs
@@ -4,16 +4,16 @@
namespace Simli
{
///
- ///
+ ///
///
public enum SimliModels
{
///
- ///
+ ///
///
Artalk,
///
- ///
+ ///
///
Fasttalk,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse.g.cs b/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse.g.cs
index b15a7c8..030a580 100644
--- a/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class StartAudioToVideoSessionComposeTokenPostResponse
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("session_token")]
public string? SessionToken { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse2.g.cs b/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse2.g.cs
index 4068cb5..02c4f9c 100644
--- a/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse2.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.StartAudioToVideoSessionComposeTokenPostResponse2.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class StartAudioToVideoSessionComposeTokenPostResponse2
{
diff --git a/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequest.g.cs
index 2877de3..2a708a6 100644
--- a/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequest.g.cs
@@ -4,25 +4,25 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class StartStreamingSessionRequest
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("faceId")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string FaceId { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("apiVersion")]
public string? ApiVersion { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("sessionAggregator")]
public string? SessionAggregator { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequestSessionAggregator.g.cs b/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequestSessionAggregator.g.cs
index 4de0f2d..ff57d50 100644
--- a/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequestSessionAggregator.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.StartStreamingSessionRequestSessionAggregator.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class StartStreamingSessionRequestSessionAggregator
{
diff --git a/src/libs/Simli/Generated/Simli.Models.TokenRequest.g.cs b/src/libs/Simli/Generated/Simli.Models.TokenRequest.g.cs
index ef4271c..9486f59 100644
--- a/src/libs/Simli/Generated/Simli.Models.TokenRequest.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.TokenRequest.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class TokenRequest
{
@@ -15,20 +15,20 @@ public sealed partial class TokenRequest
public int? ExpiryStamp { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("simliAPIKey")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string SimliAPIKey { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("llmAPIKey")]
public string? LlmAPIKey { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("ttsAPIKey")]
public string? TtsAPIKey { get; set; }
diff --git a/src/libs/Simli/Generated/Simli.Models.TokenRequestLlmAPIKey.g.cs b/src/libs/Simli/Generated/Simli.Models.TokenRequestLlmAPIKey.g.cs
index d7b9130..8cfc6e9 100644
--- a/src/libs/Simli/Generated/Simli.Models.TokenRequestLlmAPIKey.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.TokenRequestLlmAPIKey.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class TokenRequestLlmAPIKey
{
diff --git a/src/libs/Simli/Generated/Simli.Models.TokenRequestTtsAPIKey.g.cs b/src/libs/Simli/Generated/Simli.Models.TokenRequestTtsAPIKey.g.cs
index 1fc3fd6..8cbaa0b 100644
--- a/src/libs/Simli/Generated/Simli.Models.TokenRequestTtsAPIKey.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.TokenRequestTtsAPIKey.g.cs
@@ -4,7 +4,7 @@
namespace Simli
{
///
- ///
+ ///
///
public sealed partial class TokenRequestTtsAPIKey
{
diff --git a/src/libs/Simli/Generated/Simli.Models.TrinityVersion.g.cs b/src/libs/Simli/Generated/Simli.Models.TrinityVersion.g.cs
index 6d5d5cc..188c588 100644
--- a/src/libs/Simli/Generated/Simli.Models.TrinityVersion.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.TrinityVersion.g.cs
@@ -4,12 +4,12 @@
namespace Simli
{
///
- ///
+ ///
///
public enum TrinityVersion
{
///
- ///
+ ///
///
Gsa10,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.TtsProvider.g.cs b/src/libs/Simli/Generated/Simli.Models.TtsProvider.g.cs
index cc1efa5..39ee38b 100644
--- a/src/libs/Simli/Generated/Simli.Models.TtsProvider.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.TtsProvider.g.cs
@@ -4,24 +4,24 @@
namespace Simli
{
///
- ///
+ ///
///
public enum TtsProvider
{
///
- ///
+ ///
///
Cartesia,
///
- ///
+ ///
///
ElevenLabs,
///
- ///
+ ///
///
PlayHT,
///
- ///
+ ///
///
User,
}
diff --git a/src/libs/Simli/Generated/Simli.Models.ValidationError.g.cs b/src/libs/Simli/Generated/Simli.Models.ValidationError.g.cs
index e9751f2..ae54c62 100644
--- a/src/libs/Simli/Generated/Simli.Models.ValidationError.g.cs
+++ b/src/libs/Simli/Generated/Simli.Models.ValidationError.g.cs
@@ -4,26 +4,26 @@
namespace Simli
{
///
- ///
+ ///
///
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; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("msg")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Msg { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Simli/Generated/Simli.PathBuilder.g.cs b/src/libs/Simli/Generated/Simli.PathBuilder.g.cs
index 42e31e7..e0d9bba 100644
--- a/src/libs/Simli/Generated/Simli.PathBuilder.g.cs
+++ b/src/libs/Simli/Generated/Simli.PathBuilder.g.cs
@@ -266,32 +266,32 @@ public PathBuilder AddRawQueryString(
}
///
- ///
+ ///
///
public class EndPointAuthorization
{
///
- ///
+ ///
///
public string Type { get; set; } = string.Empty;
///
- ///
+ ///
///
public string SchemeId { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Location { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Name { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Value { get; set; } = string.Empty;
}
diff --git a/src/libs/Simli/Generated/Simli.Polyfills.g.cs b/src/libs/Simli/Generated/Simli.Polyfills.g.cs
index 644c5b3..b3db7fb 100644
--- a/src/libs/Simli/Generated/Simli.Polyfills.g.cs
+++ b/src/libs/Simli/Generated/Simli.Polyfills.g.cs
@@ -4,13 +4,13 @@
namespace Simli
{
///
- ///
+ ///
///
public static partial class AutoSdkPolyfills
{
#if !NET6_0_OR_GREATER
///
- ///
+ ///
///
///
///
@@ -23,7 +23,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStringAsync();
}
///
- ///
+ ///
///
///
///
@@ -36,7 +36,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStreamAsync();
}
///
- ///
+ ///
///
///
///
diff --git a/src/libs/Simli/Generated/Simli.Realtime.JsonConverters.UnixTimestamp.g.cs b/src/libs/Simli/Generated/Simli.Realtime.JsonConverters.UnixTimestamp.g.cs
index 3ff8579..6c2845d 100644
--- a/src/libs/Simli/Generated/Simli.Realtime.JsonConverters.UnixTimestamp.g.cs
+++ b/src/libs/Simli/Generated/Simli.Realtime.JsonConverters.UnixTimestamp.g.cs
@@ -19,7 +19,7 @@ public class UnixTimestampJsonConverter : global::System.Text.Json.Serialization
{
return global::System.DateTimeOffset.FromUnixTimeSeconds(unixTimestamp);
}
-
+
return global::System.DateTimeOffset.FromUnixTimeMilliseconds(unixTimestamp);
}
if (reader.TryGetInt32(out int unixTimestampInt))
diff --git a/src/libs/Simli/Generated/Simli.Realtime.JsonSerializerContext.g.cs b/src/libs/Simli/Generated/Simli.Realtime.JsonSerializerContext.g.cs
index 061148e..97c229d 100644
--- a/src/libs/Simli/Generated/Simli.Realtime.JsonSerializerContext.g.cs
+++ b/src/libs/Simli/Generated/Simli.Realtime.JsonSerializerContext.g.cs
@@ -7,7 +7,7 @@
namespace Simli.Realtime
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
@@ -19,12 +19,12 @@ public sealed partial class RealtimeSourceGenerationContext : global::System.Tex
private static readonly global::System.Text.Json.JsonSerializerOptions DefaultOptions = CreateDefaultOptions();
///
- ///
+ ///
///
public static RealtimeSourceGenerationContext Default { get; } = new(DefaultOptions);
///
- ///
+ ///
///
public RealtimeSourceGenerationContext()
: this(DefaultOptions)
@@ -32,7 +32,7 @@ public RealtimeSourceGenerationContext()
}
///
- ///
+ ///
///
public RealtimeSourceGenerationContext(global::System.Text.Json.JsonSerializerOptions? options)
: base(options)
diff --git a/src/libs/Simli/Generated/Simli.Realtime.PathBuilder.g.cs b/src/libs/Simli/Generated/Simli.Realtime.PathBuilder.g.cs
index 3d021cb..fa5b2b3 100644
--- a/src/libs/Simli/Generated/Simli.Realtime.PathBuilder.g.cs
+++ b/src/libs/Simli/Generated/Simli.Realtime.PathBuilder.g.cs
@@ -266,32 +266,32 @@ public PathBuilder AddRawQueryString(
}
///
- ///
+ ///
///
public class EndPointAuthorization
{
///
- ///
+ ///
///
public string Type { get; set; } = string.Empty;
///
- ///
+ ///
///
public string SchemeId { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Location { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Name { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Value { get; set; } = string.Empty;
}
diff --git a/src/libs/Simli/Generated/Simli.Realtime.Polyfills.g.cs b/src/libs/Simli/Generated/Simli.Realtime.Polyfills.g.cs
index 19f279a..52fb105 100644
--- a/src/libs/Simli/Generated/Simli.Realtime.Polyfills.g.cs
+++ b/src/libs/Simli/Generated/Simli.Realtime.Polyfills.g.cs
@@ -4,13 +4,13 @@
namespace Simli.Realtime
{
///
- ///
+ ///
///
public static partial class AutoSdkPolyfills
{
#if !NET6_0_OR_GREATER
///
- ///
+ ///
///
///
///
@@ -23,7 +23,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStringAsync();
}
///
- ///
+ ///
///
///
///
@@ -36,7 +36,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStreamAsync();
}
///
- ///
+ ///
///
///
///
diff --git a/src/libs/Simli/Generated/Simli.Realtime.SimliLivekitRealtimeClient.g.cs b/src/libs/Simli/Generated/Simli.Realtime.SimliLivekitRealtimeClient.g.cs
index abe9b20..142e885 100644
--- a/src/libs/Simli/Generated/Simli.Realtime.SimliLivekitRealtimeClient.g.cs
+++ b/src/libs/Simli/Generated/Simli.Realtime.SimliLivekitRealtimeClient.g.cs
@@ -4,7 +4,7 @@
namespace Simli.Realtime
{
///
- ///
+ ///
///
public sealed partial class SimliLivekitRealtimeClient : global::System.IDisposable, global::System.IAsyncDisposable
{
@@ -261,7 +261,7 @@ public AutoSDKWebSocketUnknownMessageEventArgs(
public event global::System.EventHandler? UnknownMessage;
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; } = global::Simli.Realtime.RealtimeSourceGenerationContext.Default;
diff --git a/src/libs/Simli/Generated/Simli.Realtime.SimliPeerToPeerRealtimeClient.g.cs b/src/libs/Simli/Generated/Simli.Realtime.SimliPeerToPeerRealtimeClient.g.cs
index ae8d017..019ede9 100644
--- a/src/libs/Simli/Generated/Simli.Realtime.SimliPeerToPeerRealtimeClient.g.cs
+++ b/src/libs/Simli/Generated/Simli.Realtime.SimliPeerToPeerRealtimeClient.g.cs
@@ -4,7 +4,7 @@
namespace Simli.Realtime
{
///
- ///
+ ///
///
public sealed partial class SimliPeerToPeerRealtimeClient : global::System.IDisposable, global::System.IAsyncDisposable
{
@@ -261,7 +261,7 @@ public AutoSDKWebSocketUnknownMessageEventArgs(
public event global::System.EventHandler? UnknownMessage;
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; } = global::Simli.Realtime.RealtimeSourceGenerationContext.Default;
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.AudioToVideoInterfaceStaticAudioPost.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.AudioToVideoInterfaceStaticAudioPost.g.cs
index e4360ca..67e7cd4 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.AudioToVideoInterfaceStaticAudioPost.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.AudioToVideoInterfaceStaticAudioPost.g.cs
@@ -139,7 +139,7 @@ partial void ProcessAudioToVideoInterfaceStaticAudioPostResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.DeleteFacesTrinityById.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.DeleteFacesTrinityById.g.cs
index 0bbe011..650d87f 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.DeleteFacesTrinityById.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.DeleteFacesTrinityById.g.cs
@@ -127,7 +127,7 @@ await DeleteFacesTrinityByIdAsResponseAsync(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -319,7 +319,7 @@ await DeleteFacesTrinityByIdAsResponseAsync(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- //
+ //
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -351,7 +351,7 @@ await DeleteFacesTrinityByIdAsResponseAsync(
h => h.Key,
h => h.Value));
}
- //
+ //
if ((int)__response.StatusCode == 401)
{
string? __content_401 = null;
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.EnqueueGSAGenerationFacesGsCreatePost.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.EnqueueGSAGenerationFacesGsCreatePost.g.cs
index 0940f3a..b944085 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.EnqueueGSAGenerationFacesGsCreatePost.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.EnqueueGSAGenerationFacesGsCreatePost.g.cs
@@ -165,7 +165,7 @@ partial void ProcessEnqueueGSAGenerationFacesGsCreatePostResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -662,7 +662,7 @@ request.Imagename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -1115,7 +1115,7 @@ request.Imagename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoMp4StaticMp4MachineIPFileGet.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoMp4StaticMp4MachineIPFileGet.g.cs
index d7f5a74..6ad67b4 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoMp4StaticMp4MachineIPFileGet.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoMp4StaticMp4MachineIPFileGet.g.cs
@@ -140,7 +140,7 @@ partial void ProcessGetCachedVideoMp4StaticMp4MachineIPFileGetResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -333,7 +333,7 @@ partial void ProcessGetCachedVideoMp4StaticMp4MachineIPFileGetResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- //
+ //
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -527,7 +527,7 @@ partial void ProcessGetCachedVideoMp4StaticMp4MachineIPFileGetResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -720,7 +720,7 @@ partial void ProcessGetCachedVideoMp4StaticMp4MachineIPFileGetResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- //
+ //
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoStaticHlsMachineIPFileGet.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoStaticHlsMachineIPFileGet.g.cs
index ed60098..d196359 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoStaticHlsMachineIPFileGet.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetCachedVideoStaticHlsMachineIPFileGet.g.cs
@@ -142,7 +142,7 @@ partial void ProcessGetCachedVideoStaticHlsMachineIPFileGetResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -335,7 +335,7 @@ partial void ProcessGetCachedVideoStaticHlsMachineIPFileGetResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- //
+ //
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -530,7 +530,7 @@ partial void ProcessGetCachedVideoStaticHlsMachineIPFileGetResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -723,7 +723,7 @@ partial void ProcessGetCachedVideoStaticHlsMachineIPFileGetResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- //
+ //
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetFaces.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetFaces.g.cs
index fdc5539..38dde0e 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetFaces.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetFaces.g.cs
@@ -124,7 +124,7 @@ partial void ProcessGetFacesResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetHistorySessions.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetHistorySessions.g.cs
index 3cfc792..da16fc3 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetHistorySessions.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetHistorySessions.g.cs
@@ -154,7 +154,7 @@ partial void ProcessGetHistorySessionsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetIceServersComposeIceGet.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetIceServersComposeIceGet.g.cs
index dfdd925..ce929a5 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetIceServersComposeIceGet.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetIceServersComposeIceGet.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetIceServersComposeIceGetResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetRatelimiterSessions.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetRatelimiterSessions.g.cs
index d2806e0..e8ef4c9 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetRatelimiterSessions.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetRatelimiterSessions.g.cs
@@ -124,7 +124,7 @@ partial void ProcessGetRatelimiterSessionsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.GetRequestStatusFacesGsStatusGet.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.GetRequestStatusFacesGsStatusGet.g.cs
index 11c249b..c9d1820 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.GetRequestStatusFacesGsStatusGet.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.GetRequestStatusFacesGsStatusGet.g.cs
@@ -135,7 +135,7 @@ partial void ProcessGetRequestStatusFacesGsStatusGetResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Simli.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.InitIntegrationsLivekitAgentsPost.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.InitIntegrationsLivekitAgentsPost.g.cs
index 3ca8158..533b268 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.InitIntegrationsLivekitAgentsPost.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.InitIntegrationsLivekitAgentsPost.g.cs
@@ -137,7 +137,7 @@ partial void ProcessInitIntegrationsLivekitAgentsPostResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.PreprocessImageFacesTrinityPreprocessPost.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.PreprocessImageFacesTrinityPreprocessPost.g.cs
index ff1b91c..36387d0 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.PreprocessImageFacesTrinityPreprocessPost.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.PreprocessImageFacesTrinityPreprocessPost.g.cs
@@ -147,7 +147,7 @@ await PreprocessImageFacesTrinityPreprocessPostAsResponseAsync(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -591,7 +591,7 @@ await PreprocessImageFacesTrinityPreprocessPostAsync(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -991,7 +991,7 @@ request.Imagename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.StartAudioToVideoSessionComposeTokenPost.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.StartAudioToVideoSessionComposeTokenPost.g.cs
index dacba54..2ae21bc 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.StartAudioToVideoSessionComposeTokenPost.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.StartAudioToVideoSessionComposeTokenPost.g.cs
@@ -139,7 +139,7 @@ partial void ProcessStartAudioToVideoSessionComposeTokenPostResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
diff --git a/src/libs/Simli/Generated/Simli.SimliClient.g.cs b/src/libs/Simli/Generated/Simli.SimliClient.g.cs
index 39b1c6d..809a086 100644
--- a/src/libs/Simli/Generated/Simli.SimliClient.g.cs
+++ b/src/libs/Simli/Generated/Simli.SimliClient.g.cs
@@ -37,7 +37,7 @@ public sealed partial class SimliClient : global::Simli.ISimliClient, global::Sy
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Simli.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{