Update text_generator.py
Browse files- text_generator.py +1 -1
text_generator.py
CHANGED
@@ -15,7 +15,7 @@ class TextGenerationTool(Tool):
|
|
15 |
|
16 |
def __call__(self, prompt: str):
|
17 |
API_URL = "https://api-inference.huggingface.co/models/mistralai/Mistral-7B-v0.1"
|
18 |
-
headers = {"Authorization": os.environ['hf']}
|
19 |
|
20 |
payload = {
|
21 |
"inputs": prompt # Adjust this based on your model's input format
|
|
|
15 |
|
16 |
def __call__(self, prompt: str):
|
17 |
API_URL = "https://api-inference.huggingface.co/models/mistralai/Mistral-7B-v0.1"
|
18 |
+
headers = {"Authorization": "Bearer " + os.environ['hf']}
|
19 |
|
20 |
payload = {
|
21 |
"inputs": prompt # Adjust this based on your model's input format
|