codetether-agent 4.6.0

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Provider HTTP retry logic.
//!
//! Wraps outbound API calls (Z.AI, OpenAI, etc.) with infinite-retry
//! exponential backoff so transient overload / rate-limit / 5xx errors
//! never terminate an agentic session. Used by provider `complete` and
//! `complete_stream` implementations in [`super::zai`].
mod classify;
mod send;
mod stream;

pub use send::send_with_retry;
pub use stream::send_response_with_retry;