dhmeltzer commited on
Commit
309aedc
·
1 Parent(s): ee89cad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 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"}
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}})