diff --git a/flexus_client_kit/ckit_edoc.py b/flexus_client_kit/ckit_edoc.py index 7fe5ba1..3b16817 100644 --- a/flexus_client_kit/ckit_edoc.py +++ b/flexus_client_kit/ckit_edoc.py @@ -124,6 +124,7 @@ async def edoc_create( edoc_title: str, edoc_size_bytes: int, edoc_icon: Optional[str] = None, + edoc_status_download: str = "EDOC_FOUND" ) -> bool: if not edoc_icon: ext = edoc_title.split(".")[-1].lower() if "." in edoc_title else "" @@ -137,7 +138,7 @@ async def edoc_create( "edoc_title": edoc_title, "edoc_mtime": 0, "edoc_size_bytes": edoc_size_bytes, - "edoc_status_download": "EDOC_FOUND", + "edoc_status_download": edoc_status_download, "edoc_status_graphdb": "", "edoc_status_vectordb": "", }