first commit

This commit is contained in:
2026-06-23 09:13:51 +03:00
commit f6c7db328f
103 changed files with 1618 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from typing import Any, Literal
from pydantic import BaseModel
JobStatus = Literal["queued", "running", "done", "error"]
class JobCreateResponse(BaseModel):
job_id: str
class JobResponse(BaseModel):
status: JobStatus
result: dict[str, Any] | None = None
error: str | None = None