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
If using a Redis-OM Pydantic object as the input for a FastAPI route with a version greater than 0.112, you get the error shown below. NOTE: You don't even need to be trying to access the underlying RedisDB for this issue to occur, it is native to the Redis-OM wrapper around Pydantic.
To recreate for yourself:
# pyproject.tomldependencies= [
"fastapi[standard]==0.113",
"redis-om>=0.3.3",
]
# main.pyfromfastapiimportFastAPIfromredis_omimportJsonModelclassName(JsonModel):
greet: strapp=FastAPI()
@app.post("/greet")asyncdefgreet(name: Name):
# NOTE: You don't even need to interact with name to cause an errorreturn {"message": "Hello World"}
The error:
pydantic.errors.PydanticSchemaGenerationError: Unable to generate pydantic-core schema for <class 'redis_om.model.model.ExpressionProxy'>. Set arbitrary_types_allowed=True in the model_config to ignore this error or implement __get_pydantic_core_schema__ on your type to fully support it.
If you got this error by calling handler() within __get_pydantic_core_schema__ then you likely need to call handler.generate_schema(<some type>) since we do not call __get_pydantic_core_schema__ on <some type> otherwise to avoid infinite recursion.
For further information visit https://errors.pydantic.dev/2.10/u/schema-for-unknown-type
The text was updated successfully, but these errors were encountered:
aleexharris
changed the title
RedisOM Pydantic objects cause FastAPI fatal errors for FastAPI >0.112
RedisOM Pydantic objects cause FastAPI POST request fatal errors for FastAPI >0.112
Feb 17, 2025
aleexharris
changed the title
RedisOM Pydantic objects cause FastAPI POST request fatal errors for FastAPI >0.112
RedisOM Pydantic objects cause FastAPI POST request errors for FastAPI >0.112
Feb 17, 2025
aleexharris
changed the title
RedisOM Pydantic objects cause FastAPI POST request errors for FastAPI >0.112
RedisOM Pydantic objects cause FastAPI POST request errors for versions >0.112
Feb 17, 2025
aleexharris
changed the title
RedisOM Pydantic objects cause FastAPI POST request errors for versions >0.112
RedisOM Pydantic objects cause POST request errors with FastAPI
Feb 17, 2025
If using a Redis-OM Pydantic object as the input for a FastAPI route with a version greater than 0.112, you get the error shown below. NOTE: You don't even need to be trying to access the underlying RedisDB for this issue to occur, it is native to the Redis-OM wrapper around Pydantic.
To recreate for yourself:
The error:
The text was updated successfully, but these errors were encountered: