vrn123/workplace-decision-engine
0
1from pydantic import BaseModel2from typing import List3 4class Task(BaseModel):5 id: int6 description: str7 priority: str8 status: str9 expected_action: str # 🔥 REQUIRED10 11class Observation(BaseModel):12 tasks: List[Task]13 14class Action(BaseModel):15 action_type: str16 task_id: int17 18class Reward(BaseModel):19 score: float