get_woolworths_products
Search for Woolworths products by entering a query and setting a result limit. Retrieve relevant product data efficiently for analysis or comparison.
Instructions
Search for products at Woolworths.
Args:
query: The product search query.
limit: Maximum number of products to return.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "get_woolworths_productsArguments",
"type": "object"
}