Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ def query(payload):
|
|
11 |
headers = {"Authorization": f"Bearer {api_token}"}
|
12 |
API_URL = f"https://api-inference.huggingface.co/models/{model_id}"
|
13 |
response = requests.post(API_URL, headers=headers, json=payload)
|
14 |
-
|
15 |
|
16 |
message("Let's find out the best task for your use case! Tell me about your use case :)")
|
17 |
context = "To extract information from documents, use sentence similarity task. To do sentiment analysis from tweets, use text classification task. To detect masks from images, use object detection task. To extract information from invoices, use named entity recognition from token classification task."
|
|
|
11 |
headers = {"Authorization": f"Bearer {api_token}"}
|
12 |
API_URL = f"https://api-inference.huggingface.co/models/{model_id}"
|
13 |
response = requests.post(API_URL, headers=headers, json=payload)
|
14 |
+
return response.json()
|
15 |
|
16 |
message("Let's find out the best task for your use case! Tell me about your use case :)")
|
17 |
context = "To extract information from documents, use sentence similarity task. To do sentiment analysis from tweets, use text classification task. To detect masks from images, use object detection task. To extract information from invoices, use named entity recognition from token classification task."
|