Spaces:
Running
Running
File size: 193 Bytes
0339ef7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
API_URL = os.getenv("API_URL", "http://localhost:8000")
OWNER = "siro1"
QUEUE_REPO = f"{OWNER}/requests"
RESULTS_REPO = f"{OWNER}/results"
CACHE_PATH = os.getenv("HF_HOME", ".")
|