James MacQuillan commited on
Commit
442cee7
·
1 Parent(s): 1595ea1
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -400,12 +400,12 @@ def detect_data_request(user_input, history):
400
 
401
  # Convert the JSON response into human-readable text
402
  human_readable_text = json_to_text(jsoned_data)
403
-
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} with {human_readable_text}"}],
409
  max_tokens=1500,
410
  stream=True,
411
  ):
 
400
 
401
  # Convert the JSON response into human-readable text
402
  human_readable_text = json_to_text(jsoned_data)
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} with {stringed_text}"}],
409
  max_tokens=1500,
410
  stream=True,
411
  ):