bulk_add_to_cart
Add multiple groceries to your Kroger cart in one step. Specify product IDs, quantities, and choose pickup or delivery for streamlined shopping.
Instructions
Add multiple items to the user's Kroger cart in a single operation.
If the user doesn't specifically indicate a preference for pickup or delivery,
you should ask them which modality they prefer before calling this tool.
Args:
items: List of items to add. Each item should have:
- product_id: The product ID or UPC
- quantity: Quantity to add (default: 1)
- modality: PICKUP or DELIVERY (default: PICKUP)
Returns:
Dictionary with results for each item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes |
Input Schema (JSON Schema)
{
"properties": {
"items": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Items",
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}