mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-11 05:30:19 +08:00
37 lines
1.8 KiB
Rust
37 lines
1.8 KiB
Rust
mod association_sync;
|
|
mod config;
|
|
mod logic;
|
|
mod strategy;
|
|
mod transport;
|
|
|
|
pub use association_sync::{
|
|
sync_provider_model_whitelist_associations, ModelFetchAssociationStore,
|
|
};
|
|
pub use config::{
|
|
model_fetch_interval_minutes, model_fetch_startup_delay_seconds, model_fetch_startup_enabled,
|
|
};
|
|
pub use logic::{
|
|
aggregate_models_for_cache, apply_model_filters, build_models_fetch_url,
|
|
build_models_fetch_url_for_client_version, deepseek_anthropic_models_fetch_uses_openai_auth,
|
|
endpoint_supports_rust_models_fetch, extract_error_message, json_string_list,
|
|
merge_upstream_metadata, model_catalog_upstream_metadata, parse_models_response,
|
|
parse_models_response_page, parse_windsurf_model_configs_response, preset_models_for_provider,
|
|
project_codex_models_for_legacy_cache, provider_type_uses_preset_models,
|
|
select_models_fetch_endpoint, selected_models_fetch_endpoints,
|
|
upstream_metadata_namespace_updates, ModelFetchRunSummary, ModelsFetchPage, ModelsFetchSuccess,
|
|
};
|
|
pub use strategy::{
|
|
antigravity_model_id_is_routable, fetch_models_from_transports,
|
|
fetch_models_from_transports_for_client_version, fetch_models_from_transports_for_management,
|
|
ModelFetchStrategy, ModelFetchStrategyKind, ModelsFetchOutcome, SelectedModelFetchStrategy,
|
|
};
|
|
pub use transport::{
|
|
build_antigravity_fetch_available_models_plan, build_antigravity_load_code_assist_plan,
|
|
build_gemini_cli_load_code_assist_plan, build_kiro_list_available_models_plan,
|
|
build_models_fetch_execution_plan, build_models_fetch_execution_plan_for_client_version,
|
|
build_standard_models_fetch_execution_plan,
|
|
build_standard_models_fetch_execution_plan_for_client_version,
|
|
build_vertex_models_fetch_execution_plan, build_windsurf_model_configs_execution_plan,
|
|
ModelFetchTransportRuntime,
|
|
};
|