huskies: merge 1015

This commit is contained in:
dave
2026-05-13 23:39:17 +00:00
parent 69b207872a
commit 5ed1438ab9
22 changed files with 227 additions and 73 deletions
+3 -3
View File
@@ -364,13 +364,13 @@ impl AgentPool {
let effective_session_id = session_id_to_resume.or_else(|| {
let model = config
.find_agent(&resolved_name)
.and_then(|a| a.model.clone())
.unwrap_or_default();
.and_then(|a| a.model.as_ref().map(|m| m.as_str()))
.unwrap_or("");
crate::agents::session_store::lookup_session(
project_root,
story_id,
&resolved_name,
&model,
model,
)
});