converge-provider 3.7.6

LLM provider implementations for Converge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// Copyright 2024-2026 Reflective Labs
// SPDX-License-Identifier: MIT

//! Resilient chat: automatic format and model fallback on failure.
//!
//! Wraps a `DynChatBackend` with retry logic that:
//! 1. On parse/format failure: retries with JSON (native API enforcement)
//! 2. On model error (rate limit, auth, provider error): retries with a fallback backend
//!
//! This is the recommended way to call LLMs when you need structured output.

use std::sync::Arc;

use tracing::{info, warn};

use converge_provider_api::{
    BoxFuture, ChatBackend, ChatRequest, ChatResponse, DynChatBackend, LlmError,
};

/// A chat backend that retries with format and model fallbacks.
///
/// On the first attempt, uses the primary backend with the requested format.
/// If the response fails to parse as the requested format, retries with JSON.
/// If the primary backend errors, falls back to the secondary backend.
pub struct ResilientChatBackend {
    primary: Arc<dyn DynChatBackend>,
    fallback: Option<Arc<dyn DynChatBackend>>,
    primary_label: String,
    fallback_label: String,
}

impl ResilientChatBackend {
    #[must_use]
    pub fn new(primary: Arc<dyn DynChatBackend>, label: impl Into<String>) -> Self {
        Self {
            primary,
            fallback: None,
            primary_label: label.into(),
            fallback_label: String::new(),
        }
    }

    #[must_use]
    pub fn with_fallback(
        mut self,
        fallback: Arc<dyn DynChatBackend>,
        label: impl Into<String>,
    ) -> Self {
        self.fallback = Some(fallback);
        self.fallback_label = label.into();
        self
    }

    async fn chat_async(&self, req: ChatRequest) -> Result<ChatResponse, LlmError> {
        let original_format = req.response_format;

        // Attempt 1: primary backend, requested format
        match self.primary.chat(req.clone()).await {
            Ok(response) => Ok(response),
            Err(e) if is_retryable_with_format_change(&e) => {
                // Format-related failure — try JSON fallback
                if let Some(fallback_format) = original_format.fallback() {
                    warn!(
                        primary = %self.primary_label,
                        original_format = ?original_format,
                        fallback_format = ?fallback_format,
                        "Format failure, retrying with fallback format"
                    );

                    let mut retry_req = req.clone();
                    retry_req.response_format = fallback_format;

                    self.primary.chat(retry_req).await
                } else {
                    Err(e)
                }
            }
            Err(e) if is_retryable_with_model_change(&e) => {
                // Model/provider failure — try fallback backend
                if let Some(fallback) = &self.fallback {
                    warn!(
                        primary = %self.primary_label,
                        fallback = %self.fallback_label,
                        error = %e,
                        "Model failure, retrying with fallback backend"
                    );

                    match fallback.chat(req.clone()).await {
                        Ok(response) => {
                            info!(
                                fallback = %self.fallback_label,
                                "Fallback backend succeeded"
                            );
                            Ok(response)
                        }
                        Err(fallback_err) => {
                            warn!(
                                fallback = %self.fallback_label,
                                error = %fallback_err,
                                "Fallback backend also failed"
                            );
                            Err(e)
                        }
                    }
                } else {
                    Err(e)
                }
            }
            Err(e) => Err(e),
        }
    }
}

impl ChatBackend for ResilientChatBackend {
    type ChatFut<'a>
        = BoxFuture<'a, Result<ChatResponse, LlmError>>
    where
        Self: 'a;

    fn chat(&self, req: ChatRequest) -> Self::ChatFut<'_> {
        Box::pin(async move { self.chat_async(req).await })
    }
}

fn is_retryable_with_format_change(error: &LlmError) -> bool {
    matches!(
        error,
        LlmError::InvalidRequest { .. }
            | LlmError::ContentFiltered { .. }
            | LlmError::ResponseFormatMismatch { .. }
    )
}

fn is_retryable_with_model_change(error: &LlmError) -> bool {
    matches!(
        error,
        LlmError::RateLimited { .. }
            | LlmError::ProviderError { .. }
            | LlmError::ModelNotFound { .. }
            | LlmError::NetworkError { .. }
            | LlmError::Timeout { .. }
    )
}

#[cfg(test)]
mod tests {
    use std::sync::{Arc, Mutex};

    use converge_core::traits::{ChatMessage, ChatRole, ResponseFormat};

    use super::*;

    struct FormatAwareBackend {
        seen_formats: Mutex<Vec<ResponseFormat>>,
        fail_json: bool,
    }

    impl FormatAwareBackend {
        fn new(fail_json: bool) -> Self {
            Self {
                seen_formats: Mutex::new(Vec::new()),
                fail_json,
            }
        }

        fn seen_formats(&self) -> Vec<ResponseFormat> {
            self.seen_formats.lock().unwrap().clone()
        }
    }

    impl ChatBackend for FormatAwareBackend {
        type ChatFut<'a>
            = BoxFuture<'a, Result<ChatResponse, LlmError>>
        where
            Self: 'a;

        fn chat(&self, req: ChatRequest) -> Self::ChatFut<'_> {
            self.seen_formats.lock().unwrap().push(req.response_format);

            Box::pin(async move {
                match req.response_format {
                    ResponseFormat::Yaml => Err(LlmError::ResponseFormatMismatch {
                        expected: ResponseFormat::Yaml,
                        message: "yaml parse failed".to_string(),
                    }),
                    ResponseFormat::Json => {
                        if self.fail_json {
                            Err(LlmError::ResponseFormatMismatch {
                                expected: ResponseFormat::Json,
                                message: "json parse failed".to_string(),
                            })
                        } else {
                            Ok(ChatResponse {
                                content: "{\"facts\":[]}".to_string(),
                                tool_calls: Vec::new(),
                                usage: None,
                                model: None,
                                finish_reason: None,
                                metadata: Default::default(),
                            })
                        }
                    }
                    _ => unreachable!(),
                }
            })
        }
    }

    fn request(response_format: ResponseFormat) -> ChatRequest {
        ChatRequest {
            messages: vec![ChatMessage {
                role: ChatRole::User,
                content: "Return structured output".to_string(),
                tool_calls: Vec::new(),
                tool_call_id: None,
            }],
            system: None,
            tools: Vec::new(),
            response_format,
            max_tokens: None,
            temperature: None,
            stop_sequences: Vec::new(),
            model: None,
        }
    }

    #[tokio::test(flavor = "current_thread")]
    async fn retries_with_json_after_format_mismatch() {
        let primary = Arc::new(FormatAwareBackend::new(false));
        let backend = ResilientChatBackend::new(primary.clone(), "primary");

        let response = ChatBackend::chat(&backend, request(ResponseFormat::Yaml))
            .await
            .unwrap();

        assert_eq!(response.content, "{\"facts\":[]}");
        assert_eq!(
            primary.seen_formats(),
            vec![ResponseFormat::Yaml, ResponseFormat::Json]
        );
    }

    #[tokio::test(flavor = "current_thread")]
    async fn preserves_json_format_mismatch_when_no_fallback_exists() {
        let primary = Arc::new(FormatAwareBackend::new(true));
        let backend = ResilientChatBackend::new(primary, "primary");

        let error = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap_err();

        assert!(matches!(
            error,
            LlmError::ResponseFormatMismatch {
                expected: ResponseFormat::Json,
                ..
            }
        ));
    }

    // ========================================================================
    // Model fallback path tests
    // ========================================================================

    struct FailingBackend {
        error: LlmError,
    }

    impl FailingBackend {
        fn rate_limited() -> Self {
            Self {
                error: LlmError::RateLimited {
                    retry_after: std::time::Duration::from_secs(60),
                    message: Some("rate limited".into()),
                },
            }
        }

        fn provider_error() -> Self {
            Self {
                error: LlmError::ProviderError {
                    message: "internal error".into(),
                    code: Some("500".into()),
                },
            }
        }

        fn network_error() -> Self {
            Self {
                error: LlmError::NetworkError {
                    message: "connection refused".into(),
                },
            }
        }
    }

    impl ChatBackend for FailingBackend {
        type ChatFut<'a>
            = BoxFuture<'a, Result<ChatResponse, LlmError>>
        where
            Self: 'a;

        fn chat(&self, _req: ChatRequest) -> Self::ChatFut<'_> {
            let err = match &self.error {
                LlmError::RateLimited {
                    retry_after,
                    message,
                } => LlmError::RateLimited {
                    retry_after: *retry_after,
                    message: message.clone(),
                },
                LlmError::ProviderError { message, code } => LlmError::ProviderError {
                    message: message.clone(),
                    code: code.clone(),
                },
                LlmError::NetworkError { message } => LlmError::NetworkError {
                    message: message.clone(),
                },
                _ => LlmError::ProviderError {
                    message: "test".into(),
                    code: None,
                },
            };
            Box::pin(async move { Err(err) })
        }
    }

    struct SuccessBackend;

    impl ChatBackend for SuccessBackend {
        type ChatFut<'a>
            = BoxFuture<'a, Result<ChatResponse, LlmError>>
        where
            Self: 'a;

        fn chat(&self, _req: ChatRequest) -> Self::ChatFut<'_> {
            Box::pin(async {
                Ok(ChatResponse {
                    content: "fallback response".to_string(),
                    tool_calls: Vec::new(),
                    usage: None,
                    model: None,
                    finish_reason: None,
                    metadata: Default::default(),
                })
            })
        }
    }

    #[tokio::test(flavor = "current_thread")]
    async fn falls_back_on_rate_limit() {
        let primary = Arc::new(FailingBackend::rate_limited());
        let fallback = Arc::new(SuccessBackend);
        let backend =
            ResilientChatBackend::new(primary, "primary").with_fallback(fallback, "fallback");

        let response = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap();
        assert_eq!(response.content, "fallback response");
    }

    #[tokio::test(flavor = "current_thread")]
    async fn falls_back_on_provider_error() {
        let primary = Arc::new(FailingBackend::provider_error());
        let fallback = Arc::new(SuccessBackend);
        let backend =
            ResilientChatBackend::new(primary, "primary").with_fallback(fallback, "fallback");

        let response = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap();
        assert_eq!(response.content, "fallback response");
    }

    #[tokio::test(flavor = "current_thread")]
    async fn falls_back_on_network_error() {
        let primary = Arc::new(FailingBackend::network_error());
        let fallback = Arc::new(SuccessBackend);
        let backend =
            ResilientChatBackend::new(primary, "primary").with_fallback(fallback, "fallback");

        let response = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap();
        assert_eq!(response.content, "fallback response");
    }

    #[tokio::test(flavor = "current_thread")]
    async fn no_fallback_configured_returns_original_error() {
        let primary = Arc::new(FailingBackend::rate_limited());
        let backend = ResilientChatBackend::new(primary, "primary");
        // No .with_fallback()

        let err = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap_err();
        assert!(matches!(err, LlmError::RateLimited { .. }));
    }

    #[tokio::test(flavor = "current_thread")]
    async fn fallback_also_fails_returns_primary_error() {
        let primary = Arc::new(FailingBackend::rate_limited());
        let fallback = Arc::new(FailingBackend::provider_error());
        let backend =
            ResilientChatBackend::new(primary, "primary").with_fallback(fallback, "fallback");

        let err = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap_err();
        // Should return original (primary) error, not fallback error
        assert!(matches!(err, LlmError::RateLimited { .. }));
    }

    #[tokio::test(flavor = "current_thread")]
    async fn auth_denied_is_not_retryable_with_model_change() {
        // AuthDenied should NOT trigger model fallback
        struct AuthDeniedBackend;

        impl ChatBackend for AuthDeniedBackend {
            type ChatFut<'a>
                = BoxFuture<'a, Result<ChatResponse, LlmError>>
            where
                Self: 'a;

            fn chat(&self, _req: ChatRequest) -> Self::ChatFut<'_> {
                Box::pin(async {
                    Err(LlmError::AuthDenied {
                        message: "invalid key".into(),
                    })
                })
            }
        }

        let primary = Arc::new(AuthDeniedBackend);
        let fallback = Arc::new(SuccessBackend);
        let backend =
            ResilientChatBackend::new(primary, "primary").with_fallback(fallback, "fallback");

        let err = ChatBackend::chat(&backend, request(ResponseFormat::Json))
            .await
            .unwrap_err();
        // AuthDenied is not retryable — should NOT fall through to fallback
        assert!(matches!(err, LlmError::AuthDenied { .. }));
    }
}