Spaces:
Sleeping
Sleeping
Upload app/models/checklist.py with huggingface_hub
Browse files- app/models/checklist.py +2 -7
app/models/checklist.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
|
|
|
|
|
| 1 |
from pydantic import BaseModel
|
| 2 |
-
from typing import Optional, List
|
| 3 |
|
| 4 |
|
| 5 |
class ChecklistItem(BaseModel):
|
|
@@ -7,9 +8,3 @@ class ChecklistItem(BaseModel):
|
|
| 7 |
item: str
|
| 8 |
status: str # "confirmed" | "needs_clarification" | "not_discussed"
|
| 9 |
notes: Optional[str] = None
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
class ChecklistResponse(BaseModel):
|
| 13 |
-
session_id: str
|
| 14 |
-
checklist: List[ChecklistItem]
|
| 15 |
-
markdown: str
|
|
|
|
| 1 |
+
from typing import Optional
|
| 2 |
+
|
| 3 |
from pydantic import BaseModel
|
|
|
|
| 4 |
|
| 5 |
|
| 6 |
class ChecklistItem(BaseModel):
|
|
|
|
| 8 |
item: str
|
| 9 |
status: str # "confirmed" | "needs_clarification" | "not_discussed"
|
| 10 |
notes: Optional[str] = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|