python应用运行时报错,部分信息如下:
ERROR: Exception in ASGI application Traceback (most recent call last): File “lib\site-packages\pydantic\type_adapter.py”, line 270, in _init_core_attrs self._core_schema = _getattr_no_parents(self._type, ‘__pydantic_core_schema__’) File “lib\site-packages\pydantic\type_adapter.py”, line 112, in _getattr_no_parents raise “D:\python\LivePortrait20241010\myenv\lib\site-packages\pydantic\type_adapter.py”, line 135, in wrapped return func(self, *args, **kwargs) File “D:\python\LivePortrait20241010\myenv\lib\site-packages\pydantic\type_adapter.py”, line 277, in _init_core_attrs self._core_schema = _get_schema(self._type, config_wrapper, parent_depth=self._parent_depth) File “D:\python\LivePortrait20241010\myenv\lib\site-packages\pydantic\type_adapter.py”, line 95, in _get_schema schema = gen.generate_schema(type_) File packages\pydantic\_internal\_generate_schema.py”, line 558, in _unknown_type_schema raise PydanticSchemaGenerationError( pydantic.errors.PydanticSchemaGenerationError: Unable to generate pydantic-core schema for <class ‘starlette.requests.Request’>. 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(<some type>) 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.9/u/schema-for-unknown-type
错误信息一大串,我主要是在使用gradio生成的webui界面操作的时候报错:
Assist:gradion ui opens to input or generate an error Could not parse server response: SyntaxError: Unexpected token ‘I’, “Internal S”… is not valid JSON
上面信息主要是由于gradio BUG引起的错误,卸载重装或升级gradio和gradio_client即可