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.
This exercise is part of the course
Working with the OpenAI Responses API
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Define the SimilarMovie class
class ____(____):
____: str = Field(description="Title of a similar movie")
____: str = Field(description="Why this movie is similar")