saptarashmi commited on
Commit
45f8efc
·
verified ·
1 Parent(s): 7a002c5

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -56,7 +56,7 @@ class DebateAgent:
56
  temperature=0.2
57
  )
58
  response_text = completion.choices[0].message.content
59
- self.conversation_history.append({\"role\": \"assistant\", \"content\": response_text})
60
  return response_text
61
  except Exception as e:
62
  return f"Error: {e}"
 
56
  temperature=0.2
57
  )
58
  response_text = completion.choices[0].message.content
59
+ self.conversation_history.append({"role": "assistant", "content": response_text})
60
  return response_text
61
  except Exception as e:
62
  return f"Error: {e}"