kopyl

Untitled

Jul 25th, 2023
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.44 KB | None | 0 0
  1. *** API error: POST: http://100.65.14.8:60106/internal/progress {'error': 'ValidationError', 'detail': '', 'body': '', 'errors': '3 validation errors for ProgressResponse\neta\n Input should be a valid number [type=float_type, input_value=None, input_type=NoneType]\n For further information visit https://errors.pydantic.dev/2.1/v/float_type\nlive_preview\n Input should be a valid string [type=string_type, input_value=None, input_type=NoneType]\n For further information visit https://errors.pydantic.dev/2.1/v/string_type\ntextinfo\n Input should be a valid string [type=string_type, input_value=None, input_type=NoneType]\n For further information visit https://errors.pydantic.dev/2.1/v/string_type'}
  2. Traceback (most recent call last):
  3. File "/usr/local/lib/python3.10/dist-packages/anyio/streams/memory.py", line 98, in receive
  4. return self.receive_nowait()
  5. File "/usr/local/lib/python3.10/dist-packages/anyio/streams/memory.py", line 93, in receive_nowait
  6. raise WouldBlock
  7. anyio.WouldBlock
  8.  
  9. During handling of the above exception, another exception occurred:
  10.  
  11. Traceback (most recent call last):
  12. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/base.py", line 78, in call_next
  13. message = await recv_stream.receive()
  14. File "/usr/local/lib/python3.10/dist-packages/anyio/streams/memory.py", line 118, in receive
  15. raise EndOfStream
  16. anyio.EndOfStream
  17.  
  18. During handling of the above exception, another exception occurred:
  19.  
  20. Traceback (most recent call last):
  21. File "/stable-diffusion-webui/modules/api/api.py", line 152, in exception_handling
  22. return await call_next(request)
  23. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/base.py", line 84, in call_next
  24. raise app_exc
  25. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/base.py", line 70, in coro
  26. await self.app(scope, receive_or_disconnect, send_no_error)
  27. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/base.py", line 108, in __call__
  28. response = await self.dispatch_func(request, call_next)
  29. File "/stable-diffusion-webui/modules/api/api.py", line 116, in log_and_time
  30. res: Response = await call_next(req)
  31. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/base.py", line 84, in call_next
  32. raise app_exc
  33. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/base.py", line 70, in coro
  34. await self.app(scope, receive_or_disconnect, send_no_error)
  35. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/cors.py", line 91, in __call__
  36. await self.simple_response(scope, receive, send, request_headers=headers)
  37. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/cors.py", line 146, in simple_response
  38. await self.app(scope, receive, send)
  39. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/gzip.py", line 24, in __call__
  40. await responder(scope, receive, send)
  41. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/gzip.py", line 44, in __call__
  42. await self.app(scope, receive, self.send_with_gzip)
  43. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/exceptions.py", line 79, in __call__
  44. raise exc
  45. File "/usr/local/lib/python3.10/dist-packages/starlette/middleware/exceptions.py", line 68, in __call__
  46. await self.app(scope, receive, sender)
  47. File "/usr/local/lib/python3.10/dist-packages/fastapi/middleware/asyncexitstack.py", line 20, in __call__
  48. raise e
  49. File "/usr/local/lib/python3.10/dist-packages/fastapi/middleware/asyncexitstack.py", line 17, in __call__
  50. await self.app(scope, receive, send)
  51. File "/usr/local/lib/python3.10/dist-packages/starlette/routing.py", line 718, in __call__
  52. await route.handle(scope, receive, send)
  53. File "/usr/local/lib/python3.10/dist-packages/starlette/routing.py", line 276, in handle
  54. await self.app(scope, receive, send)
  55. File "/usr/local/lib/python3.10/dist-packages/starlette/routing.py", line 66, in app
  56. response = await func(request)
  57. File "/usr/local/lib/python3.10/dist-packages/fastapi/routing.py", line 273, in app
  58. raw_response = await run_endpoint_function(
  59. File "/usr/local/lib/python3.10/dist-packages/fastapi/routing.py", line 192, in run_endpoint_function
  60. return await run_in_threadpool(dependant.call, **values)
  61. File "/usr/local/lib/python3.10/dist-packages/starlette/concurrency.py", line 41, in run_in_threadpool
  62. return await anyio.to_thread.run_sync(func, *args)
  63. File "/usr/local/lib/python3.10/dist-packages/anyio/to_thread.py", line 33, in run_sync
  64. return await get_asynclib().run_sync_in_worker_thread(
  65. File "/usr/local/lib/python3.10/dist-packages/anyio/_backends/_asyncio.py", line 877, in run_sync_in_worker_thread
  66. return await future
  67. File "/usr/local/lib/python3.10/dist-packages/anyio/_backends/_asyncio.py", line 807, in run
  68. result = context.run(func, *args)
  69. File "/stable-diffusion-webui/modules/progress.py", line 120, in progressapi
  70. return ProgressResponse(active=active, queued=queued, completed=completed, progress=progress, eta=eta, live_preview=live_preview, id_live_preview=id_live_preview, textinfo=shared.state.textinfo)
  71. File "/usr/local/lib/python3.10/dist-packages/pydantic/main.py", line 159, in __init__
  72. __pydantic_self__.__pydantic_validator__.validate_python(data, self_instance=__pydantic_self__)
  73. pydantic_core._pydantic_core.ValidationError: 3 validation errors for ProgressResponse
  74. eta
  75. Input should be a valid number [type=float_type, input_value=None, input_type=NoneType]
  76. For further information visit https://errors.pydantic.dev/2.1/v/float_type
  77. live_preview
  78. Input should be a valid string [type=string_type, input_value=None, input_type=NoneType]
  79. For further information visit https://errors.pydantic.dev/2.1/v/string_type
  80. textinfo
  81. Input should be a valid string [type=string_type, input_value=None, input_type=NoneType]
  82. For further information visit https://errors.pydantic.dev/2.1/v/string_type
  83.  
  84. ---
  85. Applying attention optimization: xformers... done.
  86. Model loaded in 11.3s (load weights from disk: 1.9s, create model: 0.7s, apply weights to model: 7.7s, apply half(): 0.5s, move model to device: 0.3s).
Add Comment
Please, Sign In to add comment