-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod.rs
More file actions
23 lines (21 loc) · 837 Bytes
/
mod.rs
File metadata and controls
23 lines (21 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Cortex TUI Views
//!
//! This module contains the main view components for the Cortex TUI.
//!
//! ## Available Views
//!
//! - [`MinimalSessionView`](minimal_session::MinimalSessionView) - Minimalist terminal-style chat
//! - [`ApprovalView`](approval::ApprovalView) - Tool approval modal
//! - [`QuestionPromptView`](question_prompt::QuestionPromptView) - Interactive question prompt
//! - [`TasksView`](tasks::TasksView) - Background tasks monitoring view
//! - [`tool_call`] - Tool call display types
pub mod approval;
pub mod minimal_session;
pub mod question_prompt;
pub mod tasks;
pub mod tool_call;
// Re-exports
pub use approval::ApprovalView;
pub use minimal_session::MinimalSessionView;
pub use question_prompt::{QuestionClickZones, QuestionHit, QuestionPromptView};
pub use tasks::{TaskDisplay, TaskStatus, TasksView};