Commit 1a85f249
Changed files (7)
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"]
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"]]
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
.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "1.92.1"
+ ".": "1.92.2"
}
\ No newline at end of file
.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
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)
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"