More progress

This commit is contained in:
Conrad Irwin 2025-08-15 23:43:16 -06:00
parent eebe425c1d
commit fa6c0a1a49
4 changed files with 158 additions and 22 deletions

View file

@ -31,6 +31,16 @@ pub trait AgentConnection {
return None;
}
fn load_thread(
self: Rc<Self>,
_project: Entity<Project>,
_cwd: &Path,
_session_id: acp::SessionId,
_cx: &mut App,
) -> Task<Result<Entity<AcpThread>>> {
Task::ready(Err(anyhow::anyhow!("load thread not implemented")))
}
fn auth_methods(&self) -> &[acp::AuthMethod];
fn authenticate(&self, method: acp::AuthMethodId, cx: &mut App) -> Task<Result<()>>;