Erfan11 commited on
Commit
34bd5b0
1 Parent(s): 149331f

Update utils.py

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