James MacQuillan commited on
Commit
6c1699a
·
1 Parent(s): cdcb9a8
Files changed (1) hide show
  1. app.py +8 -8
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
- for message in client.chat_completion(
407
- model="Qwen/Qwen2.5-72B-Instruct",
408
- messages=[{"role": "user", "content": f"answer {youreq} "}],
409
  max_tokens=1500,
410
- stream=True,
411
- ):
412
- delta = message.choices[0].delta
413
-
414
- final_response += delta["content"]
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: