mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-10 13:10:21 +08:00
- 关闭自动获取上游模型时清空 allowed_models - 开启自动获取上游模型时立即拉取并覆盖 allowed_models - 增加模型覆盖提示并补充相关回归测试
10 lines
264 B
Rust
10 lines
264 B
Rust
mod runtime;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub(crate) use aether_model_fetch::ModelFetchRunSummary;
|
|
pub(crate) use runtime::state::ModelFetchRuntimeState;
|
|
pub(crate) use runtime::{
|
|
perform_model_fetch_for_key, perform_model_fetch_once, spawn_model_fetch_worker,
|
|
};
|