feat: add sum with image reference problem

This commit is contained in:
AlanSilvaaa
2026-05-26 11:56:41 -04:00
parent 29754b4782
commit c2613cb35e
6 changed files with 289 additions and 0 deletions

View File

@@ -66,3 +66,31 @@ curl -X POST "http://127.0.0.1:8000/math/grade_1/compose_and_decompose_numbers"
"seed": 1
}'
```
### Sum with image reference
```bash
curl -X POST "http://127.0.0.1:8000/math/grade_1/sum_with_image_reference" \
-H "Content-Type: application/json" \
-d '{
"first_quantity": 5,
"second_quantity": 4,
"first_description": "flores rojas",
"second_description": "flores blancas",
"common_object": "flores",
"first_picture": {
"id": "red-flower",
"name": "Red flower",
"image_path": "/images/red-flower.png"
},
"second_picture": {
"id": "white-flower",
"name": "White flower",
"image_path": "/images/white-flower.png"
},
"option_count": 3,
"min_option_quantity": 1,
"max_option_quantity": 20,
"seed": 1
}'
```