updated access token
Browse files
app.py
CHANGED
|
@@ -37,7 +37,7 @@ MODEL_SETTINGS = {
|
|
| 37 |
@app.on_event("startup")
|
| 38 |
async def startup_event():
|
| 39 |
global MODELS
|
| 40 |
-
token = os.getenv("
|
| 41 |
if token: login(token=token)
|
| 42 |
|
| 43 |
print(f"Downloading models from {REPO_ID}...")
|
|
|
|
| 37 |
@app.on_event("startup")
|
| 38 |
async def startup_event():
|
| 39 |
global MODELS
|
| 40 |
+
token = os.getenv("HF_Token")
|
| 41 |
if token: login(token=token)
|
| 42 |
|
| 43 |
print(f"Downloading models from {REPO_ID}...")
|