Spaces:
Sleeping
Sleeping
James MacQuillan
commited on
Commit
·
6c1699a
1
Parent(s):
cdcb9a8
push
Browse files
app.py
CHANGED
@@ -403,15 +403,15 @@ def detect_data_request(user_input, history):
|
|
403 |
stringed_text = str(human_readable_text)
|
404 |
# Send the data to the LLM for further processing
|
405 |
final_response = ""
|
406 |
-
|
407 |
-
model="
|
408 |
-
messages=[{"role": "user", "content": f"answer {
|
409 |
max_tokens=1500,
|
410 |
-
stream=
|
411 |
-
)
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
|
416 |
history.append(("You: " + user_input, "IM.B: " + final_response))
|
417 |
except:
|
|
|
403 |
stringed_text = str(human_readable_text)
|
404 |
# Send the data to the LLM for further processing
|
405 |
final_response = ""
|
406 |
+
response = client.chat_completion(
|
407 |
+
model="mistralai/Mistral-7B-Instruct-v0.3",
|
408 |
+
messages=[{"role": "user", "content": f"answer {user_input} with {human_readable_text}"}],
|
409 |
max_tokens=1500,
|
410 |
+
stream=False
|
411 |
+
)
|
412 |
+
|
413 |
+
full_response = response.choices[0].message['content']
|
414 |
+
history.append(("You: " + user_input, "IM.B: " + full_response))
|
415 |
|
416 |
history.append(("You: " + user_input, "IM.B: " + final_response))
|
417 |
except:
|