We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f768ab7 commit ac0d81eCopy full SHA for ac0d81e
1 file changed
src/writerai/types/file_upload_params.py
@@ -4,13 +4,14 @@
4
5
from typing_extensions import Required, Annotated, TypedDict
6
7
+from .._types import FileTypes
8
from .._utils import PropertyInfo
9
10
__all__ = ["FileUploadParams"]
11
12
13
class FileUploadParams(TypedDict, total=False):
- content: Required[object]
14
+ content: Required[FileTypes]
15
16
content_disposition: Required[Annotated[str, PropertyInfo(alias="Content-Disposition")]]
17
0 commit comments