arkaos 2.4.3 → 2.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.4
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
Binary file
|
package/scripts/dashboard-api.py
CHANGED
|
@@ -345,16 +345,7 @@ def job_cancel(job_id: str):
|
|
|
345
345
|
return {"error": "Can only cancel queued jobs"}
|
|
346
346
|
|
|
347
347
|
|
|
348
|
-
|
|
349
|
-
async def knowledge_upload(file: Any = None):
|
|
350
|
-
"""Upload a file for ingestion."""
|
|
351
|
-
from fastapi import UploadFile, File as FastAPIFile
|
|
352
|
-
# Re-import with proper type
|
|
353
|
-
pass
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
# Actual upload endpoint with proper signature
|
|
357
|
-
from fastapi import UploadFile, File as FastAPIFile
|
|
348
|
+
from fastapi import UploadFile
|
|
358
349
|
|
|
359
350
|
@app.post("/api/knowledge/upload-file")
|
|
360
351
|
async def knowledge_upload_file(file: UploadFile):
|