Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -1,13 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
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()
|
|
|
1 |
+
def read_file(file_path):
|
2 |
+
with open(file_path, 'r') as file:
|
3 |
+
return file.read()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|