From fd2ff650a00ccf7c28a91b9689d942e855452bf0 Mon Sep 17 00:00:00 2001 From: stainless-bot Date: Wed, 4 Dec 2024 09:48:10 +0000 Subject: [PATCH] chore: make the `Omit` type public --- src/groq/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/groq/__init__.py b/src/groq/__init__.py index 25f858ed..07f77a63 100644 --- a/src/groq/__init__.py +++ b/src/groq/__init__.py @@ -1,7 +1,7 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from . import types -from ._types import NOT_GIVEN, NoneType, NotGiven, Transport, ProxiesTypes +from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes from ._utils import file_from_path from ._client import Groq, Client, Stream, Timeout, AsyncGroq, Transport, AsyncClient, AsyncStream, RequestOptions from ._models import BaseModel @@ -36,6 +36,7 @@ "ProxiesTypes", "NotGiven", "NOT_GIVEN", + "Omit", "GroqError", "APIError", "APIStatusError",