Lots of changes... not done yet.

This commit is contained in:
Ryan Ward
2026-08-17 18:19:37 -05:00
parent b5f3290d1a
commit 56e3b51d48
55 changed files with 4494 additions and 1098 deletions
+4 -2
View File
@@ -178,8 +178,10 @@ impl TerminalView {
let mut result = Vec::new();
for exchange in conversation.root_task_exchanges() {
let formatted_exchange =
exchange.format_for_copy(Some(self.ai_action_model.as_ref(ctx)));
let formatted_exchange = exchange.format_for_copy_for_conversation(
Some(self.ai_action_model.as_ref(ctx)),
Some(conversation_id),
);
if !formatted_exchange.is_empty() {
result.push(formatted_exchange);
}