Tool tree
Flowers and delivery service
check_delivery_zipAnswer
Check whether same-day delivery is available for a ZIP code.
View tool JSON
{
"name": "check_delivery_zip",
"kind": "answer",
"impl": "imperative",
"description": "Check whether same-day delivery is available for a ZIP code.",
"inputSchema": {
"type": "object",
"properties": {
"zip": {
"type": "string"
}
},
"required": [
"zip"
]
}
}search_catalogAnswer
Search flower products by keyword and occasion.
View tool JSON
{
"name": "search_catalog",
"kind": "answer",
"impl": "imperative",
"description": "Search flower products by keyword and occasion.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"occasion": {
"type": "string"
}
},
"required": [
"query"
]
}
}