----------------------
Sure, here's an example of how your data might look like when there are multiple products relevant to a single query. This is a hypothetical example and not directly from the provided sources, but it follows the structure suggested in the LlamaIndex documentation.
{
"query": "What are some good kitchen appliances?",
"relevant_passages": [
{
"title": "Instant Vortex 5.7QT Air Fryer Oven Combo",
"category": "Kitchen Appliances",
"discount": "20% off",
"price": "$151.20",
"rating": "4.7 out of 5 stars",
"review": "5086 ratings",
"description": "6-in-1 functionality; air fry, broil, bake, roast, reheat, and dehydrate. EvenCrisp Technology for crispy results. Easy to use touchscreen. Dishwasher safe parts. Cooks food faster and with less oil.",
"inventory": "In stock"
},
{
"title": "Product 2",
"category": "Kitchen Appliances",
"discount": "15% off",
"price": "$200.00",
"rating": "4.5 out of 5 stars",
"review": "3000 ratings",
"description": "Description for product 2.",
"inventory": "In stock"
}
],
"hard_negatives": [
{
"title": "Non-Kitchen Product",
"category": "Non-Kitchen Category",
"discount": "10% off",
"price": "$100.00",
"rating": "4.0 out of 5 stars",
"review": "2000 ratings",
"description": "Description for a non-kitchen product.",
"inventory": "In stock"
}
]
}