File size: 612 Bytes
a8f86f8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | ---
license: apache-2.0
language:
- en
base_model: Qwen/Qwen2.5-1.5B-Instruct
pipeline_tag: text-generation
tags:
- search
- intent-classification
- ecommerce
- query-parsing
- json-generation
---
# Search Query Parser (JSON Intent Model)
## Overview
This model converts raw e-commerce search text into structured JSON intent.
Example:
Input:
Output:
```json
{
"query": "nike sneakers",
"filters": {
"brand": ["Nike"],
"category": ["sneakers"],
"color": ["black"],
"size_eu": [42],
"price_max": 120,
"shipping": ["free"]
},
"sort": "relevance",
"page": 1,
"limit": 24
} |