You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Get the delivery date for a customer's order. Call this whenever you need to know the delivery date, for example when a customer asks 'Where is my package'",
77
+
"parameters": {
78
+
"type": "object",
79
+
"properties": {
80
+
"order_id": {
81
+
"type": "string",
82
+
"description": "The customer's order ID.",
83
+
},
84
+
},
85
+
"required": ["order_id"],
86
+
"additionalProperties": False,
87
+
},
88
+
},
89
+
"strict": True,
90
+
}
91
+
]
92
+
93
+
messages= [
94
+
{"role": "system", "content": "You are a helpful customer support assistant. Use the supplied tools to assist the user."},
95
+
{"role": "user", "content": "Hi, can you tell me the delivery date for my order with id 5?"},
0 commit comments