Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -1,7 +1,13 @@
|
|
1 |
-
import
|
2 |
-
from
|
|
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import requests
|
2 |
+
from dotenv import load_dotenv
|
3 |
+
import os
|
4 |
|
5 |
+
load_dotenv()
|
6 |
+
api_key = os.getenv('HF_API_KEY')
|
7 |
+
model_path = os.getenv('MODEL_PATH')
|
8 |
+
|
9 |
+
def get_model_predictions(text):
|
10 |
+
headers = {"Authorization": f"Bearer {api_key}"}
|
11 |
+
payload = {"inputs": text}
|
12 |
+
response = requests.post(f"https://api.huggingface.co/models/{model_path}", headers=headers, json=payload)
|
13 |
+
return response.json()
|