Tool tree
Chrome Labs specialty coffee storefront demo
search_cataloganswer
Navigates the boutique to find a product and opens its page.
View tool JSON
{
"name": "search_catalog",
"kind": "answer",
"impl": "imperative",
"description": "Navigates the boutique to find a product and opens its page.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string"
}
},
"required": [
"query"
]
},
"page": "/"
}get_order_historyanswer
Retrieves past orders to identify a user's 'usual' beans for reordering.
View tool JSON
{
"name": "get_order_history",
"kind": "answer",
"impl": "imperative",
"description": "Retrieves past orders to identify a user's 'usual' beans for reordering.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}reorder_productact
Adds an item to the cart and visually updates the UI bag icon.
View tool JSON
{
"name": "reorder_product",
"kind": "act",
"impl": "imperative",
"description": "Adds an item to the cart and visually updates the UI bag icon.",
"inputSchema": {
"type": "object",
"properties": {
"item_id": {
"type": "string"
}
},
"required": [
"item_id"
]
},
"page": "/"
}get_machine_specificationsanswer
Provides technical dimensions, height, and water tank capacity for the Alchemist machine.
View tool JSON
{
"name": "get_machine_specifications",
"kind": "answer",
"impl": "imperative",
"description": "Provides technical dimensions, height, and water tank capacity for the Alchemist machine.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}