mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Downloader: use HF get_token function (#5381)
This commit is contained in:
parent
de387069da
commit
828be63f2c
@ -20,6 +20,7 @@ import requests
|
|||||||
import tqdm
|
import tqdm
|
||||||
from requests.adapters import HTTPAdapter
|
from requests.adapters import HTTPAdapter
|
||||||
from tqdm.contrib.concurrent import thread_map
|
from tqdm.contrib.concurrent import thread_map
|
||||||
|
from huggingface_hub import get_token
|
||||||
|
|
||||||
base = "https://huggingface.co"
|
base = "https://huggingface.co"
|
||||||
|
|
||||||
@ -32,8 +33,8 @@ class ModelDownloader:
|
|||||||
self.session.mount('https://huggingface.co', HTTPAdapter(max_retries=max_retries))
|
self.session.mount('https://huggingface.co', HTTPAdapter(max_retries=max_retries))
|
||||||
if os.getenv('HF_USER') is not None and os.getenv('HF_PASS') is not None:
|
if os.getenv('HF_USER') is not None and os.getenv('HF_PASS') is not None:
|
||||||
self.session.auth = (os.getenv('HF_USER'), os.getenv('HF_PASS'))
|
self.session.auth = (os.getenv('HF_USER'), os.getenv('HF_PASS'))
|
||||||
if os.getenv('HF_TOKEN') is not None:
|
if get_token() is not None:
|
||||||
self.session.headers = {'authorization': f'Bearer {os.getenv("HF_TOKEN")}'}
|
self.session.headers = {'authorization': f'Bearer {get_token()}'}
|
||||||
|
|
||||||
def sanitize_model_and_branch_names(self, model, branch):
|
def sanitize_model_and_branch_names(self, model, branch):
|
||||||
if model[-1] == '/':
|
if model[-1] == '/':
|
||||||
|
Loading…
Reference in New Issue
Block a user