modelrelay 6.5.0

Rust SDK for the ModelRelay API
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
use std::{
    sync::Arc,
    time::{Duration, Instant},
};

use reqwest::{
    header::{HeaderName, HeaderValue, ACCEPT},
    Method,
};
use schemars::JsonSchema;
use serde::de::DeserializeOwned;
use tokio::time::sleep;

use crate::core::RetryState;
use crate::{
    errors::{Error, Result, RetryMetadata, TransportError, TransportErrorKind, ValidationError},
    http::{
        parse_api_error_parts, request_id_from_headers, validate_ndjson_content_type, HeaderList,
        ResponseOptions, RetryConfig,
    },
    runs::RunsClient,
    sql::SqlClient,
    telemetry::{HttpRequestMetrics, RequestContext, Telemetry, TokenUsageMetrics},
    types::{CustomerToken, CustomerTokenRequest, Model, Response, ResponseRequest},
    workflows::WorkflowsClient,
    ApiKey, SecretKey, API_KEY_HEADER, DEFAULT_BASE_URL, DEFAULT_CLIENT_HEADER,
    DEFAULT_CONNECT_TIMEOUT, DEFAULT_REQUEST_TIMEOUT, REQUEST_ID_HEADER,
};

#[cfg(feature = "streaming")]
use crate::ndjson::StreamHandle;

/// Configuration for the async ModelRelay client.
///
/// Use this to configure authentication, timeouts, retries, and other options.
/// For the blocking (synchronous) client, see `BlockingConfig` (requires the `blocking` feature).
#[derive(Clone, Debug, Default)]
pub struct Config {
    /// Base URL for the ModelRelay API (defaults to `https://api.modelrelay.ai/api/v1`).
    pub base_url: Option<String>,
    /// API key for authentication (`mr_sk_*` secret key).
    pub api_key: Option<ApiKey>,
    /// Bearer token for authentication (alternative to API key).
    pub access_token: Option<String>,
    /// Custom client identifier sent in headers for debugging/analytics.
    pub client_header: Option<String>,
    /// Custom HTTP client instance (uses default if not provided).
    pub http_client: Option<reqwest::Client>,
    /// Override the connect timeout (defaults to 5s).
    pub connect_timeout: Option<Duration>,
    /// Override the request timeout (defaults to 60s).
    pub timeout: Option<Duration>,
    /// Retry/backoff policy (defaults to 3 attempts, exponential backoff + jitter).
    pub retry: Option<RetryConfig>,
    /// Default extra headers applied to all requests.
    pub default_headers: Option<crate::http::HeaderList>,
    /// Optional metrics callbacks (HTTP latency, first-token latency, token usage).
    pub metrics: Option<crate::telemetry::MetricsCallbacks>,
}

/// Async client for the ModelRelay API.
///
/// This is the primary client for making API requests. For synchronous contexts,
/// use `BlockingClient` instead (requires the `blocking` feature).
///
/// # Example
///
/// ```ignore
/// use modelrelay::{Client, Config, ResponseBuilder};
///
/// let client = Client::new(Config {
///     api_key: Some(modelrelay::ApiKey::parse("mr_sk_...")?),
///     ..Default::default()
/// })?;
///
/// let response = ResponseBuilder::new()
///     .model("gpt-4o-mini")
///     .user("Hello!")
///     .send(&client.responses())
///     .await?;
/// ```
#[derive(Clone)]
pub struct Client {
    inner: Arc<ClientInner>,
}

pub(crate) struct ClientInner {
    pub(crate) base_url: reqwest::Url,
    pub(crate) api_key: Option<ApiKey>,
    pub(crate) access_token: Option<String>,
    pub(crate) client_header: Option<String>,
    pub(crate) http: reqwest::Client,
    pub(crate) request_timeout: Duration,
    pub(crate) retry: RetryConfig,
    pub(crate) default_headers: Option<crate::http::HeaderList>,
    pub(crate) telemetry: Telemetry,
}

impl Client {
    /// Creates a new client with the given configuration.
    ///
    /// **Note:** Either `api_key` or `access_token` must be provided. This is validated
    /// at construction time and will return an error if neither is set.
    ///
    /// For clearer intent, consider using [`Client::with_key`] or [`Client::with_token`]
    /// which make the authentication requirement explicit.
    pub fn new(cfg: Config) -> Result<Self> {
        // Validate auth is provided at construction time (not deferred to request time)
        let has_key = cfg.api_key.is_some();
        let has_token = cfg
            .access_token
            .as_ref()
            .map(|v| !v.trim().is_empty())
            .unwrap_or(false);
        if !has_key && !has_token {
            return Err(Error::Validation(crate::errors::ValidationError::new(
                "api key or access token is required",
            )));
        }

        let base_source = cfg
            .base_url
            .clone()
            .unwrap_or_else(|| DEFAULT_BASE_URL.to_string());
        // Treat the base as a directory so relative joins keep the versioned prefix ("/api/v1/").
        let base = format!("{}/", base_source.trim_end_matches('/'));
        let base_url = reqwest::Url::parse(&base)
            .map_err(|err| Error::Validation(format!("invalid base url: {err}").into()))?;

        let connect_timeout = cfg.connect_timeout.unwrap_or(DEFAULT_CONNECT_TIMEOUT);
        let request_timeout = cfg.timeout.unwrap_or(DEFAULT_REQUEST_TIMEOUT);
        let retry = cfg.retry.unwrap_or_default();

        let http = match cfg.http_client {
            Some(client) => client,
            None => reqwest::Client::builder()
                .connect_timeout(connect_timeout)
                .build()
                .map_err(|err| TransportError {
                    kind: TransportErrorKind::Connect,
                    message: "failed to build http client".to_string(),
                    source: Some(err),
                    retries: None,
                })?,
        };

        let client_header = cfg
            .client_header
            .filter(|s| !s.trim().is_empty())
            .or_else(|| Some(DEFAULT_CLIENT_HEADER.to_string()));

        Ok(Self {
            inner: Arc::new(ClientInner {
                base_url,
                api_key: cfg.api_key,
                access_token: cfg.access_token.filter(|s| !s.trim().is_empty()),
                client_header,
                http,
                request_timeout,
                retry,
                default_headers: cfg.default_headers,
                telemetry: Telemetry::new(cfg.metrics),
            }),
        })
    }

    /// Creates a new client authenticated with an API key.
    ///
    /// The key is required and must be non-empty. Use [`ClientBuilder`] for additional
    /// configuration options.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use modelrelay::Client;
    ///
    /// let client = Client::with_key(modelrelay::ApiKey::parse("mr_sk_...")?).build()?;
    /// # Ok::<(), modelrelay::Error>(())
    /// ```
    pub fn with_key(key: impl Into<ApiKey>) -> ClientBuilder {
        ClientBuilder::new().api_key(key)
    }

    /// Creates a new client builder from a raw secret key string.
    ///
    /// This is a convenience wrapper that parses the secret key and returns a builder.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use modelrelay::Client;
    ///
    /// let client = Client::from_secret_key("mr_sk_...")?.build()?;
    /// # Ok::<(), modelrelay::Error>(())
    /// ```
    pub fn from_secret_key(raw: impl AsRef<str>) -> Result<ClientBuilder> {
        let key = SecretKey::parse(raw)?;
        Ok(ClientBuilder::new().api_key(key))
    }

    /// Creates a new client builder from a raw API key string.
    ///
    /// Accepts secret (`mr_sk_*`) keys.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use modelrelay::Client;
    ///
    /// let client = Client::from_api_key("mr_sk_...")?.build()?;
    /// # Ok::<(), modelrelay::Error>(())
    /// ```
    pub fn from_api_key(raw: impl AsRef<str>) -> Result<ClientBuilder> {
        let key = ApiKey::parse(raw)?;
        Ok(ClientBuilder::new().api_key(key))
    }

    /// Creates a new client authenticated with a bearer access token.
    ///
    /// The token is required and must be non-empty. Use [`ClientBuilder`] for additional
    /// configuration options.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use modelrelay::Client;
    ///
    /// let client = Client::with_token("eyJ...").build()?;
    /// # Ok::<(), modelrelay::Error>(())
    /// ```
    pub fn with_token(token: impl Into<String>) -> ClientBuilder {
        ClientBuilder::new().access_token(token)
    }

    /// Returns a builder for more complex client configuration.
    pub fn builder() -> ClientBuilder {
        ClientBuilder::new()
    }

    /// Creates a client using a token provider.
    ///
    /// This calls the provider to get a token immediately, then returns a client
    /// configured with that token. The provider's internal caching ensures efficient
    /// token reuse; call this function again when you need a fresh client with
    /// a potentially refreshed token.
    ///
    /// # Example
    ///
    /// ```ignore
    /// use modelrelay::{Client, CustomerTokenProvider, CustomerTokenProviderConfig, CustomerTokenRequest, SecretKey};
    ///
    /// let provider = CustomerTokenProvider::new(CustomerTokenProviderConfig {
    ///     secret_key: SecretKey::parse("mr_sk_...")?,
    ///     request: CustomerTokenRequest::for_external_id("user_123"),
    ///     base_url: None,
    ///     refresh_skew: None,
    ///     http_client: None,
    /// })?;
    ///
    /// let client = Client::from_token_provider(&provider).await?;
    /// ```
    pub async fn from_token_provider(
        provider: &dyn crate::token_providers::TokenProvider,
    ) -> Result<Self> {
        let token = provider.get_token().await?;
        Client::with_token(token).build()
    }

    /// Returns the Responses client for `POST /responses` (streaming + non-streaming).
    pub fn responses(&self) -> ResponsesClient {
        ResponsesClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns a customer-scoped client that automatically applies the customer id header.
    pub fn for_customer(&self, customer_id: impl AsRef<str>) -> Result<CustomerScopedClient> {
        let normalized = normalize_customer_id(customer_id)?;
        Ok(CustomerScopedClient {
            inner: self.inner.clone(),
            customer_id: normalized,
        })
    }

    /// Returns the auth client for customer token operations.
    pub fn auth(&self) -> AuthClient {
        AuthClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the runs client for workflow runs (`/runs`).
    pub fn runs(&self) -> RunsClient {
        RunsClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the SQL client for `/sql/validate`.
    pub fn sql(&self) -> SqlClient {
        SqlClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the workflows client for compilation/validation (`/workflows`).
    pub fn workflows(&self) -> WorkflowsClient {
        WorkflowsClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the images client for image generation operations.
    pub fn images(&self) -> crate::images::ImagesClient {
        crate::images::ImagesClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the sessions client for multi-turn conversation management.
    pub fn sessions(&self) -> crate::sessions::SessionsClient {
        crate::sessions::SessionsClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the state handles client for persistent /responses tool state.
    pub fn state_handles(&self) -> crate::state_handles::StateHandlesClient {
        crate::state_handles::StateHandlesClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the tiers client for querying project tiers.
    ///
    /// Requires a secret key (`mr_sk_*`) or a bearer token.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let tiers = client.tiers().list().await?;
    /// let tier = client.tiers().get("tier-uuid").await?;
    /// ```
    pub fn tiers(&self) -> crate::tiers::TiersClient {
        crate::tiers::TiersClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the plugins helper client (GitHub plugin loader + workflow runner).
    pub fn plugins(&self) -> crate::plugins::PluginsClient {
        crate::plugins::PluginsClient::new(
            self.clone(),
            crate::plugins::PluginsClientOptions::default(),
        )
    }

    pub(crate) async fn models_with_capability(
        &self,
        capability: &str,
    ) -> Result<crate::generated::ModelsResponse> {
        self.inner.ensure_auth()?;
        let mut path = "/models".to_string();
        let cap = capability.trim();
        if !cap.is_empty() {
            path = format!("{path}?capability={}", urlencoding::encode(cap));
        }
        let builder = self.inner.request(Method::GET, &path)?;
        let builder = self.inner.with_headers(
            builder,
            None,
            &HeaderList::default(),
            Some("application/json"),
        )?;
        let builder = self.inner.with_timeout(builder, None, true);
        let ctx = self.inner.make_context(&Method::GET, &path, None, None);
        self.inner
            .execute_json(builder, Method::GET, None, ctx)
            .await
    }

    /// Returns the billing client for customer self-service operations.
    ///
    /// Requires the `billing` feature and a customer bearer token for authentication.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let me = client.billing().me().await?;
    /// let usage = client.billing().usage().await?;
    /// ```
    #[cfg(feature = "billing")]
    pub fn billing(&self) -> crate::billing::BillingClient {
        crate::billing::BillingClient {
            inner: self.inner.clone(),
        }
    }

    /// Returns the authenticated account's PAYGO balance.
    ///
    /// This method accepts both API key (`X-ModelRelay-Api-Key`) and bearer token
    /// authentication, enabling programmatic balance checks from backend services.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let client = Client::from_secret_key("mr_sk_...")?.build()?;
    /// let balance = client.account_balance().await?;
    /// println!("Balance: {} cents", balance.balance_cents);
    /// println!("Formatted: {}", balance.balance_formatted);
    /// ```
    pub async fn account_balance(&self) -> Result<crate::generated::AccountBalanceResponse> {
        self.inner.ensure_auth()?;
        let path = "/account/balance";
        let builder = self.inner.request(Method::GET, path)?;
        let builder = self
            .inner
            .with_headers(builder, None, &HeaderList::default(), None)?;
        let builder = self.inner.with_timeout(builder, None, true);
        let ctx = self.inner.make_context(&Method::GET, path, None, None);
        self.inner
            .execute_json(builder, Method::GET, None, ctx)
            .await
    }
}

fn normalize_customer_id(raw: impl AsRef<str>) -> Result<String> {
    let trimmed = raw.as_ref().trim();
    if trimmed.is_empty() {
        return Err(Error::Validation(
            ValidationError::new("customer_id is required").with_field("customer_id"),
        ));
    }
    Ok(trimmed.to_string())
}

fn ensure_customer_header_in_builder(
    builder: crate::responses::ResponseBuilder,
    customer_id: &str,
) -> Result<crate::responses::ResponseBuilder> {
    for (key, value) in builder.headers.iter() {
        if key.eq_ignore_ascii_case(crate::responses::CUSTOMER_ID_HEADER) {
            if value != customer_id {
                return Err(Error::Validation(
                    ValidationError::new("customer_id mismatch").with_field("customer_id"),
                ));
            }
            return Ok(builder);
        }
    }
    Ok(builder.customer_id(customer_id))
}

/// Customer-scoped client that automatically applies the customer id header.
#[derive(Clone)]
pub struct CustomerScopedClient {
    inner: Arc<ClientInner>,
    customer_id: String,
}

impl CustomerScopedClient {
    /// Returns the customer id associated with this client.
    pub fn customer_id(&self) -> &str {
        &self.customer_id
    }

    /// Returns a customer-scoped responses client.
    pub fn responses(&self) -> CustomerResponsesClient {
        CustomerResponsesClient {
            inner: ResponsesClient {
                inner: self.inner.clone(),
            },
            customer_id: self.customer_id.clone(),
        }
    }
}

/// Responses client scoped to a specific customer id.
#[derive(Clone)]
pub struct CustomerResponsesClient {
    inner: ResponsesClient,
    customer_id: String,
}

impl CustomerResponsesClient {
    /// Returns the customer id associated with this client.
    pub fn customer_id(&self) -> &str {
        &self.customer_id
    }

    /// Returns a response builder pre-configured with the customer id header.
    pub fn builder(&self) -> crate::responses::ResponseBuilder {
        crate::responses::ResponseBuilder::new().customer_id(self.customer_id.clone())
    }

    /// Send a response builder and return the response.
    pub async fn send(&self, builder: crate::responses::ResponseBuilder) -> Result<Response> {
        let builder = ensure_customer_header_in_builder(builder, &self.customer_id)?;
        builder.send(&self.inner).await
    }

    /// Send a response builder and return assistant text.
    pub async fn send_text(&self, builder: crate::responses::ResponseBuilder) -> Result<String> {
        let builder = ensure_customer_header_in_builder(builder, &self.customer_id)?;
        builder.send_text(&self.inner).await
    }

    /// Convenience helper for the common "system + user -> assistant text" path.
    pub async fn text(&self, system: impl Into<String>, user: impl Into<String>) -> Result<String> {
        self.inner
            .text_for_customer(self.customer_id.clone(), system, user)
            .await
    }

    /// Send a response request and return the response.
    /// Create a structured response with schema inference + validation retries.
    pub async fn create_structured<T, H>(
        &self,
        builder: crate::responses::ResponseBuilder,
        options: crate::structured::StructuredOptions<H>,
    ) -> std::result::Result<
        crate::structured::StructuredResult<T>,
        crate::structured::StructuredError,
    >
    where
        T: JsonSchema + DeserializeOwned,
        H: crate::structured::RetryHandler,
    {
        let builder = ensure_customer_header_in_builder(builder, &self.customer_id)?;
        self.inner.create_structured(builder, options).await
    }

    /// Stream NDJSON responses from a response builder.
    #[cfg(feature = "streaming")]
    pub async fn stream(&self, builder: crate::responses::ResponseBuilder) -> Result<StreamHandle> {
        let builder = ensure_customer_header_in_builder(builder, &self.customer_id)?;
        builder.stream(&self.inner).await
    }

    /// Stream text deltas directly for the common prompt path.
    #[cfg(feature = "streaming")]
    pub async fn stream_text_deltas(
        &self,
        system: impl Into<String>,
        user: impl Into<String>,
    ) -> Result<std::pin::Pin<Box<dyn futures_core::Stream<Item = Result<String>> + Send>>> {
        crate::responses::ResponseBuilder::text_prompt(system, user)
            .customer_id(self.customer_id.clone())
            .stream_deltas(&self.inner)
            .await
    }

    /// Stream structured JSON over NDJSON from a response builder.
    #[cfg(feature = "streaming")]
    pub async fn stream_json<T>(
        &self,
        builder: crate::responses::ResponseBuilder,
    ) -> Result<crate::responses::StructuredJSONStream<T>>
    where
        T: DeserializeOwned,
    {
        let builder = ensure_customer_header_in_builder(builder, &self.customer_id)?;
        builder.stream_json(&self.inner).await
    }
}

fn apply_header_list(
    mut builder: reqwest::RequestBuilder,
    headers: &HeaderList,
) -> Result<reqwest::RequestBuilder> {
    for entry in headers.iter() {
        if !entry.is_valid() {
            return Err(Error::Validation(
                format!(
                    "invalid header: key and value must be non-empty (got key={:?}, value={:?})",
                    entry.key, entry.value
                )
                .into(),
            ));
        }
        let name = HeaderName::from_bytes(entry.key.trim().as_bytes())
            .map_err(|err| Error::Validation(format!("invalid header name: {err}").into()))?;
        let val = HeaderValue::from_str(entry.value.trim())
            .map_err(|err| Error::Validation(format!("invalid header value: {err}").into()))?;
        builder = builder.header(name, val);
    }
    Ok(builder)
}

/// Async client for `POST /responses`.
///
/// Prefer using [`ResponseBuilder`] for ergonomic request construction.
///
/// [`ResponseBuilder`]: crate::ResponseBuilder
#[derive(Clone)]
pub struct ResponsesClient {
    inner: Arc<ClientInner>,
}

impl ResponsesClient {
    pub(crate) async fn create(
        &self,
        req: ResponseRequest,
        options: ResponseOptions,
    ) -> Result<Response> {
        self.inner.ensure_auth()?;
        let mut require_model = !options.headers.iter().any(|h| {
            h.key
                .eq_ignore_ascii_case(crate::responses::CUSTOMER_ID_HEADER)
        });
        if require_model && self.inner.has_jwt_access_token() {
            require_model = false;
        }
        req.validate(require_model)?;
        let mut builder = self.inner.request(Method::POST, "/responses")?.json(&req);
        builder = self.inner.with_headers(
            builder,
            options.request_id.as_deref(),
            &options.headers,
            Some("application/json"),
        )?;

        builder = self.inner.with_timeout(builder, options.timeout, true);
        let retry = options
            .retry
            .clone()
            .unwrap_or_else(|| self.inner.retry.clone());

        let ctx = self.inner.make_context(
            &Method::POST,
            "/responses",
            req.model.clone(),
            options.request_id.clone(),
        );
        let resp = self
            .inner
            .send_with_retry(builder, Method::POST, retry, ctx)
            .await?;
        let request_id = request_id_from_headers(resp.headers()).or(options.request_id);

        let bytes = resp
            .bytes()
            .await
            .map_err(|err| self.inner.to_transport_error(err, None))?;
        let mut payload: Response = serde_json::from_slice(&bytes).map_err(Error::Serialization)?;
        payload.request_id = request_id;
        if self.inner.telemetry.usage_enabled() {
            let ctx = RequestContext::new(Method::POST.as_str(), "/responses")
                .with_model(Some(payload.model.clone()))
                .with_request_id(payload.request_id.clone())
                .with_response_id(Some(payload.id.clone()));
            self.inner.telemetry.record_usage(TokenUsageMetrics {
                usage: payload.usage.clone(),
                context: ctx,
            });
        }
        Ok(payload)
    }

    /// Execute a synchronous batch responses request with default options.
    pub async fn batch_responses(
        &self,
        items: &[crate::responses::BatchRequestItem],
    ) -> Result<crate::types::BatchResponse> {
        self.batch_responses_with_options(
            items,
            ResponseOptions::default(),
            crate::responses::BatchOptions::default(),
        )
        .await
    }

    /// Execute a synchronous batch responses request with custom transport and batch options.
    pub async fn batch_responses_with_options(
        &self,
        items: &[crate::responses::BatchRequestItem],
        options: ResponseOptions,
        batch: crate::responses::BatchOptions,
    ) -> Result<crate::types::BatchResponse> {
        self.inner.ensure_auth()?;
        if items.is_empty() {
            return Err(Error::Validation(
                ValidationError::new("requests is required").with_field("requests"),
            ));
        }

        let mut require_model = !options.headers.iter().any(|h| {
            h.key
                .eq_ignore_ascii_case(crate::responses::CUSTOMER_ID_HEADER)
        });
        if require_model && self.inner.has_jwt_access_token() {
            require_model = false;
        }

        #[derive(serde::Serialize)]
        struct BatchItemPayload {
            id: String,
            #[serde(flatten)]
            request: ResponseRequest,
        }

        #[derive(serde::Serialize)]
        struct BatchOptionsPayload {
            #[serde(skip_serializing_if = "Option::is_none")]
            max_concurrent: Option<u32>,
            #[serde(skip_serializing_if = "Option::is_none")]
            fail_fast: Option<bool>,
            #[serde(skip_serializing_if = "Option::is_none")]
            timeout_ms: Option<u64>,
        }

        #[derive(serde::Serialize)]
        struct BatchRequestPayload {
            requests: Vec<BatchItemPayload>,
            #[serde(skip_serializing_if = "Option::is_none")]
            options: Option<BatchOptionsPayload>,
        }

        let mut seen = std::collections::HashSet::new();
        let mut requests = Vec::with_capacity(items.len());
        for item in items {
            let id = item.id.trim();
            if id.is_empty() {
                return Err(Error::Validation(
                    ValidationError::new("request id is required").with_field("requests.id"),
                ));
            }
            if !seen.insert(id.to_string()) {
                return Err(Error::Validation(
                    ValidationError::new("request ids must be unique").with_field("requests.id"),
                ));
            }
            let req = item.builder.payload.clone().into_request();
            req.validate(require_model)?;
            requests.push(BatchItemPayload {
                id: id.to_string(),
                request: req,
            });
        }

        let options_payload = if batch.max_concurrent.is_some()
            || batch.fail_fast.is_some()
            || batch.timeout_ms.is_some()
        {
            Some(BatchOptionsPayload {
                max_concurrent: batch.max_concurrent,
                fail_fast: batch.fail_fast,
                timeout_ms: batch.timeout_ms,
            })
        } else {
            None
        };

        let payload = BatchRequestPayload {
            requests,
            options: options_payload,
        };

        let mut builder = self
            .inner
            .request(Method::POST, "/responses/batch")?
            .json(&payload);
        builder = self.inner.with_headers(
            builder,
            options.request_id.as_deref(),
            &options.headers,
            Some("application/json"),
        )?;

        builder = self.inner.with_timeout(builder, options.timeout, true);
        let retry = options
            .retry
            .clone()
            .unwrap_or_else(|| self.inner.retry.clone());

        let ctx = self.inner.make_context(
            &Method::POST,
            "/responses/batch",
            None,
            options.request_id.clone(),
        );
        let resp = self
            .inner
            .send_with_retry(builder, Method::POST, retry, ctx)
            .await?;

        let bytes = resp
            .bytes()
            .await
            .map_err(|err| self.inner.to_transport_error(err, None))?;
        let payload: crate::types::BatchResponse =
            serde_json::from_slice(&bytes).map_err(Error::Serialization)?;

        if self.inner.telemetry.usage_enabled() {
            for item in &payload.results {
                if let Some(response) = &item.response {
                    let ctx = RequestContext::new(Method::POST.as_str(), "/responses/batch")
                        .with_model(Some(response.model.clone()))
                        .with_request_id(options.request_id.clone())
                        .with_response_id(Some(response.id.clone()));
                    self.inner.telemetry.record_usage(TokenUsageMetrics {
                        usage: response.usage.clone(),
                        context: ctx,
                    });
                }
            }
        }

        Ok(payload)
    }

    /// Create a structured response with schema inference + validation retries.
    ///
    /// This executes `POST /responses` and (optionally) retries by appending
    /// corrective messages when the model output cannot be decoded into `T`.
    pub async fn create_structured<T, H>(
        &self,
        builder: crate::responses::ResponseBuilder,
        options: crate::structured::StructuredOptions<H>,
    ) -> std::result::Result<
        crate::structured::StructuredResult<T>,
        crate::structured::StructuredError,
    >
    where
        T: JsonSchema + DeserializeOwned,
        H: crate::structured::RetryHandler,
    {
        let output_format =
            crate::structured::output_format_from_type::<T>(options.schema_name.as_deref())?;
        let mut inner = builder.output_format(output_format);
        let mut executor = crate::structured::RetryExecutor::new(&options);

        loop {
            let response: Response = inner
                .clone()
                .send(self)
                .await
                .map_err(crate::structured::StructuredError::Sdk)?;
            match executor.process_response::<T>(&response, &inner.payload.input)? {
                crate::structured::RetryDecision::Success(result) => return Ok(result),
                crate::structured::RetryDecision::Exhausted(err) => {
                    return Err(crate::structured::StructuredError::Exhausted(err));
                }
                crate::structured::RetryDecision::Retry(retry_items) => {
                    for item in retry_items {
                        inner = inner.item(item);
                    }
                }
            }
        }
    }

    #[cfg(feature = "streaming")]
    pub(crate) async fn stream(
        &self,
        req: ResponseRequest,
        options: ResponseOptions,
    ) -> Result<StreamHandle> {
        self.inner.ensure_auth()?;
        let mut require_model = !options.headers.iter().any(|h| {
            h.key
                .eq_ignore_ascii_case(crate::responses::CUSTOMER_ID_HEADER)
        });
        if require_model && self.inner.has_jwt_access_token() {
            require_model = false;
        }
        req.validate(require_model)?;
        let mut builder = self.inner.request(Method::POST, "/responses")?.json(&req);
        builder = self.inner.with_headers(
            builder,
            options.request_id.as_deref(),
            &options.headers,
            Some(crate::responses::RESPONSES_STREAM_ACCEPT),
        )?;
        let retry = options
            .retry
            .clone()
            .unwrap_or_else(|| self.inner.retry.clone());

        let mut ctx = self.inner.make_context(
            &Method::POST,
            "/responses",
            req.model.clone(),
            options.request_id.clone(),
        );
        let stream_start = Instant::now();
        let resp = self
            .inner
            .send_with_retry(builder, Method::POST, retry, ctx.clone())
            .await?;

        validate_ndjson_content_type(resp.headers(), resp.status().as_u16())?;

        let request_id = request_id_from_headers(resp.headers()).or(options.request_id);
        ctx = ctx.with_request_id(request_id.clone());
        let stream_telemetry = self.inner.telemetry.stream_state(ctx, Some(stream_start));

        Ok(StreamHandle::new(
            resp,
            request_id,
            stream_telemetry,
            options.stream_timeouts,
            stream_start,
        ))
    }

    /// Convenience helper for the common "system + user -> assistant text" path.
    ///
    /// This is a thin wrapper around `ResponseBuilder` and `Response::text()`.
    /// Returns an `EmptyResponse` transport error if the response contains no
    /// assistant text output.
    pub async fn text(
        &self,
        model: impl Into<crate::types::Model>,
        system: impl Into<String>,
        user: impl Into<String>,
    ) -> Result<String> {
        crate::responses::ResponseBuilder::text_prompt(system, user)
            .model(model)
            .send_text(self)
            .await
    }

    /// Convenience helper for customer-attributed requests where the backend selects the model.
    ///
    /// This sets the customer id header and omits `model` from the request body.
    pub async fn text_for_customer(
        &self,
        customer_id: impl Into<String>,
        system: impl Into<String>,
        user: impl Into<String>,
    ) -> Result<String> {
        crate::responses::ResponseBuilder::text_prompt(system, user)
            .customer_id(customer_id)
            .send_text(self)
            .await
    }

    /// Convenience helper to stream text deltas directly.
    #[cfg(feature = "streaming")]
    pub async fn stream_text_deltas(
        &self,
        model: impl Into<crate::types::Model>,
        system: impl Into<String>,
        user: impl Into<String>,
    ) -> Result<std::pin::Pin<Box<dyn futures_core::Stream<Item = Result<String>> + Send>>> {
        crate::responses::ResponseBuilder::text_prompt(system, user)
            .model(model)
            .stream_deltas(self)
            .await
    }
}

/// Async client for customer token operations.
#[derive(Clone)]
pub struct AuthClient {
    inner: Arc<ClientInner>,
}

impl AuthClient {
    /// Mint a customer-scoped bearer token (requires secret key auth).
    pub async fn customer_token(&self, req: CustomerTokenRequest) -> Result<CustomerToken> {
        let has_customer_id = req.customer_id.is_some();
        let has_external = req
            .customer_external_id
            .as_ref()
            .map(|v| !v.trim().is_empty())
            .unwrap_or(false);
        if has_customer_id == has_external {
            return Err(Error::Validation(ValidationError::new(
                "provide exactly one of customer_id or customer_external_id",
            )));
        }

        let mut builder = self
            .inner
            .request(Method::POST, "/auth/customer-token")?
            .json(&req);
        builder = self.inner.with_headers(
            builder,
            None,
            &HeaderList::default(),
            Some("application/json"),
        )?;

        builder = self.inner.with_timeout(builder, None, true);
        let ctx = self
            .inner
            .make_context(&Method::POST, "/auth/customer-token", None, None);
        self.inner
            .execute_json(builder, Method::POST, None, ctx)
            .await
    }

    /// Get or create a customer and mint a bearer token.
    ///
    /// This is a convenience method that:
    /// 1. Upserts the customer (creates if not exists)
    /// 2. Mints a customer-scoped bearer token
    ///
    /// Use this when you want to ensure the customer exists before minting a token,
    /// without needing to handle 404 errors from `customer_token()`.
    ///
    /// Requires a secret key.
    pub async fn get_or_create_customer_token(
        &self,
        req: crate::types::GetOrCreateCustomerTokenRequest,
    ) -> Result<CustomerToken> {
        req.validate()?;

        // Step 1: Upsert the customer (PUT /customers)
        #[derive(serde::Serialize)]
        struct UpsertPayload<'a> {
            external_id: &'a str,
            email: &'a str,
            #[serde(skip_serializing_if = "Option::is_none")]
            metadata: Option<&'a serde_json::Value>,
        }

        let upsert_payload = UpsertPayload {
            external_id: &req.external_id,
            email: &req.email,
            metadata: req.metadata.as_ref(),
        };

        let mut builder = self
            .inner
            .request(Method::PUT, "/customers")?
            .json(&upsert_payload);
        builder = self.inner.with_headers(
            builder,
            None,
            &HeaderList::default(),
            Some("application/json"),
        )?;
        builder = self.inner.with_timeout(builder, None, true);
        let ctx = self
            .inner
            .make_context(&Method::PUT, "/customers", None, None);

        // Execute upsert - we don't need the response body (may be empty or 204)
        let _ = self
            .inner
            .send_with_retry(builder, Method::PUT, self.inner.retry.clone(), ctx)
            .await?;

        // Step 2: Mint the customer token
        let mut token_req =
            CustomerTokenRequest::for_external_id(&req.external_id).with_tier_code(&req.tier_code);
        if let Some(ttl) = req.ttl_seconds {
            token_req = token_req.with_ttl_seconds(ttl);
        }
        self.customer_token(token_req).await
    }
}

impl ClientInner {
    pub(crate) fn request(&self, method: Method, path: &str) -> Result<reqwest::RequestBuilder> {
        let url = if path.starts_with("http://") || path.starts_with("https://") {
            reqwest::Url::parse(path).map_err(|err| Error::Validation(err.to_string().into()))?
        } else {
            let rel = path.trim_start_matches('/');
            self.base_url
                .join(rel)
                .map_err(|err| Error::Validation(format!("invalid path: {err}").into()))?
        };
        Ok(self.http.request(method, url))
    }

    pub(crate) fn with_headers(
        &self,
        mut builder: reqwest::RequestBuilder,
        request_id: Option<&str>,
        headers: &HeaderList,
        accept: Option<&str>,
    ) -> Result<reqwest::RequestBuilder> {
        if let Some(accept) = accept {
            builder = builder.header(ACCEPT, accept);
        }
        if let Some(req_id) = request_id {
            if !req_id.trim().is_empty() {
                builder = builder.header(REQUEST_ID_HEADER, req_id);
            }
        }
        if let Some(client_header) = self.client_header.as_deref() {
            builder = builder.header("X-ModelRelay-Client", client_header);
        }
        builder = self.apply_auth(builder);

        if let Some(defaults) = &self.default_headers {
            builder = apply_header_list(builder, defaults)?;
        }
        builder = apply_header_list(builder, headers)?;

        Ok(builder)
    }

    pub(crate) fn with_timeout(
        &self,
        builder: reqwest::RequestBuilder,
        timeout: Option<Duration>,
        use_default: bool,
    ) -> reqwest::RequestBuilder {
        if let Some(duration) = timeout {
            builder.timeout(duration)
        } else if use_default {
            builder.timeout(self.request_timeout)
        } else {
            builder
        }
    }

    pub(crate) fn ensure_auth(&self) -> Result<()> {
        if self.api_key.is_some()
            || self
                .access_token
                .as_ref()
                .map(|v| !v.trim().is_empty())
                .unwrap_or(false)
        {
            return Ok(());
        }
        Err(Error::Validation(ValidationError::new(
            "api key or access token is required",
        )))
    }

    pub(crate) fn has_jwt_access_token(&self) -> bool {
        self.access_token
            .as_deref()
            .map(crate::core::is_jwt_token)
            .unwrap_or(false)
    }

    fn apply_auth(&self, mut builder: reqwest::RequestBuilder) -> reqwest::RequestBuilder {
        if let Some(token) = &self.access_token {
            let bearer = token
                .trim()
                .strip_prefix("Bearer ")
                .or_else(|| token.trim().strip_prefix("bearer "))
                .unwrap_or(token.trim());
            builder = builder.bearer_auth(bearer.to_string());
        }
        if let Some(key) = &self.api_key {
            builder = builder.header(API_KEY_HEADER, key.as_str());
        }
        builder
    }

    pub(crate) fn make_context(
        &self,
        method: &Method,
        path: &str,
        model: Option<Model>,
        request_id: Option<String>,
    ) -> RequestContext {
        RequestContext::new(method.as_str(), path)
            .with_model(model)
            .with_request_id(request_id)
    }
    pub(crate) async fn execute_json<T: DeserializeOwned>(
        &self,
        builder: reqwest::RequestBuilder,
        method: Method,
        retry: Option<RetryConfig>,
        ctx: RequestContext,
    ) -> Result<T> {
        let retry_cfg = retry.unwrap_or_else(|| self.retry.clone());
        let resp = self
            .send_with_retry(builder, method, retry_cfg, ctx)
            .await?;
        let bytes = resp
            .bytes()
            .await
            .map_err(|err| self.to_transport_error(err, None))?;
        let parsed = serde_json::from_slice::<T>(&bytes).map_err(Error::Serialization)?;
        Ok(parsed)
    }

    pub(crate) async fn send_with_retry(
        &self,
        builder: reqwest::RequestBuilder,
        method: Method,
        retry: RetryConfig,
        ctx: RequestContext,
    ) -> Result<reqwest::Response> {
        let max_attempts = retry.max_attempts.max(1);
        let mut state = RetryState::new();
        let start = Instant::now();

        for attempt in 1..=max_attempts {
            let attempt_builder = builder.try_clone().ok_or_else(|| {
                Error::Validation("request body is not cloneable for retry".into())
            })?;
            #[cfg(feature = "tracing")]
            let span = tracing::debug_span!(
                "modelrelay.http",
                method = %ctx.method,
                path = %ctx.path,
                attempt,
                max_attempts
            );
            #[cfg(feature = "tracing")]
            let _guard = span.enter();
            let result = attempt_builder.send().await;

            match result {
                Ok(resp) => {
                    let status = resp.status();
                    if status.is_success() {
                        let mut http_ctx = ctx.clone();
                        if http_ctx.request_id.is_none() {
                            http_ctx.request_id =
                                request_id_from_headers(resp.headers()).or(http_ctx.request_id);
                        }
                        if self.telemetry.http_enabled() {
                            self.telemetry.record_http(HttpRequestMetrics {
                                latency: start.elapsed(),
                                status: Some(status.as_u16()),
                                error: None,
                                retries: state.metadata(),
                                context: http_ctx,
                            });
                        }
                        #[cfg(feature = "tracing")]
                        tracing::debug!(
                            status = %status,
                            elapsed_ms = start.elapsed().as_millis() as u64,
                            "request completed"
                        );
                        return Ok(resp);
                    }
                    state.record_attempt(attempt);
                    state.record_status(status);

                    let should_retry = retry.should_retry_status(&method, status);
                    if should_retry && attempt < max_attempts {
                        sleep(retry.backoff_delay(attempt)).await;
                        continue;
                    }

                    let retries = state.metadata();
                    let headers = resp.headers().clone();
                    let mut http_ctx = ctx.clone();
                    if http_ctx.request_id.is_none() {
                        http_ctx.request_id =
                            request_id_from_headers(&headers).or(http_ctx.request_id);
                    }
                    if self.telemetry.http_enabled() {
                        self.telemetry.record_http(HttpRequestMetrics {
                            latency: start.elapsed(),
                            status: Some(status.as_u16()),
                            error: Some(format!("http {}", status.as_u16())),
                            retries: retries.clone(),
                            context: http_ctx,
                        });
                    }
                    #[cfg(feature = "tracing")]
                    tracing::warn!(
                        status = %status,
                        attempt,
                        "request failed; returning error"
                    );
                    let body = match resp.text().await {
                        Ok(text) => text,
                        Err(e) => format!("[failed to read response body: {}]", e),
                    };
                    return Err(parse_api_error_parts(status, &headers, body, retries));
                }
                Err(err) => {
                    state.record_attempt(attempt);
                    state.record_error(&err);
                    let should_retry = retry.should_retry_error(&method, &err);
                    if should_retry && attempt < max_attempts {
                        sleep(retry.backoff_delay(attempt)).await;
                        continue;
                    }

                    let retries = state.metadata();
                    if self.telemetry.http_enabled() {
                        self.telemetry.record_http(HttpRequestMetrics {
                            latency: start.elapsed(),
                            status: None,
                            error: Some(err.to_string()),
                            retries: retries.clone(),
                            context: ctx.clone(),
                        });
                    }
                    #[cfg(feature = "tracing")]
                    tracing::warn!(attempt, error = %err, "transport error");
                    return Err(self.to_transport_error(err, retries));
                }
            }
        }

        Err(Error::Transport(TransportError {
            kind: TransportErrorKind::Other,
            message: "request failed".to_string(),
            source: None,
            retries: state.metadata(),
        }))
    }

    fn to_transport_error(&self, err: reqwest::Error, retries: Option<RetryMetadata>) -> Error {
        TransportError {
            kind: crate::ndjson::classify_reqwest_error(&err),
            message: err.to_string(),
            source: Some(err),
            retries,
        }
        .into()
    }
}

// RetryState is now in core.rs

/// Builder for constructing a [`Client`] with explicit configuration.
///
/// Use [`Client::with_key`], [`Client::with_token`], or [`Client::builder`] to create a builder.
///
/// # Examples
///
/// ```no_run
/// use modelrelay::Client;
///
/// // With API key
/// let client = Client::with_key(modelrelay::ApiKey::parse("mr_sk_...")?)
///     .base_url("https://custom.api.com")
///     .build()?;
///
/// // With access token
/// let client = Client::with_token("eyJ...")
///     .timeout(std::time::Duration::from_secs(30))
///     .build()?;
/// # Ok::<(), modelrelay::Error>(())
/// ```
#[derive(Clone, Debug, Default)]
pub struct ClientBuilder {
    config: Config,
}

impl ClientBuilder {
    /// Creates a new builder with default configuration.
    pub fn new() -> Self {
        Self {
            config: Config::default(),
        }
    }

    /// Sets the API key for authentication.
    ///
    /// API keys are prefixed with `mr_sk_` (secret).
    pub fn api_key(mut self, key: impl Into<ApiKey>) -> Self {
        self.config.api_key = Some(key.into());
        self
    }

    /// Sets the bearer access token for authentication.
    pub fn access_token(mut self, token: impl Into<String>) -> Self {
        self.config.access_token = Some(token.into());
        self
    }

    /// Sets the API base URL (defaults to production).
    pub fn base_url(mut self, url: impl Into<String>) -> Self {
        self.config.base_url = Some(url.into());
        self
    }

    /// Sets a custom HTTP client.
    pub fn http_client(mut self, client: reqwest::Client) -> Self {
        self.config.http_client = Some(client);
        self
    }

    /// Sets the X-ModelRelay-Client header for SDK identification.
    pub fn client_header(mut self, header: impl Into<String>) -> Self {
        self.config.client_header = Some(header.into());
        self
    }

    /// Sets the connection timeout.
    pub fn connect_timeout(mut self, timeout: Duration) -> Self {
        self.config.connect_timeout = Some(timeout);
        self
    }

    /// Sets the request timeout.
    pub fn timeout(mut self, timeout: Duration) -> Self {
        self.config.timeout = Some(timeout);
        self
    }

    /// Sets the retry configuration.
    pub fn retry(mut self, retry: RetryConfig) -> Self {
        self.config.retry = Some(retry);
        self
    }

    /// Sets default headers applied to every request.
    pub fn default_headers(mut self, headers: crate::http::HeaderList) -> Self {
        self.config.default_headers = Some(headers);
        self
    }

    /// Sets metrics callbacks for observability.
    pub fn metrics(mut self, callbacks: crate::telemetry::MetricsCallbacks) -> Self {
        self.config.metrics = Some(callbacks);
        self
    }

    /// Builds the client, validating that authentication is configured.
    ///
    /// Returns an error if neither API key nor access token is set.
    pub fn build(self) -> Result<Client> {
        Client::new(self.config)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn client_new_requires_auth() {
        // Default config has no auth - should fail
        let result = Client::new(Config::default());
        match result {
            Err(Error::Validation(v)) => {
                assert!(v.to_string().contains("api key or access token"));
            }
            Err(e) => panic!("expected ValidationError, got {:?}", e),
            Ok(_) => panic!("expected error, got Ok"),
        }
    }

    #[test]
    fn client_new_accepts_api_key() {
        let result = Client::new(Config {
            api_key: Some(ApiKey::parse("mr_sk_test").unwrap()),
            ..Config::default()
        });
        assert!(result.is_ok());
    }

    #[test]
    fn client_new_accepts_access_token() {
        let result = Client::new(Config {
            access_token: Some("eyJ...".to_string()),
            ..Config::default()
        });
        assert!(result.is_ok());
    }

    #[test]
    fn api_key_parse_rejects_invalid() {
        assert!(ApiKey::parse("").is_err());
        assert!(ApiKey::parse("mr_zzz_123").is_err());
        assert!(ApiKey::parse("mr_sk_").is_err());
        assert!(ApiKey::parse("mr_pk_").is_err());
    }

    #[test]
    fn client_with_key_creates_builder() {
        let client = Client::with_key(ApiKey::parse("mr_sk_test").unwrap()).build();
        assert!(client.is_ok());
    }

    #[test]
    fn client_with_token_creates_builder() {
        let client = Client::with_token("eyJ...").build();
        assert!(client.is_ok());
    }

    #[test]
    fn client_from_secret_key_creates_builder() {
        let client = Client::from_secret_key("mr_sk_test").unwrap().build();
        assert!(client.is_ok());
    }

    #[test]
    fn client_from_api_key_creates_builder() {
        let client = Client::from_api_key("mr_sk_test").unwrap().build();
        assert!(client.is_ok());
    }

    #[test]
    fn client_for_customer_rejects_empty() {
        let client = Client::with_key(ApiKey::parse("mr_sk_test").unwrap())
            .build()
            .unwrap();
        let result = client.for_customer("   ");
        match result {
            Err(Error::Validation(v)) => {
                assert!(v.to_string().contains("customer_id"));
            }
            Err(e) => panic!("expected ValidationError, got {:?}", e),
            Ok(_) => panic!("expected error, got Ok"),
        }
    }
}