pydantic.create_model("Student_User2", __base__=(User, Student)) but I get an TypeError: TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases Question: How to dynamically create a model with multiple base ...