Skip to content

Commit

Permalink
Release 0.0.1-beta23
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 12, 2024
1 parent 2b6bd7d commit 24c9522
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gooeyai"
version = "0.0.1-beta22"
version = "0.0.1-beta23"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 2 additions & 0 deletions src/gooey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@
SadTalkerSettings,
SadTalkerSettingsPreprocess,
SearchReference,
SecuritySchemes,
SeoSummaryPageOutput,
SeoSummaryPageRequestResponseFormatType,
SeoSummaryPageStatusResponse,
Expand Down Expand Up @@ -473,6 +474,7 @@
"SadTalkerSettings",
"SadTalkerSettingsPreprocess",
"SearchReference",
"SecuritySchemes",
"SeoSummaryPageOutput",
"SeoSummaryPageRequestResponseFormatType",
"SeoSummaryPageStatusResponse",
Expand Down
2 changes: 1 addition & 1 deletion src/gooey/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/gooey/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -440,6 +441,7 @@
"SadTalkerSettings",
"SadTalkerSettingsPreprocess",
"SearchReference",
"SecuritySchemes",
"SeoSummaryPageOutput",
"SeoSummaryPageRequestResponseFormatType",
"SeoSummaryPageStatusResponse",
Expand Down
2 changes: 1 addition & 1 deletion src/gooey/types/llm_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

import typing

LlmTools = typing.Literal["json_to_pdf"]
LlmTools = typing.Union[typing.Literal["json_to_pdf"], typing.Any]
5 changes: 5 additions & 0 deletions src/gooey/types/security_schemes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This file was auto-generated by Fern from our API Definition.

import typing

SecuritySchemes = typing.Optional[typing.Any]

0 comments on commit 24c9522

Please sign in to comment.