diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4bf1b35ae4..5c3e8eb512 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.92.1" + ".": "1.92.2" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index ebbf3ee296..07aa52577e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 111 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-cca460eaf5cc13e9d6e5293eb97aac53d66dc1385c691f74b768c97d165b6e8b.yml -openapi_spec_hash: 9ec43d443b3dd58ca5aa87eb0a7eb49f +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-a473967d1766dc155994d932fbc4a5bcbd1c140a37c20d0a4065e1bf0640536d.yml +openapi_spec_hash: 67cdc62b0d6c8b1de29b7dc54b265749 config_hash: e74d6791681e3af1b548748ff47a22c2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 02c63e5813..355bb287d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.92.2 (2025-06-26) + +Full Changelog: [v1.92.1...v1.92.2](https://github.com/openai/openai-python/compare/v1.92.1...v1.92.2) + +### Chores + +* **api:** remove unsupported property ([ec24408](https://github.com/openai/openai-python/commit/ec2440864e03278144d7f58b97c31d87903e0843)) + ## 1.92.1 (2025-06-26) Full Changelog: [v1.92.0...v1.92.1](https://github.com/openai/openai-python/compare/v1.92.0...v1.92.1) diff --git a/pyproject.toml b/pyproject.toml index 802229939c..177fc600b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openai" -version = "1.92.1" +version = "1.92.2" description = "The official Python library for the openai API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/openai/_version.py b/src/openai/_version.py index 9392416ade..709e848243 100644 --- a/src/openai/_version.py +++ b/src/openai/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "openai" -__version__ = "1.92.1" # x-release-please-version +__version__ = "1.92.2" # x-release-please-version diff --git a/src/openai/types/responses/response_function_web_search.py b/src/openai/types/responses/response_function_web_search.py index 164a1afdca..a3252956e9 100644 --- a/src/openai/types/responses/response_function_web_search.py +++ b/src/openai/types/responses/response_function_web_search.py @@ -1,6 +1,6 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -from typing import List, Union, Optional +from typing import Union from typing_extensions import Literal, Annotated, TypeAlias from ..._utils import PropertyInfo @@ -16,9 +16,6 @@ class ActionSearch(BaseModel): type: Literal["search"] """The action type.""" - domains: Optional[List[str]] = None - """Domains to restrict the search or domains where results were found.""" - class ActionOpenPage(BaseModel): type: Literal["open_page"] diff --git a/src/openai/types/responses/response_function_web_search_param.py b/src/openai/types/responses/response_function_web_search_param.py index 04d8a5884b..4a06132cf4 100644 --- a/src/openai/types/responses/response_function_web_search_param.py +++ b/src/openai/types/responses/response_function_web_search_param.py @@ -2,7 +2,7 @@ from __future__ import annotations -from typing import List, Union +from typing import Union from typing_extensions import Literal, Required, TypeAlias, TypedDict __all__ = ["ResponseFunctionWebSearchParam", "Action", "ActionSearch", "ActionOpenPage", "ActionFind"] @@ -15,9 +15,6 @@ class ActionSearch(TypedDict, total=False): type: Required[Literal["search"]] """The action type.""" - domains: List[str] - """Domains to restrict the search or domains where results were found.""" - class ActionOpenPage(TypedDict, total=False): type: Required[Literal["open_page"]]