diff --git a/pyproject.toml b/pyproject.toml index 8017264..470f6b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gooeyai" -version = "0.0.1-beta22" +version = "0.0.1-beta23" description = "" readme = "README.md" authors = [] diff --git a/src/gooey/__init__.py b/src/gooey/__init__.py index 86305e9..9139402 100644 --- a/src/gooey/__init__.py +++ b/src/gooey/__init__.py @@ -191,6 +191,7 @@ SadTalkerSettings, SadTalkerSettingsPreprocess, SearchReference, + SecuritySchemes, SeoSummaryPageOutput, SeoSummaryPageRequestResponseFormatType, SeoSummaryPageStatusResponse, @@ -473,6 +474,7 @@ "SadTalkerSettings", "SadTalkerSettingsPreprocess", "SearchReference", + "SecuritySchemes", "SeoSummaryPageOutput", "SeoSummaryPageRequestResponseFormatType", "SeoSummaryPageStatusResponse", diff --git a/src/gooey/core/client_wrapper.py b/src/gooey/core/client_wrapper.py index f5866a5..133ff59 100644 --- a/src/gooey/core/client_wrapper.py +++ b/src/gooey/core/client_wrapper.py @@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta22", + "X-Fern-SDK-Version": "0.0.1-beta23", } headers["Authorization"] = f"Bearer {self._get_api_key()}" return headers diff --git a/src/gooey/types/__init__.py b/src/gooey/types/__init__.py index 9087b38..e53e0ae 100644 --- a/src/gooey/types/__init__.py +++ b/src/gooey/types/__init__.py @@ -196,6 +196,7 @@ from .sad_talker_settings import SadTalkerSettings from .sad_talker_settings_preprocess import SadTalkerSettingsPreprocess from .search_reference import SearchReference +from .security_schemes import SecuritySchemes from .seo_summary_page_output import SeoSummaryPageOutput from .seo_summary_page_request_response_format_type import SeoSummaryPageRequestResponseFormatType from .seo_summary_page_status_response import SeoSummaryPageStatusResponse @@ -440,6 +441,7 @@ "SadTalkerSettings", "SadTalkerSettingsPreprocess", "SearchReference", + "SecuritySchemes", "SeoSummaryPageOutput", "SeoSummaryPageRequestResponseFormatType", "SeoSummaryPageStatusResponse", diff --git a/src/gooey/types/llm_tools.py b/src/gooey/types/llm_tools.py index 62edec8..30a07de 100644 --- a/src/gooey/types/llm_tools.py +++ b/src/gooey/types/llm_tools.py @@ -2,4 +2,4 @@ import typing -LlmTools = typing.Literal["json_to_pdf"] +LlmTools = typing.Union[typing.Literal["json_to_pdf"], typing.Any] diff --git a/src/gooey/types/security_schemes.py b/src/gooey/types/security_schemes.py new file mode 100644 index 0000000..8dc4491 --- /dev/null +++ b/src/gooey/types/security_schemes.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +SecuritySchemes = typing.Optional[typing.Any]