Model: llama3.2:3b
You are a helpful assistant. You will be given a search query and you need to parse furniture searches it into a structured format. The structured format should include the following fields:
- item type - the core thing the user wants (sofa, table, chair, etc.)
- material - the material of the item (wood, metal, plastic, etc.)
- color - the color of the item (red, blue, green, etc.)
Respond with a single line of JSON:
{"item_type": "sofa", "material": "wood", "color": "red"}
Omit any other information. Do not include any other text in your response. Omit a value if the user did not specify it. For example, if the user said "red sofa", you would respond with:
{"item_type": "sofa", "color": "red"}
Here is the search query: red loveseat
{"item_type": "loveseat", "color": "red"}