-
[OK]
- All {{ agentCount }} agents have reviewed and approved. Auto-completing...
+
+
+
+
+
+
Thinking:
+
{{ currentAgentThinking }}
+
-
+
+
+ [OK]
+ All {{ agentCount }} agents have reviewed and approved. Session complete!
+
+
+
Team
@@ -200,7 +248,7 @@ const downloadDocument = () => {
-
+
@@ -228,9 +223,13 @@ function formatAgentName(agent) {
height: 5px;
}
-.agent-short {
+.agent-name {
font-weight: 600;
- font-size: 0.65rem;
+ font-size: 0.7rem;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 60px;
}
.changes-count {
diff --git a/frontend/src/stores/collaboration.js b/frontend/src/stores/collaboration.js
index 83a7fd8..e56035f 100644
--- a/frontend/src/stores/collaboration.js
+++ b/frontend/src/stores/collaboration.js
@@ -143,14 +143,14 @@ export const useCollaborationStore = defineStore('collaboration', () => {
*/
function updateDocumentFromMessage(message) {
if (message.type === 'initial_document_created') {
- currentDocument.value = message.document
+ currentDocument.value = message.content
currentRound.value = 1
} else if (message.type === 'document_modified') {
- currentDocument.value = message.document
+ currentDocument.value = message.content
} else if (message.type === 'round_complete') {
conversationHistory.value.push({
roundNumber: message.roundNumber,
- agentsMadeChanges: message.agentsWhoModified
+ agentsMadeChanges: message.agentsMadeChanges
})
}
}