17 lines
No EOL
786 B
Text
17 lines
No EOL
786 B
Text
```json
|
|
{
|
|
"intent": "READ",
|
|
"entity": "Parzelle",
|
|
"parameters": {
|
|
"kontextGemeinde": "Zürich"
|
|
},
|
|
"confidence": 0.95
|
|
}
|
|
```
|
|
|
|
**Reasoning:**
|
|
- The user command "Zeige mir alle Parzellen in Zürich" translates to "Show me all plots in Zurich"
|
|
- **Intent**: READ - The user wants to query/retrieve existing entities
|
|
- **Entity**: Parzelle - The user explicitly asks for "Parzellen" (plots/parcels)
|
|
- **Parameters**: The location filter "in Zürich" maps to the `kontextGemeinde` field of the Parzelle entity, which stores the municipality information
|
|
- **Confidence**: 0.95 - High confidence because the intent is clear (show/display), the entity is explicitly mentioned (Parzellen), and the location parameter (Zürich) clearly maps to the kontextGemeinde field |