20 lines
No EOL
732 B
Text
20 lines
No EOL
732 B
Text
```json
|
|
{
|
|
"intent": "CREATE",
|
|
"entity": "Projekt",
|
|
"parameters": {
|
|
"parzellen": [
|
|
{
|
|
"kontextGemeinde": "Zürich"
|
|
}
|
|
]
|
|
},
|
|
"confidence": 0.85
|
|
}
|
|
```
|
|
|
|
**Reasoning:**
|
|
- The user wants to create ("Füge hinzu") a new project ("neues Projekt")
|
|
- The project should include a plot ("mit Parzelle") in Zürich
|
|
- Since Projekt contains Parzellen as a nested list, and the location information (Zürich) belongs to Parzelle (via kontextGemeinde field), I've structured the parameters to reflect this relationship
|
|
- The confidence is 0.85 because while the intent is clear, the user hasn't provided other typical project details like a label/name for the project itself |