Skip to content

Commit 41514ec

Browse files
committed
Merge remote-tracking branch 'origin/main' into codex/openai-python-action-find-url
2 parents c8ff8a5 + 3cc8d78 commit 41514ec

6 files changed

Lines changed: 28 additions & 22 deletions

.castiron.stats.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
schema_version: 1
2-
generation_id: 075628ad-ef87-47a4-8b19-cb70f87163fc
3-
openapi_spec_hash: 31ce930d0bb93c8c09944ca9f79407b5
4-
openapi_transformed_spec_hash: c534613fdbcd88ff44bf4c87957de72b
2+
generation_id: 08cffa97-63b1-4ab3-b3e4-9d438f45458f
3+
openapi_spec_hash: fcdb9c99a509f5ea8b90d7abbf1dab2f
4+
openapi_transformed_spec_hash: dd244f7dd3ab9d18dc2c34970a39505f
55
config_hash: 81fd1039eb373628d87269f065d30a69
6-
codegen_sha: 74ff127a2bd2c3e7ae04e1d5f0cc65afc6970864
7-
codegen_hash: 4de898686d77495342b6787c418402e7504ce5941efc18c85ad9cefae656c100
8-
public_codegen_sha: 7ece6b1eccb7e14bdffcd1044054e4b3392be3c9
6+
codegen_sha: fb6674883ea2eed44fa6db1f16b106ee84b4c9e5
7+
codegen_hash: d68cd064823d9541b5d0874c92142d2691f7943452d9142c205b4cead3798785
8+
public_codegen_sha: e84368fa07e999995b4ec9f8514e6c5a98be2a89

api_reference/openapi.transformed.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61055,14 +61055,9 @@ components:
6105561055
The type of the web search tool call. Always `web_search_call`.
6105661056
x-stainless-const: true
6105761057
status:
61058-
type: string
6105961058
description: |
6106061059
The status of the web search tool call.
61061-
enum:
61062-
- in_progress
61063-
- searching
61064-
- completed
61065-
- failed
61060+
$ref: '#/components/schemas/WebSearchCallStatus'
6106661061
action:
6106761062
type: object
6106861063
description: |
@@ -62916,6 +62911,14 @@ components:
6291662911
- in_progress
6291762912
- completed
6291862913
- incomplete
62914+
WebSearchCallStatus:
62915+
type: string
62916+
enum:
62917+
- in_progress
62918+
- searching
62919+
- completed
62920+
- failed
62921+
- incomplete
6291962922
ClickButtonType:
6292062923
type: string
6292162924
enum:
@@ -72386,14 +72389,9 @@ components:
7238672389
The type of the web search tool call. Always `web_search_call`.
7238772390
x-stainless-const: true
7238872391
status:
72389-
type: string
7239072392
description: |
7239172393
The status of the web search tool call.
72392-
enum:
72393-
- in_progress
72394-
- searching
72395-
- completed
72396-
- failed
72394+
$ref: '#/components/schemas/BetaWebSearchCallStatus'
7239772395
action:
7239872396
type: object
7239972397
description: |
@@ -72512,6 +72510,14 @@ components:
7251272510
- url
7251372511
required:
7251472512
- type
72513+
BetaWebSearchCallStatus:
72514+
type: string
72515+
enum:
72516+
- in_progress
72517+
- searching
72518+
- completed
72519+
- failed
72520+
- incomplete
7251572521
BetaComputerCallOutputItemParam:
7251672522
properties:
7251772523
agent:

src/openai/types/beta/beta_response_function_web_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class BetaResponseFunctionWebSearch(BaseModel):
9292
details on how the model used the web (search, open_page, find_in_page).
9393
"""
9494

95-
status: Literal["in_progress", "searching", "completed", "failed"]
95+
status: Literal["in_progress", "searching", "completed", "failed", "incomplete"]
9696
"""The status of the web search tool call."""
9797

9898
type: Literal["web_search_call"]

src/openai/types/beta/beta_response_function_web_search_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class BetaResponseFunctionWebSearchParam(TypedDict, total=False):
9393
details on how the model used the web (search, open_page, find_in_page).
9494
"""
9595

96-
status: Required[Literal["in_progress", "searching", "completed", "failed"]]
96+
status: Required[Literal["in_progress", "searching", "completed", "failed", "incomplete"]]
9797
"""The status of the web search tool call."""
9898

9999
type: Required[Literal["web_search_call"]]

src/openai/types/responses/response_function_web_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class ResponseFunctionWebSearch(BaseModel):
8484
details on how the model used the web (search, open_page, find_in_page).
8585
"""
8686

87-
status: Literal["in_progress", "searching", "completed", "failed"]
87+
status: Literal["in_progress", "searching", "completed", "failed", "incomplete"]
8888
"""The status of the web search tool call."""
8989

9090
type: Literal["web_search_call"]

src/openai/types/responses/response_function_web_search_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class ResponseFunctionWebSearchParam(TypedDict, total=False):
8585
details on how the model used the web (search, open_page, find_in_page).
8686
"""
8787

88-
status: Required[Literal["in_progress", "searching", "completed", "failed"]]
88+
status: Required[Literal["in_progress", "searching", "completed", "failed", "incomplete"]]
8989
"""The status of the web search tool call."""
9090

9191
type: Required[Literal["web_search_call"]]

0 commit comments

Comments
 (0)