File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ numpy = "^2.2.0"
1919pillow = " ^11.0.0"
2020pydantic = " ^2.10.3"
2121python-doctr = {extras = [" torch" ], version = " ^0.10.0" }
22- restack-ai = " 0.0.49 "
22+ restack-ai = " 0.0.48 "
2323
2424[build-system ]
2525requires = [" poetry-core" ]
Original file line number Diff line number Diff line change 11from restack_ai .workflow import workflow , log , workflow_info
22from typing import List
3- from pydantic import BaseModel , Field
3+ from pydantic import BaseModel
44import asyncio
55from .pdf import PdfWorkflow , PdfWorkflowInput
66
77
88class FilesWorkflowInput (BaseModel ):
9- files : List [PdfWorkflowInput ] = Field ( None , file = True , description = "Upload file" )
9+ files : List [PdfWorkflowInput ]
1010
1111@workflow .defn ()
1212class FilesWorkflow :
You can’t perform that action at this time.
0 commit comments