acp: Support model selection for ACP agents (#38652)

It requires the agent to implement the (still unstable) model selection
API. Will allow us to test it out before stabilizing.

Release Notes:

- N/A
This commit is contained in:
Ben Brandt
2025-09-22 15:07:40 +00:00
committed by GitHub
parent dccbb47fbc
commit 4e6e424fd7
13 changed files with 391 additions and 190 deletions
+3 -3
View File
@@ -180,9 +180,9 @@ pub enum DocumentationEdge {
#[derive(Clone)]
pub struct DocumentationAside {
side: DocumentationSide,
edge: DocumentationEdge,
render: Rc<dyn Fn(&mut App) -> AnyElement>,
pub side: DocumentationSide,
pub edge: DocumentationEdge,
pub render: Rc<dyn Fn(&mut App) -> AnyElement>,
}
impl DocumentationAside {