BotSharp/tests/BotSharp.Plugin.PizzaBot/agents/fe8c60aa-b114-4ef3-93cb-a8efeac80f75/functions.json

21 lines
554 B
JSON
Raw Normal View History

2023-09-20 10:32:55 +00:00
[
{
"name": "make_payment",
2023-10-13 20:08:59 +00:00
"description": "call this function to make payment",
2023-09-20 10:32:55 +00:00
"parameters": {
"type": "object",
"properties": {
"order_number": {
"type": "string",
"description": "order number."
2023-09-20 10:59:27 +00:00
},
"total_amount": {
"type": "string",
"description": "total amount."
2023-09-20 10:32:55 +00:00
}
},
2023-09-20 10:59:27 +00:00
"required": ["order_number", "total_amount"]
2023-09-20 10:32:55 +00:00
}
}
]