fix: restore anthropic request profile integration

This commit is contained in:
YeonGyu-Kim
2026-04-02 11:31:53 +09:00
parent 8476d713a8
commit de589d47a5
2 changed files with 204 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
mod client;
mod error;
mod prompt_cache;
mod providers;
mod sse;
mod types;
@@ -9,6 +10,10 @@ pub use client::{
resolve_startup_auth_source, MessageStream, OAuthTokenSet, ProviderClient,
};
pub use error::ApiError;
pub use prompt_cache::{
CacheBreakEvent, PromptCache, PromptCacheConfig, PromptCachePaths, PromptCacheRecord,
PromptCacheStats,
};
pub use providers::anthropic::{AnthropicClient, AnthropicClient as ApiClient, AuthSource};
pub use providers::openai_compat::{OpenAiCompatClient, OpenAiCompatConfig};
pub use providers::{