Update main.py
Browse files
main.py
CHANGED
@@ -29,9 +29,8 @@ FASTTEXT_PREFIX_LENGTH = 9 # fasttext labels are formatted like "__label__eng_L
|
|
29 |
|
30 |
BASE_DATASETS_SERVER_URL = "https://datasets-server.huggingface.co"
|
31 |
DEFAULT_FAST_TEXT_MODEL = "facebook/fasttext-language-identification"
|
32 |
-
headers = {
|
33 |
-
|
34 |
-
}
|
35 |
timeout = Timeout(60, read=120)
|
36 |
client = Client(headers=headers, timeout=timeout)
|
37 |
async_client = AsyncClient(headers=headers, timeout=timeout)
|
|
|
29 |
|
30 |
BASE_DATASETS_SERVER_URL = "https://datasets-server.huggingface.co"
|
31 |
DEFAULT_FAST_TEXT_MODEL = "facebook/fasttext-language-identification"
|
32 |
+
headers = {"Authorization": f"Bearer {HF_TOKEN}"}
|
33 |
+
|
|
|
34 |
timeout = Timeout(60, read=120)
|
35 |
client = Client(headers=headers, timeout=timeout)
|
36 |
async_client = AsyncClient(headers=headers, timeout=timeout)
|