You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our current app/model/task.py uses custom to_dict and from_json_dict methods for serialization and deserialization. use pydantic methods to replace these with .model_dump() and .model_validate().
Our current
app/model/task.pyuses customto_dictandfrom_json_dictmethods for serialization and deserialization. use pydantic methods to replace these with.model_dump()and.model_validate().