simran0608 commited on
Commit
a4c609f
·
verified ·
1 Parent(s): 09153de

Delete schemas.py

Browse files
Files changed (1) hide show
  1. schemas.py +0 -24
schemas.py DELETED
@@ -1,24 +0,0 @@
1
- from langchain.pydantic_v1 import BaseModel, Field
2
-
3
- class symptoms(BaseModel):
4
- symptoms: str = Field(description="query of user")
5
-
6
- class bookSlot(BaseModel):
7
- start_time: str = Field(description="starting time of the slot with date use this format '2024-09-20T15:30:00+05:30'.")
8
- end_time: str = Field(description="ending time of the slot with date use this format '2024-09-20T15:30:00+05:30'.")
9
- summary: str = Field(description="summary of the event with title.")
10
-
11
- class deleteSlot(BaseModel):
12
- start_time: str = Field(description="starting time of the slot with date use this format '2024-09-20T15:30:00+05:30'.")
13
-
14
- class reschedule_event(BaseModel):
15
- start_time: str = Field(description="starting time of the slot with date that need to be reschedule use this format '2024-09-20T15:30:00+05:30'.")
16
- new_start_time: str = Field(description="new starting time of the slot with date that need to be reschedule use this format '2024-09-20T15:30:00+05:30'.")
17
- new_end_time: str = Field(description="ending time of the slot with date that need to be reschedule use this format '2024-09-20T15:30:00+05:30'.")
18
-
19
- class listevent(BaseModel):
20
- target_date: str = Field(description="Target date for which we want to list the events.")
21
-
22
- class checkevent(BaseModel):
23
- date: str = Field(description="Target date for which we want to check the events.")
24
-