ZIm/crates/agent_ui/src/acp.rs
Agus Zubiaga 43ee604179
acp: Clean up entry views on rewind (#36197)
We were leaking diffs and terminals on rewind, we'll now clean them up.
This PR also introduces a refactor of how we mantain the entry view
state to use a `Vec` that's kept in sync with the thread entries.

Release Notes:

- N/A
2025-08-14 18:30:18 +00:00

10 lines
268 B
Rust

mod completion_provider;
mod entry_view_state;
mod message_editor;
mod model_selector;
mod model_selector_popover;
mod thread_view;
pub use model_selector::AcpModelSelector;
pub use model_selector_popover::AcpModelSelectorPopover;
pub use thread_view::AcpThreadView;