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