Commit 916641e8

stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
2025-03-21 01:58:42
fix(client): remove duplicate types (#2235)
1 parent 6d0ecdd
Changed files (1)
src
openai
types
src/openai/types/shared/all_models.py
@@ -8,9 +8,5 @@ from .chat_model import ChatModel
 __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"]
 ]