Skip to content

Commit 60ab24a

Browse files
feat(api): api update
1 parent e3ca060 commit 60ab24a

File tree

5 files changed

+2
-26
lines changed

5 files changed

+2
-26
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: 148
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-9c802d45a9bf2a896b5fd22ac22bba185e8a145bd40ed242df9bb87a05e954eb.yml
3-
openapi_spec_hash: 97984ed69285e660b7d5c810c69ed449
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-d941452f026bbad07fe99ddd39154686a1f5689270f6be2ab40661c1d8982d15.yml
3+
openapi_spec_hash: b96a607abae511c4cea24a6f00c5a6f9
44
config_hash: 4fde9d6d4eb1de30bf2b6784f3da8bd8

src/openai/types/responses/response_input_file.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ class ResponseInputFile(BaseModel):
1414
type: Literal["input_file"]
1515
"""The type of the input item. Always `input_file`."""
1616

17-
detail: Optional[Literal["low", "high"]] = None
18-
"""The detail level of the file to be sent to the model.
19-
20-
One of `high` or `low`. Defaults to `high`.
21-
"""
22-
2317
file_data: Optional[str] = None
2418
"""The content of the file to be sent to the model."""
2519

src/openai/types/responses/response_input_file_content.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ class ResponseInputFileContent(BaseModel):
1414
type: Literal["input_file"]
1515
"""The type of the input item. Always `input_file`."""
1616

17-
detail: Optional[Literal["high", "low"]] = None
18-
"""The detail level of the file to be sent to the model.
19-
20-
One of `high` or `low`. Defaults to `high`.
21-
"""
22-
2317
file_data: Optional[str] = None
2418
"""The base64-encoded data of the file to be sent to the model."""
2519

src/openai/types/responses/response_input_file_content_param.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ class ResponseInputFileContentParam(TypedDict, total=False):
1414
type: Required[Literal["input_file"]]
1515
"""The type of the input item. Always `input_file`."""
1616

17-
detail: Literal["high", "low"]
18-
"""The detail level of the file to be sent to the model.
19-
20-
One of `high` or `low`. Defaults to `high`.
21-
"""
22-
2317
file_data: Optional[str]
2418
"""The base64-encoded data of the file to be sent to the model."""
2519

src/openai/types/responses/response_input_file_param.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ class ResponseInputFileParam(TypedDict, total=False):
1414
type: Required[Literal["input_file"]]
1515
"""The type of the input item. Always `input_file`."""
1616

17-
detail: Literal["low", "high"]
18-
"""The detail level of the file to be sent to the model.
19-
20-
One of `high` or `low`. Defaults to `high`.
21-
"""
22-
2317
file_data: str
2418
"""The content of the file to be sent to the model."""
2519

0 commit comments

Comments
 (0)