Skip to content

Commit ac0d81e

Browse files
chore(internal): codegen related update (#140)
1 parent f768ab7 commit ac0d81e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/writerai/types/file_upload_params.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
from typing_extensions import Required, Annotated, TypedDict
66

7+
from .._types import FileTypes
78
from .._utils import PropertyInfo
89

910
__all__ = ["FileUploadParams"]
1011

1112

1213
class FileUploadParams(TypedDict, total=False):
13-
content: Required[object]
14+
content: Required[FileTypes]
1415

1516
content_disposition: Required[Annotated[str, PropertyInfo(alias="Content-Disposition")]]
1617

0 commit comments

Comments
 (0)