Nesting Pydantic Classes
Your movie recommendation system is working well, but there is room for improvements. In particular, with your recommendations, you want to add other, similar movies for the user to browse. These similar movies require a separate class (SimilarMovie) so that they can be listed within a new DetailedMovieRecommendation class.
Deze oefening maakt deel uit van de cursus
Working with the OpenAI Responses API
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Define the SimilarMovie class
class ____(____):
____: str = Field(description="Title of a similar movie")
____: str = Field(description="Why this movie is similar")