17 lines
No EOL
707 B
Text
17 lines
No EOL
707 B
Text
```json
|
|
{
|
|
"intent": "READ",
|
|
"entity": "Parzelle",
|
|
"parameters": {
|
|
"kontextGemeinde": "Zürich"
|
|
},
|
|
"confidence": 0.95
|
|
}
|
|
```
|
|
|
|
**Explanation:**
|
|
- **Intent**: READ - The user wants to query/view existing data ("Zeige mir" = "Show me")
|
|
- **Entity**: Parzelle - The user explicitly asks for "Parzellen" (plots/parcels)
|
|
- **Parameters**:
|
|
- `kontextGemeinde`: "Zürich" - The location filter is specified as Zürich, which is a municipality (Gemeinde). According to the schema, location information for Parzellen is stored in the `kontextGemeinde` field
|
|
- **Confidence**: 0.95 - High confidence as the command is clear and unambiguous, directly requesting plots in a specific location |