Chat with RTX运行报错:ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True.

今天安装了Chat with RTX之后,每次一发送消息就显示错误,这里提供一个解决方法:

问题描述:安装了Chat with RTX后,每次发送消息都显示错误。

解决方法

  1. 打开安装目录下的env_nvd_rag/Lib/site-packages/huggingface_hub/hf_api.py文件。
  2. 在文件中搜索def model_info(找到对应的函数。
  3. model_info函数中搜索r = get_session().get(path, headers=headers, timeout=timeout, params=params)这一行代码。
  4. 修改该行代码,将原代码修改为以下内容:
r = get_session().get(path, headers=headers, timeout=timeout, params=params,
    proxies={
        "http": "http://127.0.0.1:8080",
        "https": "http://127.0.0.1:8080"
    })
  1. 请注意将上述代码中的proxy端口号修改为你实际使用的端口号。
posted @ 2024-02-17 01:04  spacelit  阅读(1549)  评论(0编辑  收藏  举报