rosemariafontana commited on
Commit
394ed6a
·
verified ·
1 Parent(s): 1617d68

Update schema_classes.py

Browse files
Files changed (1) hide show
  1. schema_classes.py +1 -1
schema_classes.py CHANGED
@@ -51,7 +51,7 @@ class Person(BaseModel):
51
  class Interactions(BaseModel):
52
  people: Union[List[Person], None] = Field(..., title="People", description="An array of people involved in or mentioned in this interaction")
53
  date: Union[str, None] = Field(..., title="Date", description="Date of the interaction in ISO 8601 format (YYYY-MM-DD)", example="2024-10-05")
54
- nextMeeting: Union[str, None] = Field(..., title="Date of next meeting", description="Proposed date of the next future interaction in ISO 8601 format (YYYY-MM-DD)", example="2024-10-05")
55
  nextSteps: Union[List[str], None] = Field(..., title="Next Steps", description="Array containing a list of next steps from the interaction")
56
  summary: Union[str, None] = Field(..., title="Summary", description="Summary of the interaction")
57
 
 
51
  class Interactions(BaseModel):
52
  people: Union[List[Person], None] = Field(..., title="People", description="An array of people involved in or mentioned in this interaction")
53
  date: Union[str, None] = Field(..., title="Date", description="Date of the interaction in ISO 8601 format (YYYY-MM-DD)", example="2024-10-05")
54
+ nextMeeting: Union[str, None] = Field(..., title="Date of next meeting in ISO 8601 format (YYYY-MM-DD)", example="2024-10-05", description="Proposed date of the next future interaction in ISO 8601 format (YYYY-MM-DD)", example="2024-10-05")
55
  nextSteps: Union[List[str], None] = Field(..., title="Next Steps", description="Array containing a list of next steps from the interaction")
56
  summary: Union[str, None] = Field(..., title="Summary", description="Summary of the interaction")
57