feat: Add new analysis documents and update installation scripts for backend integration

This commit introduces several new analysis documents, including Auto-Match Load Performance Analysis, Folder Picker Analysis, Monorepo Migration Summary, and various performance analysis documents. Additionally, the installation scripts are updated to reflect changes in backend service paths, ensuring proper integration with the new backend structure. These enhancements provide better documentation and streamline the setup process for users.
This commit is contained in:
Tanya
2025-12-30 15:04:32 -05:00
parent 12c62f1deb
commit 68d280e8f5
140 changed files with 5101 additions and 933 deletions
+30
View File
@@ -0,0 +1,30 @@
"""Job schemas."""
from __future__ import annotations
from datetime import datetime
from enum import Enum
from pydantic import BaseModel
class JobStatus(str, Enum):
"""Job status enum."""
PENDING = "pending"
STARTED = "started"
PROGRESS = "progress"
SUCCESS = "success"
FAILURE = "failure"
class JobResponse(BaseModel):
"""Job response schema."""
id: str
status: JobStatus
progress: int = 0
message: str = ""
created_at: datetime
updated_at: datetime