Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cortex-tui/src/runner/event_loop/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ impl EventLoop {
Err(_) => {
// Timeout
let _ = tx
.send(StreamEvent::Error("Response timeout".to_string()))
.send(StreamEvent::Error("The provider appears to be overloaded or your internet connection/proxy is experiencing issues communicating with it.".to_string()))
.await;
break;
}
Expand Down Expand Up @@ -833,7 +833,7 @@ impl EventLoop {
}
Err(_) => {
let _ = tx
.send(StreamEvent::Error("Response timeout".to_string()))
.send(StreamEvent::Error("The provider appears to be overloaded or your internet connection/proxy is experiencing issues communicating with it.".to_string()))
.await;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/cortex-tui/src/runner/event_loop/subagent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ impl EventLoop {
.send(ToolEvent::Failed {
id: id.clone(),
name: "Task".to_string(),
error: "Response timeout".to_string(),
error: "The provider appears to be overloaded or your internet connection/proxy is experiencing issues communicating with it.".to_string(),
duration: started_at.elapsed(),
})
.await
Expand Down