Spaces:
Running
Running
Update app.py
Browse files
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)
|