Skip to content

Commit ec24408

Browse files
chore(api): remove unsupported property
1 parent 996e42f commit ec24408

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 111
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-cca460eaf5cc13e9d6e5293eb97aac53d66dc1385c691f74b768c97d165b6e8b.yml
3-
openapi_spec_hash: 9ec43d443b3dd58ca5aa87eb0a7eb49f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-a473967d1766dc155994d932fbc4a5bcbd1c140a37c20d0a4065e1bf0640536d.yml
3+
openapi_spec_hash: 67cdc62b0d6c8b1de29b7dc54b265749
44
config_hash: e74d6791681e3af1b548748ff47a22c2

src/openai/types/responses/response_function_web_search.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List, Union, Optional
3+
from typing import Union
44
from typing_extensions import Literal, Annotated, TypeAlias
55

66
from ..._utils import PropertyInfo
@@ -16,9 +16,6 @@ class ActionSearch(BaseModel):
1616
type: Literal["search"]
1717
"""The action type."""
1818

19-
domains: Optional[List[str]] = None
20-
"""Domains to restrict the search or domains where results were found."""
21-
2219

2320
class ActionOpenPage(BaseModel):
2421
type: Literal["open_page"]

src/openai/types/responses/response_function_web_search_param.py

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

33
from __future__ import annotations
44

5-
from typing import List, Union
5+
from typing import Union
66
from typing_extensions import Literal, Required, TypeAlias, TypedDict
77

88
__all__ = ["ResponseFunctionWebSearchParam", "Action", "ActionSearch", "ActionOpenPage", "ActionFind"]
@@ -15,9 +15,6 @@ class ActionSearch(TypedDict, total=False):
1515
type: Required[Literal["search"]]
1616
"""The action type."""
1717

18-
domains: List[str]
19-
"""Domains to restrict the search or domains where results were found."""
20-
2118

2219
class ActionOpenPage(TypedDict, total=False):
2320
type: Required[Literal["open_page"]]

0 commit comments

Comments
 (0)