Skip to content

Commit 24c9522

Browse files
committed
Release 0.0.1-beta23
1 parent 2b6bd7d commit 24c9522

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "gooeyai"
3-
version = "0.0.1-beta22"
3+
version = "0.0.1-beta23"
44
description = ""
55
readme = "README.md"
66
authors = []

src/gooey/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@
191191
SadTalkerSettings,
192192
SadTalkerSettingsPreprocess,
193193
SearchReference,
194+
SecuritySchemes,
194195
SeoSummaryPageOutput,
195196
SeoSummaryPageRequestResponseFormatType,
196197
SeoSummaryPageStatusResponse,
@@ -473,6 +474,7 @@
473474
"SadTalkerSettings",
474475
"SadTalkerSettingsPreprocess",
475476
"SearchReference",
477+
"SecuritySchemes",
476478
"SeoSummaryPageOutput",
477479
"SeoSummaryPageRequestResponseFormatType",
478480
"SeoSummaryPageStatusResponse",

src/gooey/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
2323
"X-Fern-Language": "Python",
2424
"X-Fern-SDK-Name": "gooeyai",
25-
"X-Fern-SDK-Version": "0.0.1-beta22",
25+
"X-Fern-SDK-Version": "0.0.1-beta23",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_api_key()}"
2828
return headers

src/gooey/types/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@
196196
from .sad_talker_settings import SadTalkerSettings
197197
from .sad_talker_settings_preprocess import SadTalkerSettingsPreprocess
198198
from .search_reference import SearchReference
199+
from .security_schemes import SecuritySchemes
199200
from .seo_summary_page_output import SeoSummaryPageOutput
200201
from .seo_summary_page_request_response_format_type import SeoSummaryPageRequestResponseFormatType
201202
from .seo_summary_page_status_response import SeoSummaryPageStatusResponse
@@ -440,6 +441,7 @@
440441
"SadTalkerSettings",
441442
"SadTalkerSettingsPreprocess",
442443
"SearchReference",
444+
"SecuritySchemes",
443445
"SeoSummaryPageOutput",
444446
"SeoSummaryPageRequestResponseFormatType",
445447
"SeoSummaryPageStatusResponse",

src/gooey/types/llm_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
import typing
44

5-
LlmTools = typing.Literal["json_to_pdf"]
5+
LlmTools = typing.Union[typing.Literal["json_to_pdf"], typing.Any]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This file was auto-generated by Fern from our API Definition.
2+
3+
import typing
4+
5+
SecuritySchemes = typing.Optional[typing.Any]

0 commit comments

Comments
 (0)