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.3
1
+ 2.4.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "2.4.3",
3
+ "version": "2.4.4",
4
4
  "description": "The Operating System for AI Agent Teams",
5
5
  "type": "module",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkaos-core"
3
- version = "2.4.3"
3
+ version = "2.4.4"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -345,16 +345,7 @@ def job_cancel(job_id: str):
345
345
  return {"error": "Can only cancel queued jobs"}
346
346
 
347
347
 
348
- @app.post("/api/knowledge/upload")
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):