This commit is contained in:
jif-oai
2025-11-10 18:17:28 +00:00
parent 6239decccc
commit ba2873074e
9 changed files with 9 additions and 72 deletions

View File

@@ -27,13 +27,3 @@ pub trait ResponseDecoder {
otel: &OtelEventManager,
) -> Result<()>;
}
/// Optional trait to expose rate limit parsing where needed.
pub trait RateLimitProvider {
fn parse(
&self,
_headers: &reqwest::header::HeaderMap,
) -> Option<codex_protocol::protocol::RateLimitSnapshot> {
None
}
}