rosemariafontana commited on
Commit
6fcc4a7
·
verified ·
1 Parent(s): efbce6f

Update schema_classes.py

Browse files
Files changed (1) hide show
  1. schema_classes.py +1 -1
schema_classes.py CHANGED
@@ -41,7 +41,7 @@ class Person(BaseModel):
41
 
42
  class Interactions(BaseModel):
43
  people: Union[List[Person], None] = Field(..., title="People", description="People involved or mentioned during interaction")
44
- date: Union[str, None] = Field(..., title="Date of current interaction", description="Date of the interaction")
45
  nextMeeting: Union[str, None] = Field(..., title="Date of next meeting", description="Proposed date of the next future interaction")
46
  nextSteps: Union[List[str], None] = Field(..., title="Next Steps", description="List of individual next steps derived from the interaction")
47
  summary: Union[str, None] = Field(..., title="Summary", description="Summary of the interaction")
 
41
 
42
  class Interactions(BaseModel):
43
  people: Union[List[Person], None] = Field(..., title="People", description="People involved or mentioned during interaction")
44
+ date: Union[str, None] = Field(..., title="Date", description="Date of the interaction in ISO 8601 format (YYYY-MM-DD)", example="2024-10-05")
45
  nextMeeting: Union[str, None] = Field(..., title="Date of next meeting", description="Proposed date of the next future interaction")
46
  nextSteps: Union[List[str], None] = Field(..., title="Next Steps", description="List of individual next steps derived from the interaction")
47
  summary: Union[str, None] = Field(..., title="Summary", description="Summary of the interaction")