diff --git a/src/libs/DeepInfra/Generated/DeepInfra.Models.OpenAIBatchesInEndpoint.g.cs b/src/libs/DeepInfra/Generated/DeepInfra.Models.OpenAIBatchesInEndpoint.g.cs
index ccd4ef44..9986373c 100644
--- a/src/libs/DeepInfra/Generated/DeepInfra.Models.OpenAIBatchesInEndpoint.g.cs
+++ b/src/libs/DeepInfra/Generated/DeepInfra.Models.OpenAIBatchesInEndpoint.g.cs
@@ -11,11 +11,11 @@ public enum OpenAIBatchesInEndpoint
///
///
///
- Dividev1DividechatDividecompletions,
+ V1ChatCompletions,
///
///
///
- Dividev1Dividecompletions,
+ V1Completions,
}
///
@@ -30,8 +30,8 @@ public static string ToValueString(this OpenAIBatchesInEndpoint value)
{
return value switch
{
- OpenAIBatchesInEndpoint.Dividev1DividechatDividecompletions => "/v1/chat/completions",
- OpenAIBatchesInEndpoint.Dividev1Dividecompletions => "/v1/completions",
+ OpenAIBatchesInEndpoint.V1ChatCompletions => "/v1/chat/completions",
+ OpenAIBatchesInEndpoint.V1Completions => "/v1/completions",
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
};
}
@@ -42,8 +42,8 @@ public static string ToValueString(this OpenAIBatchesInEndpoint value)
{
return value switch
{
- "/v1/chat/completions" => OpenAIBatchesInEndpoint.Dividev1DividechatDividecompletions,
- "/v1/completions" => OpenAIBatchesInEndpoint.Dividev1Dividecompletions,
+ "/v1/chat/completions" => OpenAIBatchesInEndpoint.V1ChatCompletions,
+ "/v1/completions" => OpenAIBatchesInEndpoint.V1Completions,
_ => null,
};
}