azettl commited on
Commit
ed4ae7d
·
verified ·
1 Parent(s): db10e15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1245,7 +1245,7 @@ class VisualConsensusEngine:
1245
  # Show latest position from each expert
1246
  latest_positions = {}
1247
  for msg in all_messages:
1248
- if msg["speaker"] != current_model_name and not msg["speaker"].endswith("Research Agent")):
1249
  latest_positions[msg["speaker"]] = {
1250
  'text': msg['text'][:150] + "..." if len(msg['text']) > 150 else msg['text'],
1251
  'confidence': msg.get('confidence', 5)
 
1245
  # Show latest position from each expert
1246
  latest_positions = {}
1247
  for msg in all_messages:
1248
+ if msg["speaker"] != current_model_name and not msg["speaker"].endswith("Research Agent"):
1249
  latest_positions[msg["speaker"]] = {
1250
  'text': msg['text'][:150] + "..." if len(msg['text']) > 150 else msg['text'],
1251
  'confidence': msg.get('confidence', 5)