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.
Cet exercice fait partie du cours
Working with the OpenAI Responses API
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Define the SimilarMovie class
class ____(____):
____: str = Field(description="Title of a similar movie")
____: str = Field(description="Why this movie is similar")