test / app /models /action.py
paramjitbaral's picture
Upload folder using huggingface_hub
07a8e81 verified
Raw
History Blame Contribute Delete
241 Bytes
from pydantic import BaseModel, Field
class Action(BaseModel):
"""Action provided by the policy for the current step."""
step: int = Field(ge=1)
hospital_id: str = Field(min_length=1)
rationale: str | None = None