I got an error in my roop gradio app how to solve it

Traceback (most recent call last):
File “/home/user/.local/lib/python3.10/site-packages/gradio/routes.py”, line 523, in run_predict
output = await app.get_blocks().process_api(
File “/home/user/.local/lib/python3.10/site-packages/gradio/blocks.py”, line 1437, in process_api
result = await self.call_function(
File “/home/user/.local/lib/python3.10/site-packages/gradio/blocks.py”, line 1109, in call_function
prediction = await anyio.to_thread.run_sync(
File “/home/user/.local/lib/python3.10/site-packages/anyio/to_thread.py”, line 33, in run_sync
return await get_async_backend().run_sync_in_worker_thread(
File “/home/user/.local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py”, line 2106, in run_sync_in_worker_thread
return await future
File “/home/user/.local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py”, line 833, in run
result = context.run(func, *args)
File “/home/user/.local/lib/python3.10/site-packages/gradio/utils.py”, line 865, in wrapper
response = f(*args, **kwargs)
File “/home/user/app/app.py”, line 59, in swap_face
if not frame_processor.pre_check():
File “/home/user/app/roop/processors/frame/face_swapper.py”, line 30, in pre_check
conditional_download(download_directory_path, [‘https://huggingface.co/henryruhs/roop/resolve/main/inswapper_128.onnx’])
File “/home/user/app/roop/utilities.py”, line 134, in conditional_download
request = urllib.request.urlopen(url) # type: ignore[attr-defined]
File “/usr/local/lib/python3.10/urllib/request.py”, line 216, in urlopen
return opener.open(url, data, timeout)
File “/usr/local/lib/python3.10/urllib/request.py”, line 525, in open
response = meth(req, response)
File “/usr/local/lib/python3.10/urllib/request.py”, line 634, in http_response
response = self.parent.error(
File “/usr/local/lib/python3.10/urllib/request.py”, line 563, in error
return self._call_chain(*args)
File “/usr/local/lib/python3.10/urllib/request.py”, line 496, in _call_chain
result = func(*args)
File “/usr/local/lib/python3.10/urllib/request.py”, line 643, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 401: Unauthorized

I’m getting an error while using the pipeline for roop face swap . Can you help @lewtun @sgugger