mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 17:30:23 +08:00
* fix(provider): 对齐 Vertex/Gemini 上游发包与 Python master - provider-transport: 为 custom+aiplatform 推断 Vertex API key 上下文并统一 URL 构建顺序,复用共享 request_url 构建最终上游地址 - ai-pipeline/gateway: Vertex Gemini 路径改为仅使用 URL query key,不再向上游附带 x-goog-api-key header;同步对齐 standard/admin/test-connection/runtime miss 摘要中的最终 URL - gemini conversion: 按 Python master 输出 Gemini 请求体,补齐 system_instruction / generation_config / tool_config / function_declarations 形态,并移植 Gemini schema 清洗逻辑 - scheduler/executor: 将最终 upstream_url、mapped_model、key_name 写入候选 extra_data,运行时 miss 诊断优先展示真实展开后的上游 URL 便于服务器排障 * fix(provider): 修复 Vertex provider 测试与本地调度链路 * fix(provider): 对齐 Vertex 本地执行与 Rust CI
58 lines
2.2 KiB
Rust
58 lines
2.2 KiB
Rust
pub mod antigravity;
|
|
pub mod auth;
|
|
mod auth_config;
|
|
mod cache;
|
|
pub mod claude_code;
|
|
mod generic_oauth;
|
|
mod headers;
|
|
pub mod kiro;
|
|
mod network;
|
|
pub mod oauth_refresh;
|
|
pub mod policy;
|
|
pub mod provider_types;
|
|
mod request_url;
|
|
pub mod rules;
|
|
pub mod snapshot;
|
|
pub mod url;
|
|
pub mod vertex;
|
|
mod video;
|
|
|
|
pub use auth::{build_passthrough_headers, ensure_upstream_auth_header};
|
|
pub use cache::{provider_transport_snapshot_looks_refreshed, ProviderTransportSnapshotCacheKey};
|
|
pub use generic_oauth::{
|
|
supports_local_generic_oauth_request_auth_resolution, GenericOAuthRefreshAdapter,
|
|
};
|
|
pub use headers::{should_skip_request_header, should_skip_upstream_passthrough_header};
|
|
pub use network::{
|
|
resolve_transport_execution_timeouts, resolve_transport_proxy_snapshot,
|
|
resolve_transport_proxy_snapshot_with_tunnel_affinity, resolve_transport_tls_profile,
|
|
transport_proxy_is_locally_supported, TransportTunnelAffinityLookup,
|
|
TransportTunnelAttachmentOwner,
|
|
};
|
|
pub use oauth_refresh::{
|
|
supports_local_oauth_request_auth_resolution, CachedOAuthEntry, LocalOAuthHttpExecutor,
|
|
LocalOAuthHttpRequest, LocalOAuthHttpResponse, LocalOAuthRefreshCoordinator,
|
|
LocalOAuthRefreshError, LocalResolvedOAuthRequestAuth, ReqwestLocalOAuthHttpExecutor,
|
|
};
|
|
pub use policy::{
|
|
local_gemini_transport_unsupported_reason,
|
|
local_gemini_transport_unsupported_reason_with_network,
|
|
local_openai_chat_transport_unsupported_reason, local_standard_transport_unsupported_reason,
|
|
local_standard_transport_unsupported_reason_with_network, supports_local_gemini_transport,
|
|
supports_local_gemini_transport_with_network, supports_local_standard_transport,
|
|
};
|
|
pub use request_url::{build_transport_request_url, TransportRequestUrlParams};
|
|
pub use rules::{
|
|
apply_local_body_rules, apply_local_header_rules, body_rules_are_locally_supported,
|
|
body_rules_handle_path, header_rules_are_locally_supported,
|
|
};
|
|
pub use snapshot::{
|
|
read_provider_transport_snapshot, GatewayProviderTransportSnapshot,
|
|
ProviderTransportSnapshotSource,
|
|
};
|
|
pub use vertex::{is_vertex_api_key_transport_context, uses_vertex_api_key_query_auth};
|
|
pub use video::{
|
|
reconstruct_local_video_task_snapshot, resolve_local_video_task_transport,
|
|
VideoTaskTransportSnapshotLookup,
|
|
};
|