This PR moves the UI-dependent logic in the `agent` crate into its own crate, `agent_ui`. The remaining `agent` crate no longer depends on `editor`, `picker`, `ui`, `workspace`, etc. This has compile time benefits, but the main motivation is to isolate our core agentic logic, so that we can make agents more pluggable/configurable. Release Notes: - N/A
6 lines
93 B
Rust
6 lines
93 B
Rust
mod agent_preview;
|
|
mod usage_callouts;
|
|
|
|
pub use agent_preview::*;
|
|
pub use usage_callouts::*;
|