I’ve had a gradio interfaces running smoothly for a bit. Today I tried launching it and got this error:
fastapi/dependencies/utils.py:462, in add_param_to_fields(field, dependant)
460 def add_param_to_fields(*, field: ModelField, dependant: Dependant) → None:
461 field_info = cast(params.Param, field.field_info)
→ 462 if field_info.in_ == params.ParamTypes.path:
463 dependant.path_params.append(field)
464 elif field_info.in_ == params.ParamTypes.query:
Does anyone have any suggestions for versioning that may fix this? I’ve tried many, many combinations.
AttributeError: ‘FieldInfo’ object has no attribute 'in_