diff --git a/rust/crates/api/src/providers/openai_compat.rs b/rust/crates/api/src/providers/openai_compat.rs index de2660e6..7fbf6367 100644 --- a/rust/crates/api/src/providers/openai_compat.rs +++ b/rust/crates/api/src/providers/openai_compat.rs @@ -1503,7 +1503,6 @@ fn parse_sse_frame( body: trimmed.chars().take(500).collect(), retryable: false, suggested_action: suggested_action_for_status(status), - retry_after: None, }); } } @@ -1519,7 +1518,6 @@ fn parse_sse_frame( body: trimmed.chars().take(200).collect(), retryable: false, suggested_action: Some("verify the API endpoint URL is correct".to_string()), - retry_after: None, }); } return Ok(None); @@ -1571,7 +1569,6 @@ fn parse_sse_frame( body: payload.chars().take(200).collect(), retryable: false, suggested_action: Some("verify the API endpoint URL is correct".to_string()), - retry_after: None, }); } serde_json::from_str::(&payload)