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
For parsing, FastAPI uses Pydantic and it should call model_validate_json (which parses the JSON in Rust), but currently it calls model_validate (which parses it in Python): fastapi/fastapi#11279
The text was updated successfully, but these errors were encountered:
https://fastapi.tiangolo.com/advanced/custom-response/#use-orjsonresponse
Not a priority.
For parsing, FastAPI uses Pydantic and it should call model_validate_json (which parses the JSON in Rust), but currently it calls model_validate (which parses it in Python): fastapi/fastapi#11279
The text was updated successfully, but these errors were encountered: