Update app.py
Browse files
app.py
CHANGED
@@ -464,7 +464,7 @@ def generate_text (prompt, chatbot, history, rag_option, model_option, openai_ap
|
|
464 |
result = resulti.strip()
|
465 |
else:
|
466 |
data = {"inputs": prompt, "options": {"max_new_tokens": max_new_tokens},}
|
467 |
-
response = requests.post(API_URL, headers=
|
468 |
result = response.json()
|
469 |
|
470 |
|
|
|
464 |
result = resulti.strip()
|
465 |
else:
|
466 |
data = {"inputs": prompt, "options": {"max_new_tokens": max_new_tokens},}
|
467 |
+
response = requests.post(API_URL, headers=HEADERS, json=data)
|
468 |
result = response.json()
|
469 |
|
470 |
|