From b4beba9ee6a2553a6cbdd956ceeb4280b9e84675 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:58:36 +0000 Subject: [PATCH] fix(client): remove duplicate types --- src/openai/types/shared/all_models.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/openai/types/shared/all_models.py b/src/openai/types/shared/all_models.py index c4635e2140..db8410773e 100644 --- a/src/openai/types/shared/all_models.py +++ b/src/openai/types/shared/all_models.py @@ -8,9 +8,5 @@ __all__ = ["AllModels"] AllModels: TypeAlias = Union[ - str, - ChatModel, - str, - ChatModel, - Literal["o1-pro", "o1-pro-2025-03-19", "computer-use-preview", "computer-use-preview-2025-03-11"], + str, ChatModel, Literal["o1-pro", "o1-pro-2025-03-19", "computer-use-preview", "computer-use-preview-2025-03-11"] ]