Update AI agent, settings, and terminal modules
- Update AI agent conversation, task, and prompt builder - Add notebooks execution module for blocklist actions - Update Bedrock and OpenAI response translators - Refactor settings modules across multiple subsystems - Update terminal settings and window settings - Update drive settings and search command settings
This commit is contained in:
@@ -2109,7 +2109,12 @@ impl AIConversation {
|
||||
let streaming_exchange_ids: Vec<_> = self
|
||||
.task_store
|
||||
.all_exchanges()
|
||||
.filter(|exchange| matches!(exchange.output_status, AIAgentOutputStatus::Streaming { .. }))
|
||||
.filter(|exchange| {
|
||||
matches!(
|
||||
exchange.output_status,
|
||||
AIAgentOutputStatus::Streaming { .. }
|
||||
)
|
||||
})
|
||||
.map(|exchange| exchange.id)
|
||||
.collect();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user