feat(onboard): refresh model discovery and canonicalize provider aliases (#341)

* feat(onboard): add model refresh command with ttl cache

* fix(onboard): refresh curated models and canonicalize provider aliases

* fix(channels): align agent_turn call signature

* fix(channels): call run_tool_call_loop for stable channel runtime
This commit is contained in:
Chummy 2026-02-16 22:32:30 +08:00 committed by GitHub
parent 0995c57776
commit c842ece12c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 1150 additions and 148 deletions

View file

@ -1,6 +1,6 @@
pub mod wizard;
pub use wizard::{run_channels_repair_wizard, run_quick_setup, run_wizard};
pub use wizard::{run_channels_repair_wizard, run_models_refresh, run_quick_setup, run_wizard};
#[cfg(test)]
mod tests {
@ -13,5 +13,6 @@ mod tests {
assert_reexport_exists(run_wizard);
assert_reexport_exists(run_channels_repair_wizard);
assert_reexport_exists(run_quick_setup);
assert_reexport_exists(run_models_refresh);
}
}