ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Working with the OpenAI Responses API

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Define the SimilarMovie class
class ____(____):
    ____: str = Field(description="Title of a similar movie")
    ____: str = Field(description="Why this movie is similar")
Editar y ejecutar código