mirror of
https://github.com/instructkr/claude-code.git
synced 2026-06-06 04:06:45 +00:00
- Add TimeoutConfig to HTTP client builder with connect_timeout (30s) and request_timeout (5min) defaults, configurable via CLAW_API_CONNECT_TIMEOUT and CLAW_API_REQUEST_TIMEOUT env vars - Add with_timeout() builder to both AnthropicClient and OpenAiCompatClient for per-client timeout configuration - Parse Retry-After header on 429 responses and use it to override exponential backoff delay when present - Add ApiTimeoutConfig to runtime config with apiTimeout settings in ~/.claw/settings.json (connectTimeout, requestTimeout, maxRetries) - Add retry_after field to ApiError::Api for propagating rate limit backoff hints through the retry pipeline
48 lines
1.9 KiB
Rust
48 lines
1.9 KiB
Rust
mod client;
|
|
mod error;
|
|
mod http_client;
|
|
mod prompt_cache;
|
|
mod providers;
|
|
mod sse;
|
|
mod types;
|
|
|
|
pub use client::{
|
|
oauth_token_is_expired, read_base_url, read_xai_base_url, resolve_saved_oauth_token,
|
|
resolve_startup_auth_source, MessageStream, OAuthTokenSet, ProviderClient,
|
|
};
|
|
pub use error::ApiError;
|
|
pub use http_client::{
|
|
TimeoutConfig,
|
|
build_http_client, build_http_client_or_default, build_http_client_with,
|
|
build_http_client_with_opts, ProxyConfig,
|
|
};
|
|
pub use prompt_cache::{
|
|
CacheBreakEvent, PromptCache, PromptCacheConfig, PromptCachePaths, PromptCacheRecord,
|
|
PromptCacheStats,
|
|
};
|
|
pub use providers::anthropic::{AnthropicClient, AnthropicClient as ApiClient, AuthSource};
|
|
pub use providers::openai_compat::{
|
|
build_chat_completion_request, check_request_body_size, estimate_request_body_size,
|
|
flatten_tool_result_content, is_reasoning_model, model_rejects_is_error_field,
|
|
model_requires_reasoning_content_in_history, translate_message, OpenAiCompatClient,
|
|
OpenAiCompatConfig,
|
|
};
|
|
pub use providers::{
|
|
detect_provider_kind, max_tokens_for_model, max_tokens_for_model_with_override,
|
|
model_family_identity_for, model_family_identity_for_kind, provider_diagnostics_for_model,
|
|
resolve_model_alias, ProviderDiagnostics, ProviderKind,
|
|
};
|
|
pub use sse::{parse_frame, SseParser};
|
|
pub use types::{
|
|
ContentBlockDelta, ContentBlockDeltaEvent, ContentBlockStartEvent, ContentBlockStopEvent,
|
|
InputContentBlock, InputMessage, MessageDelta, MessageDeltaEvent, MessageRequest,
|
|
MessageResponse, MessageStartEvent, MessageStopEvent, OutputContentBlock, StreamEvent,
|
|
ToolChoice, ToolDefinition, ToolResultContentBlock, Usage,
|
|
};
|
|
|
|
pub use telemetry::{
|
|
AnalyticsEvent, AnthropicRequestProfile, ClientIdentity, JsonlTelemetrySink,
|
|
MemoryTelemetrySink, SessionTraceRecord, SessionTracer, TelemetryEvent, TelemetrySink,
|
|
DEFAULT_ANTHROPIC_VERSION,
|
|
};
|