-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.py
149 lines (147 loc) · 5.43 KB
/
tools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
TOOLS = [
{
"type": "function",
"function": {
"name": "get_patient_info",
"description": "Get the patient information by their first and last name.",
"parameters": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "Patients first name",
},
"last_name": {
"type": "string",
"description": "Patients last name",
},
},
"required": ["first_name", "last_name"],
},
},
},
{
"type": "function",
"function": {
"name": "save_patient_info",
"description": "Stores the patient information in the system.",
"parameters": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "Patients first name",
},
"last_name": {
"type": "string",
"description": "Patients last name",
},
"phone_number": {
"type": "string",
"description": "Patients phone number",
},
"email": {
"type": "string",
"description": "Patients email",
},
},
"required": ["first_name", "last_name", "phone_number", "email"],
},
},
},
{
"type": "function",
"function": {
"name": "check_appointment_availability",
"description": "Checks whether the desired date and time is available or not and returns alternative slots.",
"parameters": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Date of the appointment",
},
"time": {
"type": "string",
"description": "Time of the appointment",
},
"appointment_type": {
"type": "string",
"description": "Type of the appointment (e.g. routine check-up, cleaning, filling)",
},
},
"required": ["date", "time", "appointment_type"],
},
},
},
{
"type": "function",
"function": {
"name": "schedule_appointment",
"description": "Schedules an appointment for the patient and stores it in the system.",
"parameters": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Date of the appointment",
},
"time": {
"type": "string",
"description": "Time of the appointment",
},
"appointment_type": {
"type": "string",
"description": "Type of the appointment (e.g. routine check-up, cleaning, filling)",
},
"first_name": {
"type": "string",
"description": "Patients first name",
},
"last_name": {
"type": "string",
"description": "Patients last name",
},
},
"required": ["date", "appointment_type", "time", "first_name", "last_name"],
},
},
},
{
"type": "function",
"function": {
"name": "create_appointment_reminder",
"description": "Creates an appointment reminder for the patients appontment.",
"parameters": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Date of the appointment",
},
"time": {
"type": "string",
"description": "Time of the appointment",
},
"appointment_type": {
"type": "string",
"description": "Type of the appointment (e.g. routine check-up, cleaning, filling)",
},
"first_name": {
"type": "string",
"description": "Patients first name",
},
"last_name": {
"type": "string",
"description": "Patients last name",
},
"reminder_type": {
"type": "string",
"description": "Type of reminder (e.g. call, text, email)",
},
},
"required": ["date", "appointment_type", "time", "first_name", "last_name", "reminder_type"],
},
},
},
]