Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def main():
|
|
32 |
model_id="sentence-transformers/nli-distilbert-base"
|
33 |
|
34 |
api_url = f"https://api-inference.huggingface.co/pipeline/feature-extraction/{model_id}"
|
35 |
-
headers = {"Authorization": "Bearer
|
36 |
|
37 |
def query(texts):
|
38 |
response = requests.post(api_url, headers=headers, json={"inputs": texts, "options":{"wait_for_model":True}})
|
|
|
32 |
model_id="sentence-transformers/nli-distilbert-base"
|
33 |
|
34 |
api_url = f"https://api-inference.huggingface.co/pipeline/feature-extraction/{model_id}"
|
35 |
+
headers = {"Authorization": f"Bearer {st.secrets['HF_token']}"}
|
36 |
|
37 |
def query(texts):
|
38 |
response = requests.post(api_url, headers=headers, json={"inputs": texts, "options":{"wait_for_model":True}})
|