File size: 241 Bytes
5f7edfe
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# app/models/recipe.py
from pydantic import BaseModel
from typing import List

class RecipeRequest(BaseModel):
    ingredients: List[str]

class RecipeResponse(BaseModel):
    title: str
    ingredients: List[str]
    instructions: List[str]