Spaces:
Sleeping
Sleeping
File size: 272 Bytes
d02bacd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from pydantic import BaseModel
class EmailObservation(BaseModel):
email: str
step_count: int
task_id: str
class EmailAction(BaseModel):
response: str
class EmailState(BaseModel):
current_email: str
step_count: int
done: bool
task_id: str |