https://github.com/rafal-stefanski/cook-spring-ai-app
https://github.com/rafal-stefanski/cook-spring-ai-app
Last synced: 44 minutes ago
JSON representation
- Host: GitHub
- URL: https://github.com/rafal-stefanski/cook-spring-ai-app
- Owner: Rafal-Stefanski
- Created: 2024-04-21T18:47:27.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-21T19:35:20.000Z (over 1 year ago)
- Last Synced: 2025-10-08T05:43:39.144Z (8 days ago)
- Language: Java
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Cook AI App
* Java 17
* Spring boot 3.2.5
* springframework.ai## Interface
* API POST endpoint: http//localhost:8080/recipeSuggestions
* JSON example:
```
{
"ingredients": [
{
"name": "kurczak",
"weight": 200.0
},
{
"name": "ryż",
"weight": 200.0
},
{
"name": "pomidory",
"weight": 150.0
}
],
"diet": "bezglutenowa",
"mealType": "obad"
}
```