From 1532b9e16bc44b74db22968cc06ba27533c55e27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 29 Mar 2026 05:04:47 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../DeepInfra.Models.OpenAIBatchesInEndpoint.g.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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, }; }