TypeError: To define root models, use `pydantic.RootModel` rather than a field called '__root__' On inspecting the source code, I noticed thatparse_obj_ascalls_get_parsing_typewhich inturn callspydantic.main.create_modelinstead ofpydantic.v1.main.create_model The issue gets resolved on updat...