objectiveai-api 2.2.0

ObjectiveAI API Server
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
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
//! ObjectiveAI API server.
//!
//! REST API server for chat completions, vector completions, Functions,
//! Profiles, Swarms, and authentication.

use axum::{
    Json,
    extract::ws::WebSocketUpgrade,
    response::{IntoResponse, Sse, sse::Event},
};
use envconfig::Envconfig;
use objectiveai_sdk::error::ResponseError;
use crate::{
    agent, auth, ctx,
    error::ResponseErrorExt,
    functions::{self, profiles::computations::Client},
    github, objectiveai_http,
    retrieval, streaming_ws, streaming_ws_handlers,
    util::StreamOnce,
    vector,
};
use std::{convert::Infallible, sync::Arc};
use tokio_stream::StreamExt;

#[derive(Envconfig)]
struct EnvConfigBuilder {
    // -- HttpClient fields (identical order across all 3 structs) --
    #[envconfig(from = "OBJECTIVEAI_ADDRESS")]
    objectiveai_address: Option<String>,
    #[envconfig(from = "OBJECTIVEAI_AUTHORIZATION")]
    objectiveai_authorization: Option<String>,
    #[envconfig(from = "OPENROUTER_ADDRESS")]
    openrouter_address: Option<String>,
    #[envconfig(from = "OPENROUTER_AUTHORIZATION")]
    openrouter_authorization: Option<String>,
    #[envconfig(from = "GITHUB_AUTHORIZATION")]
    github_authorization: Option<String>,
    #[envconfig(from = "MCP_AUTHORIZATION")]
    mcp_authorization: Option<String>,
    #[envconfig(from = "USER_AGENT")]
    user_agent: Option<String>,
    #[envconfig(from = "HTTP_REFERER")]
    http_referer: Option<String>,
    #[envconfig(from = "X_TITLE")]
    x_title: Option<String>,
    // -- Other fields --
    #[envconfig(from = "CLAUDE_AGENT_SDK_ENABLED")]
    claude_agent_sdk_enabled: Option<String>,
    #[envconfig(from = "CLAUDE_AGENT_SDK_RATE_LIMIT_MAX_RETRIES")]
    claude_agent_sdk_rate_limit_max_retries: Option<u64>,
    #[envconfig(from = "CLAUDE_AGENT_SDK_RATE_LIMIT_MAX_WAIT_SECS")]
    claude_agent_sdk_rate_limit_max_wait_secs: Option<u64>,
    #[envconfig(from = "CLAUDE_AGENT_SDK_QUERY_LIMIT")]
    claude_agent_sdk_query_limit: Option<u64>,
    #[envconfig(from = "CODEX_SDK_ENABLED")]
    codex_sdk_enabled: Option<String>,
    #[envconfig(from = "CODEX_SDK_RATE_LIMIT_MAX_RETRIES")]
    codex_sdk_rate_limit_max_retries: Option<u64>,
    #[envconfig(from = "CODEX_SDK_RATE_LIMIT_MAX_WAIT_SECS")]
    codex_sdk_rate_limit_max_wait_secs: Option<u64>,
    #[envconfig(from = "CODEX_SDK_QUERY_LIMIT")]
    codex_sdk_query_limit: Option<u64>,
    #[envconfig(from = "AGENT_COMPLETIONS_BACKOFF_CURRENT_INTERVAL")]
    agent_completions_backoff_current_interval: Option<u64>,
    #[envconfig(from = "AGENT_COMPLETIONS_BACKOFF_INITIAL_INTERVAL")]
    agent_completions_backoff_initial_interval: Option<u64>,
    #[envconfig(from = "AGENT_COMPLETIONS_BACKOFF_RANDOMIZATION_FACTOR")]
    agent_completions_backoff_randomization_factor: Option<f64>,
    #[envconfig(from = "AGENT_COMPLETIONS_BACKOFF_MULTIPLIER")]
    agent_completions_backoff_multiplier: Option<f64>,
    #[envconfig(from = "AGENT_COMPLETIONS_BACKOFF_MAX_INTERVAL")]
    agent_completions_backoff_max_interval: Option<u64>,
    #[envconfig(from = "AGENT_COMPLETIONS_BACKOFF_MAX_ELAPSED_TIME")]
    agent_completions_backoff_max_elapsed_time: Option<u64>,
    #[envconfig(from = "MCP_BACKOFF_CURRENT_INTERVAL")]
    mcp_backoff_current_interval: Option<u64>,
    #[envconfig(from = "MCP_BACKOFF_INITIAL_INTERVAL")]
    mcp_backoff_initial_interval: Option<u64>,
    #[envconfig(from = "MCP_BACKOFF_RANDOMIZATION_FACTOR")]
    mcp_backoff_randomization_factor: Option<f64>,
    #[envconfig(from = "MCP_BACKOFF_MULTIPLIER")]
    mcp_backoff_multiplier: Option<f64>,
    #[envconfig(from = "MCP_BACKOFF_MAX_INTERVAL")]
    mcp_backoff_max_interval: Option<u64>,
    #[envconfig(from = "MCP_BACKOFF_MAX_ELAPSED_TIME")]
    mcp_backoff_max_elapsed_time: Option<u64>,
    #[envconfig(from = "GITHUB_BACKOFF_CURRENT_INTERVAL")]
    github_backoff_current_interval: Option<u64>,
    #[envconfig(from = "GITHUB_BACKOFF_INITIAL_INTERVAL")]
    github_backoff_initial_interval: Option<u64>,
    #[envconfig(from = "GITHUB_BACKOFF_RANDOMIZATION_FACTOR")]
    github_backoff_randomization_factor: Option<f64>,
    #[envconfig(from = "GITHUB_BACKOFF_MULTIPLIER")]
    github_backoff_multiplier: Option<f64>,
    #[envconfig(from = "GITHUB_BACKOFF_MAX_INTERVAL")]
    github_backoff_max_interval: Option<u64>,
    #[envconfig(from = "GITHUB_BACKOFF_MAX_ELAPSED_TIME")]
    github_backoff_max_elapsed_time: Option<u64>,
    #[envconfig(from = "AGENT_COMPLETIONS_FIRST_CHUNK_TIMEOUT")]
    agent_completions_first_chunk_timeout: Option<u64>,
    #[envconfig(from = "AGENT_COMPLETIONS_OTHER_CHUNK_TIMEOUT")]
    agent_completions_other_chunk_timeout: Option<u64>,
    #[envconfig(from = "MCP_CONNECT_TIMEOUT")]
    mcp_connect_timeout: Option<u64>,
    #[envconfig(from = "MCP_CALL_TIMEOUT")]
    mcp_call_timeout: Option<u64>,
    #[envconfig(from = "REVERSE_CHANNEL_TIMEOUT")]
    reverse_channel_timeout: Option<u64>,
    #[envconfig(from = "MCP_ENCRYPTION_KEY")]
    mcp_encryption_key: Option<String>,
    #[envconfig(from = "OBJECTIVEAI_DIR")]
    objectiveai_dir: Option<String>,
    #[envconfig(from = "OBJECTIVEAI_STATE")]
    objectiveai_state: Option<String>,
    /// `OBJECTIVEAI_LOGS` — master switch (default on) for writing
    /// request/response traces. When on, the in-process mcp-proxy logs
    /// to `<OBJECTIVEAI_DIR>/bin/api/logs/mcp-proxy.jsonl`.
    #[envconfig(from = "OBJECTIVEAI_LOGS")]
    logs: Option<String>,
    #[envconfig(from = "PERSISTENT_CACHE_TRANSIENT_TTL_MS")]
    persistent_cache_transient_ttl_ms: Option<u64>,
    #[envconfig(from = "MOCK_DELAY_MS")]
    mock_delay_ms: Option<u64>,
    #[envconfig(from = "MOCK_MAX_TOOL_CALLS")]
    mock_max_tool_calls: Option<u32>,
    #[envconfig(from = "ADDRESS")]
    address: Option<String>,
    #[envconfig(from = "PORT")]
    port: Option<u16>,
}

impl EnvConfigBuilder {
    pub fn build(self) -> ConfigBuilder {
        fn parse_bool(s: &str) -> bool {
            let v = s.trim();
            !v.is_empty() && v != "0" && !v.eq_ignore_ascii_case("false")
        }
        ConfigBuilder {
            // -- HttpClient fields --
            objectiveai_address: self.objectiveai_address,
            objectiveai_authorization: self.objectiveai_authorization,
            openrouter_address: self.openrouter_address,
            openrouter_authorization: self.openrouter_authorization,
            github_authorization: self.github_authorization,
            mcp_authorization: self.mcp_authorization,
            user_agent: self.user_agent,
            http_referer: self.http_referer,
            x_title: self.x_title,
            // -- Other fields --
            claude_agent_sdk_enabled: self.claude_agent_sdk_enabled.map(|s| parse_bool(&s)),
            claude_agent_sdk_rate_limit_max_retries: self.claude_agent_sdk_rate_limit_max_retries,
            claude_agent_sdk_rate_limit_max_wait_secs: self.claude_agent_sdk_rate_limit_max_wait_secs,
            claude_agent_sdk_query_limit: self.claude_agent_sdk_query_limit,
            codex_sdk_enabled: self.codex_sdk_enabled.map(|s| parse_bool(&s)),
            codex_sdk_rate_limit_max_retries: self.codex_sdk_rate_limit_max_retries,
            codex_sdk_rate_limit_max_wait_secs: self.codex_sdk_rate_limit_max_wait_secs,
            codex_sdk_query_limit: self.codex_sdk_query_limit,
            agent_completions_backoff_current_interval: self.agent_completions_backoff_current_interval,
            agent_completions_backoff_initial_interval: self.agent_completions_backoff_initial_interval,
            agent_completions_backoff_randomization_factor: self.agent_completions_backoff_randomization_factor,
            agent_completions_backoff_multiplier: self.agent_completions_backoff_multiplier,
            agent_completions_backoff_max_interval: self.agent_completions_backoff_max_interval,
            agent_completions_backoff_max_elapsed_time: self.agent_completions_backoff_max_elapsed_time,
            mcp_backoff_current_interval: self.mcp_backoff_current_interval,
            mcp_backoff_initial_interval: self.mcp_backoff_initial_interval,
            mcp_backoff_randomization_factor: self.mcp_backoff_randomization_factor,
            mcp_backoff_multiplier: self.mcp_backoff_multiplier,
            mcp_backoff_max_interval: self.mcp_backoff_max_interval,
            mcp_backoff_max_elapsed_time: self.mcp_backoff_max_elapsed_time,
            github_backoff_current_interval: self.github_backoff_current_interval,
            github_backoff_initial_interval: self.github_backoff_initial_interval,
            github_backoff_randomization_factor: self.github_backoff_randomization_factor,
            github_backoff_multiplier: self.github_backoff_multiplier,
            github_backoff_max_interval: self.github_backoff_max_interval,
            github_backoff_max_elapsed_time: self.github_backoff_max_elapsed_time,
            agent_completions_first_chunk_timeout: self.agent_completions_first_chunk_timeout,
            agent_completions_other_chunk_timeout: self.agent_completions_other_chunk_timeout,
            mcp_connect_timeout: self.mcp_connect_timeout,
            mcp_call_timeout: self.mcp_call_timeout,
            reverse_channel_timeout: self.reverse_channel_timeout,
            mcp_encryption_key: self.mcp_encryption_key,
            objectiveai_dir: self.objectiveai_dir,
            objectiveai_state: self.objectiveai_state,
            logs: self.logs.map(|s| parse_bool(&s)),
            persistent_cache_transient_ttl_ms: self.persistent_cache_transient_ttl_ms,
            mock_delay_ms: self.mock_delay_ms,
            mock_max_tool_calls: self.mock_max_tool_calls,
            address: self.address,
            port: self.port,
            suppress_output: None,
        }
    }
}

#[derive(Default)]
pub struct ConfigBuilder {
    // -- HttpClient fields (identical order across all 3 structs) --
    pub objectiveai_address: Option<String>,
    pub objectiveai_authorization: Option<String>,
    pub openrouter_address: Option<String>,
    pub openrouter_authorization: Option<String>,
    pub github_authorization: Option<String>,
    pub mcp_authorization: Option<String>,
    pub user_agent: Option<String>,
    pub http_referer: Option<String>,
    pub x_title: Option<String>,
    // -- Other fields --
    pub claude_agent_sdk_enabled: Option<bool>,
    pub claude_agent_sdk_rate_limit_max_retries: Option<u64>,
    pub claude_agent_sdk_rate_limit_max_wait_secs: Option<u64>,
    pub claude_agent_sdk_query_limit: Option<u64>,
    pub codex_sdk_enabled: Option<bool>,
    pub codex_sdk_rate_limit_max_retries: Option<u64>,
    pub codex_sdk_rate_limit_max_wait_secs: Option<u64>,
    pub codex_sdk_query_limit: Option<u64>,
    pub agent_completions_backoff_current_interval: Option<u64>,
    pub agent_completions_backoff_initial_interval: Option<u64>,
    pub agent_completions_backoff_randomization_factor: Option<f64>,
    pub agent_completions_backoff_multiplier: Option<f64>,
    pub agent_completions_backoff_max_interval: Option<u64>,
    pub agent_completions_backoff_max_elapsed_time: Option<u64>,
    pub mcp_backoff_current_interval: Option<u64>,
    pub mcp_backoff_initial_interval: Option<u64>,
    pub mcp_backoff_randomization_factor: Option<f64>,
    pub mcp_backoff_multiplier: Option<f64>,
    pub mcp_backoff_max_interval: Option<u64>,
    pub mcp_backoff_max_elapsed_time: Option<u64>,
    pub github_backoff_current_interval: Option<u64>,
    pub github_backoff_initial_interval: Option<u64>,
    pub github_backoff_randomization_factor: Option<f64>,
    pub github_backoff_multiplier: Option<f64>,
    pub github_backoff_max_interval: Option<u64>,
    pub github_backoff_max_elapsed_time: Option<u64>,
    pub agent_completions_first_chunk_timeout: Option<u64>,
    pub agent_completions_other_chunk_timeout: Option<u64>,
    pub mcp_connect_timeout: Option<u64>,
    pub mcp_call_timeout: Option<u64>,
    pub reverse_channel_timeout: Option<u64>,
    pub mcp_encryption_key: Option<String>,
    pub objectiveai_dir: Option<String>,
    pub objectiveai_state: Option<String>,
    pub logs: Option<bool>,
    pub persistent_cache_transient_ttl_ms: Option<u64>,
    pub mock_delay_ms: Option<u64>,
    pub mock_max_tool_calls: Option<u32>,
    pub address: Option<String>,
    pub port: Option<u16>,
    pub suppress_output: Option<bool>,
}

impl Envconfig for ConfigBuilder {
    #[allow(deprecated)]
    fn init() -> Result<Self, envconfig::Error> {
        EnvConfigBuilder::init().map(|e| e.build())
    }

    fn init_from_env() -> Result<Self, envconfig::Error> {
        EnvConfigBuilder::init_from_env().map(|e| e.build())
    }

    fn init_from_hashmap(hashmap: &std::collections::HashMap<String, String>) -> Result<Self, envconfig::Error> {
        EnvConfigBuilder::init_from_hashmap(hashmap).map(|e| e.build())
    }
}

impl ConfigBuilder {
    pub fn build(self) -> Config {
        Config {
            // -- HttpClient fields --
            objectiveai_address: self.objectiveai_address.unwrap_or_else(|| "https://api.objectiveai.dev".to_string()),
            objectiveai_authorization: self.objectiveai_authorization,
            openrouter_address: self.openrouter_address.unwrap_or_else(|| "https://openrouter.ai/api/v1".to_string()),
            openrouter_authorization: self.openrouter_authorization,
            github_authorization: self.github_authorization,
            mcp_authorization: self.mcp_authorization,
            user_agent: self.user_agent.unwrap_or_else(|| "objectiveai-ai<admin@objectiveai-ai.io>".to_string()),
            http_referer: self.http_referer.unwrap_or_else(|| "https://objectiveai-ai.io/".to_string()),
            x_title: self.x_title.unwrap_or_else(|| "ObjectiveAI".to_string()),
            // -- Other fields --
            claude_agent_sdk_enabled: self.claude_agent_sdk_enabled.unwrap_or(true),
            claude_agent_sdk_rate_limit_max_retries: self.claude_agent_sdk_rate_limit_max_retries.unwrap_or(10),
            claude_agent_sdk_rate_limit_max_wait_secs: self.claude_agent_sdk_rate_limit_max_wait_secs.unwrap_or(180),
            claude_agent_sdk_query_limit: self.claude_agent_sdk_query_limit.unwrap_or(10),
            codex_sdk_enabled: self.codex_sdk_enabled.unwrap_or(true),
            codex_sdk_rate_limit_max_retries: self.codex_sdk_rate_limit_max_retries.unwrap_or(10),
            codex_sdk_rate_limit_max_wait_secs: self.codex_sdk_rate_limit_max_wait_secs.unwrap_or(180),
            codex_sdk_query_limit: self.codex_sdk_query_limit.unwrap_or(10),
            agent_completions_backoff_current_interval: self.agent_completions_backoff_current_interval.unwrap_or(100),
            agent_completions_backoff_initial_interval: self.agent_completions_backoff_initial_interval.unwrap_or(100),
            agent_completions_backoff_randomization_factor: self.agent_completions_backoff_randomization_factor.unwrap_or(0.5),
            agent_completions_backoff_multiplier: self.agent_completions_backoff_multiplier.unwrap_or(1.5),
            agent_completions_backoff_max_interval: self.agent_completions_backoff_max_interval.unwrap_or(1000),
            agent_completions_backoff_max_elapsed_time: self.agent_completions_backoff_max_elapsed_time.unwrap_or(40000),
            mcp_backoff_current_interval: self.mcp_backoff_current_interval.unwrap_or(100),
            mcp_backoff_initial_interval: self.mcp_backoff_initial_interval.unwrap_or(100),
            mcp_backoff_randomization_factor: self.mcp_backoff_randomization_factor.unwrap_or(0.5),
            mcp_backoff_multiplier: self.mcp_backoff_multiplier.unwrap_or(1.5),
            mcp_backoff_max_interval: self.mcp_backoff_max_interval.unwrap_or(1000),
            mcp_backoff_max_elapsed_time: self.mcp_backoff_max_elapsed_time.unwrap_or(40000),
            github_backoff_current_interval: self.github_backoff_current_interval.unwrap_or(100),
            github_backoff_initial_interval: self.github_backoff_initial_interval.unwrap_or(100),
            github_backoff_randomization_factor: self.github_backoff_randomization_factor.unwrap_or(0.5),
            github_backoff_multiplier: self.github_backoff_multiplier.unwrap_or(1.5),
            github_backoff_max_interval: self.github_backoff_max_interval.unwrap_or(1000),
            github_backoff_max_elapsed_time: self.github_backoff_max_elapsed_time.unwrap_or(40000),
            agent_completions_first_chunk_timeout: self.agent_completions_first_chunk_timeout.unwrap_or(60000),
            agent_completions_other_chunk_timeout: self.agent_completions_other_chunk_timeout.unwrap_or(30000),
            mcp_connect_timeout: self.mcp_connect_timeout.unwrap_or(60000),
            mcp_call_timeout: self.mcp_call_timeout.unwrap_or(60000),
            reverse_channel_timeout: self.reverse_channel_timeout.unwrap_or(30000),
            mcp_encryption_key: self.mcp_encryption_key,
            // Layout root (OBJECTIVEAI_DIR). Kept on Config for the
            // paths that live OUTSIDE the state dir — e.g. the
            // instance lock at <dir>/bin/locks/api/.
            objectiveai_dir: match self.objectiveai_dir.as_deref() {
                Some(dir) => std::path::PathBuf::from(dir),
                None => dirs::home_dir()
                    .unwrap_or_else(|| std::path::PathBuf::from("."))
                    .join(".objectiveai"),
            },
            // The api's filesystem client holds per-state data
            // (functions/, profiles/), so resolve straight to the
            // state dir: <dir>/state/<state>.
            config_base_dir: {
                let dir = match self.objectiveai_dir {
                    Some(dir) => std::path::PathBuf::from(dir),
                    None => dirs::home_dir()
                        .unwrap_or_else(|| std::path::PathBuf::from("."))
                        .join(".objectiveai"),
                };
                let state = self.objectiveai_state.unwrap_or_else(|| "default".to_string());
                dir.join("state").join(state)
            },
            logs: self.logs.unwrap_or(true),
            persistent_cache_transient_ttl_ms: self.persistent_cache_transient_ttl_ms.unwrap_or(3_600_000),
            mock_delay_ms: self.mock_delay_ms.unwrap_or(0),
            mock_max_tool_calls: self.mock_max_tool_calls.unwrap_or(1000),
            // Loopback + ephemeral by default: the actual bound port
            // is read back from the listener and published in the api
            // lock file, so a fixed default is unnecessary.
            address: self.address.unwrap_or_else(|| "127.0.0.1".to_string()),
            port: self.port.unwrap_or(0),
            suppress_output: self.suppress_output.unwrap_or(false),
        }
    }
}

pub struct Config {
    // -- HttpClient fields (identical order across all 3 structs) --
    pub objectiveai_address: String,
    pub objectiveai_authorization: Option<String>,
    pub openrouter_address: String,
    pub openrouter_authorization: Option<String>,
    pub github_authorization: Option<String>,
    pub mcp_authorization: Option<String>,
    pub user_agent: String,
    pub http_referer: String,
    pub x_title: String,
    // -- Other fields --
    pub claude_agent_sdk_enabled: bool,
    pub claude_agent_sdk_rate_limit_max_retries: u64,
    pub claude_agent_sdk_rate_limit_max_wait_secs: u64,
    pub claude_agent_sdk_query_limit: u64,
    pub codex_sdk_enabled: bool,
    pub codex_sdk_rate_limit_max_retries: u64,
    pub codex_sdk_rate_limit_max_wait_secs: u64,
    pub codex_sdk_query_limit: u64,
    pub agent_completions_backoff_current_interval: u64,
    pub agent_completions_backoff_initial_interval: u64,
    pub agent_completions_backoff_randomization_factor: f64,
    pub agent_completions_backoff_multiplier: f64,
    pub agent_completions_backoff_max_interval: u64,
    pub agent_completions_backoff_max_elapsed_time: u64,
    pub mcp_backoff_current_interval: u64,
    pub mcp_backoff_initial_interval: u64,
    pub mcp_backoff_randomization_factor: f64,
    pub mcp_backoff_multiplier: f64,
    pub mcp_backoff_max_interval: u64,
    pub mcp_backoff_max_elapsed_time: u64,
    pub github_backoff_current_interval: u64,
    pub github_backoff_initial_interval: u64,
    pub github_backoff_randomization_factor: f64,
    pub github_backoff_multiplier: f64,
    pub github_backoff_max_interval: u64,
    pub github_backoff_max_elapsed_time: u64,
    pub agent_completions_first_chunk_timeout: u64,
    pub agent_completions_other_chunk_timeout: u64,
    pub mcp_connect_timeout: u64,
    pub mcp_call_timeout: u64,
    /// Budget (ms) for one WS reverse-channel round-trip — how long
    /// a forwarded MCP server-request or a message-queue read may
    /// wait for the CLI's reply. Long enough that a healthy but
    /// heavily loaded CLI answers in time, short enough that a
    /// wedged WS doesn't stall callers indefinitely.
    pub reverse_channel_timeout: u64,
    /// Base64-encoded 32-byte key. Forwarded to the spawned proxy as
    /// `MCP_ENCRYPTION_KEY`. Unset → proxy generates an ephemeral key
    /// per process.
    pub mcp_encryption_key: Option<String>,
    /// Layout root (`OBJECTIVEAI_DIR`); `config_base_dir` is the
    /// per-state dir derived from it.
    pub objectiveai_dir: std::path::PathBuf,
    pub config_base_dir: std::path::PathBuf,
    /// Master switch (default on) for request/response trace logging.
    /// When on, the in-process mcp-proxy writes to
    /// `<objectiveai_dir>/bin/api/logs/mcp-proxy.jsonl`.
    pub logs: bool,
    pub persistent_cache_transient_ttl_ms: u64,
    pub mock_delay_ms: u64,
    pub mock_max_tool_calls: u32,
    pub address: String,
    pub port: u16,
    pub suppress_output: bool,
}

pub async fn setup(
    config: Config,
) -> std::io::Result<(
    tokio::net::TcpListener,
    axum::Router,
    tokio::net::TcpListener,
    axum::Router,
)> {
    let Config {
        // -- HttpClient fields --
        objectiveai_address,
        objectiveai_authorization,
        openrouter_address,
        openrouter_authorization,
        github_authorization,
        mcp_authorization,
        user_agent,
        http_referer,
        x_title,
        // -- Other fields --
        claude_agent_sdk_enabled,
        claude_agent_sdk_rate_limit_max_retries,
        claude_agent_sdk_rate_limit_max_wait_secs,
        claude_agent_sdk_query_limit,
        codex_sdk_enabled,
        codex_sdk_rate_limit_max_retries,
        codex_sdk_rate_limit_max_wait_secs,
        codex_sdk_query_limit,
        agent_completions_backoff_current_interval,
        agent_completions_backoff_initial_interval,
        agent_completions_backoff_randomization_factor,
        agent_completions_backoff_multiplier,
        agent_completions_backoff_max_interval,
        agent_completions_backoff_max_elapsed_time,
        mcp_backoff_current_interval,
        mcp_backoff_initial_interval,
        mcp_backoff_randomization_factor,
        mcp_backoff_multiplier,
        mcp_backoff_max_interval,
        mcp_backoff_max_elapsed_time,
        github_backoff_current_interval,
        github_backoff_initial_interval,
        github_backoff_randomization_factor,
        github_backoff_multiplier,
        github_backoff_max_interval,
        github_backoff_max_elapsed_time,
        agent_completions_first_chunk_timeout,
        agent_completions_other_chunk_timeout,
        mcp_connect_timeout,
        mcp_call_timeout,
        reverse_channel_timeout,
        mcp_encryption_key,
        objectiveai_dir,
        config_base_dir,
        logs,
        persistent_cache_transient_ttl_ms,
        mock_delay_ms,
        mock_max_tool_calls,
        address,
        port,
        suppress_output,
    } = config;

    // The WS reverse-channel budget, threaded to its two consumers:
    // the MCP routes (via router state → McpRequestContext) and the
    // agent client's message-queue reads (via ReverseAttachConfig →
    // ReverseAttachHandle).
    let reverse_channel_timeout = std::time::Duration::from_millis(reverse_channel_timeout);

    // HTTP Client
    let http_client = reqwest::Client::new();

    // Parse MCP authorization (shared between objectiveai_http and agent_completions clients)
    let mcp_authorization: Option<Arc<std::collections::HashMap<String, String>>> = mcp_authorization
        .and_then(|s| serde_json::from_str(&s).ok())
        .map(Arc::new);

    // ObjectiveAI HTTP Client
    let objectiveai_http_client = Arc::new(objectiveai_http::Client::new(
        http_client.clone(),
        objectiveai_address,
        objectiveai_authorization,
        user_agent.clone(),
        x_title.clone(),
        http_referer.clone(),
        github_authorization.as_ref().map(|s| Arc::new(s.clone())),
        openrouter_authorization.as_ref().map(|s| Arc::new(s.clone())),
        mcp_authorization.clone(),
    ));

    // GitHub Client
    let github_client = Arc::new(github::Client::new(
        http_client.clone(),
        github_authorization.clone(),
        user_agent.clone(),
        x_title.clone(),
        http_referer.clone(),
        std::time::Duration::from_millis(github_backoff_current_interval),
        std::time::Duration::from_millis(github_backoff_initial_interval),
        github_backoff_randomization_factor,
        github_backoff_multiplier,
        std::time::Duration::from_millis(github_backoff_max_interval),
        std::time::Duration::from_millis(github_backoff_max_elapsed_time),
    ));

    // Retrieval: Retrieve Router. The `Client` remote is resolved over
    // the websocket reverse-channel (see `retrieve::client::ClientClient`);
    // it holds no state, so no construction args.
    let retrieve_router = Arc::new(retrieval::retrieve::Router::new(
        Arc::new(retrieval::retrieve::github::GithubClient::new(
            github_client.clone(),
        )),
        Arc::new(retrieval::retrieve::client::ClientClient::new()),
        Arc::new(retrieval::retrieve::mock::MockClient),
    ));

    // MCP Client
    let mcp_client = Arc::new(objectiveai_sdk::mcp::Client::new(
        http_client.clone(),
        user_agent.clone(),
        x_title.clone(),
        http_referer.clone(),
        std::time::Duration::from_millis(mcp_connect_timeout),
        std::time::Duration::from_millis(
            mcp_backoff_current_interval,
        ),
        std::time::Duration::from_millis(
            mcp_backoff_initial_interval,
        ),
        mcp_backoff_randomization_factor,
        mcp_backoff_multiplier,
        std::time::Duration::from_millis(mcp_backoff_max_interval),
        std::time::Duration::from_millis(
            mcp_backoff_max_elapsed_time,
        ),
        std::time::Duration::from_millis(mcp_call_timeout),
    ));

    // Lazy in-process mcp-proxy. Each per-agent MCP connection goes
    // through this; it boots on the first request that needs it and
    // lives for the rest of the program.
    //
    // Propagate the api's loaded MCP config into the in-process proxy's
    // ConfigBuilder so the proxy honours the same env vars
    // (`MCP_CONNECT_TIMEOUT`, `MCP_CALL_TIMEOUT`, `MCP_BACKOFF_*`) the
    // api itself reads — without this the proxy would fall back to its
    // own crate-internal defaults.
    let proxy_encryption_key: Option<[u8; 32]> = mcp_encryption_key
        .as_deref()
        .and_then(|s| match objectiveai_mcp_proxy::parse_key_env(s) {
            Ok(opt) => opt,
            Err(e) => {
                eprintln!("MCP_ENCRYPTION_KEY parse failed; falling back to ephemeral key in proxy: {e}");
                None
            }
        });
    // When logging is on, route the in-process proxy's request/response
    // trace to <OBJECTIVEAI_DIR>/bin/api/logs/mcp-proxy.jsonl.
    let proxy_logs_dir: Option<String> = if logs {
        Some(
            objectiveai_dir
                .join("bin")
                .join("api")
                .join("logs")
                .to_string_lossy()
                .into_owned(),
        )
    } else {
        None
    };
    let proxy_spawner = Arc::new(agent::completions::ProxySpawner::new(move || {
        objectiveai_mcp_proxy::ConfigBuilder {
            logs_dir: proxy_logs_dir.clone(),
            mcp_connect_timeout: Some(mcp_connect_timeout),
            mcp_call_timeout: Some(mcp_call_timeout),
            mcp_backoff_current_interval: Some(mcp_backoff_current_interval),
            mcp_backoff_initial_interval: Some(mcp_backoff_initial_interval),
            mcp_backoff_randomization_factor: Some(mcp_backoff_randomization_factor),
            mcp_backoff_multiplier: Some(mcp_backoff_multiplier),
            mcp_backoff_max_interval: Some(mcp_backoff_max_interval),
            mcp_backoff_max_elapsed_time: Some(mcp_backoff_max_elapsed_time),
            mcp_encryption_key: proxy_encryption_key,
            ..Default::default()
        }
    }));

    // Agent Completions Client
    let agent_completions_client = Arc::new(agent::completions::Client::new(
        mcp_client.clone(),
        proxy_spawner,
        mcp_authorization.clone(),
        retrieve_router.clone(),
        Arc::new(agent::completions::usage_handler::LogUsageHandler),
        Arc::new(agent::completions::openrouter::Client::new(
            http_client.clone(),
            openrouter_address,
            openrouter_authorization,
            user_agent.clone(),
            x_title.clone(),
            http_referer.clone(),
        )),
        Arc::new(agent::completions::claude_agent_sdk::Client::new(user_agent.clone(), claude_agent_sdk_enabled, claude_agent_sdk_rate_limit_max_retries, claude_agent_sdk_rate_limit_max_wait_secs, claude_agent_sdk_query_limit)),
        Arc::new(agent::completions::codex_sdk::Client::new(user_agent, codex_sdk_enabled, codex_sdk_rate_limit_max_retries, codex_sdk_rate_limit_max_wait_secs, codex_sdk_query_limit, http_client)),
        Arc::new(agent::completions::mock::Client {
            delay: std::time::Duration::from_millis(mock_delay_ms),
            max_tool_calls: mock_max_tool_calls,
        }),
        std::time::Duration::from_millis(
            agent_completions_backoff_current_interval,
        ),
        std::time::Duration::from_millis(
            agent_completions_backoff_initial_interval,
        ),
        agent_completions_backoff_randomization_factor,
        agent_completions_backoff_multiplier,
        std::time::Duration::from_millis(agent_completions_backoff_max_interval),
        std::time::Duration::from_millis(
            agent_completions_backoff_max_elapsed_time,
        ),
        std::time::Duration::from_millis(agent_completions_first_chunk_timeout),
        std::time::Duration::from_millis(agent_completions_other_chunk_timeout),
    ));

    // Reverse-channel registry for the objectiveai-MCP endpoint. WS
    // handlers populate this on upgrade; the MCP endpoint route reads
    // it when a proxy upstream dials in for a session.
    let reverse_channels = streaming_ws::new_reverse_channel_registry();
    // SSE listener registry: per-(response_id, McpKind) broadcast
    // feeding the MCP GET notifications stream. The conduit WS recv
    // loop publishes here when the CLI pushes `McpListChanged`; the
    // GET handler subscribes from here.
    let mcp_listeners = crate::objectiveai_mcp::McpListenerRegistry::new();
    // Public + loopback-MCP listeners bound in parallel. Both
    // listeners need to be up before the process can serve a
    // request that touches `client_objectiveai_mcp`, and neither
    // bind blocks the other — `try_join` shaves the second bind's
    // syscall latency off cold start (matters on Cloud Run where
    // boot time bills + counts toward request latency).
    //
    // The MCP listener binds `127.0.0.1` so the kernel rejects any
    // non-loopback dialer outright — the proxy running inside the
    // API process is the only intended caller, and it always dials
    // over loopback. Ephemeral port keeps the binding cheap and
    // conflict-free; we read it back below and stamp it onto
    // `ReverseAttachConfig.mcp_port` so the agent client can
    // synthesize the matching `http://127.0.0.1:<port>/objectiveai-
    // mcp` URL on every per-agent `X-MCP-Servers` header.
    let (listener, mcp_listener) = tokio::try_join!(
        tokio::net::TcpListener::bind(format!("{}:{}", address, port)),
        tokio::net::TcpListener::bind(("127.0.0.1", 0u16)),
    )?;
    let mcp_port = mcp_listener.local_addr()?.port();

    let reverse_attach = streaming_ws::ReverseAttachConfig {
        registry: reverse_channels.clone(),
        mcp_port,
        mcp_listeners: mcp_listeners.clone(),
        reverse_channel_timeout,
    };

    // Vector Completions Client
    let vector_completions_client = Arc::new(vector::completions::Client::new(
        agent_completions_client.clone(),
        retrieve_router.clone(),
        Arc::new(vector::completions::usage_handler::LogUsageHandler),
    ));

    // Function Executions Client
    let function_executions_client =
        Arc::new(functions::executions::Client::new(
            agent_completions_client.clone(),
            vector_completions_client.clone(),
            retrieve_router.clone(),
            Arc::new(functions::executions::usage_handler::LogUsageHandler),
        ));

    // Functions Profiles Computations Client
    let profile_computations_client =
        Arc::new(functions::profiles::computations::ObjectiveAiClient::new(
            objectiveai_http_client.clone(),
        ));

    // Auth Client
    let auth_client = Arc::new(auth::ObjectiveAiClient::new(
        objectiveai_http_client.clone(),
    ));

    // Persistent Cache Client
    #[cfg(feature = "sqlite-persistent-cache")]
    let persistent_cache = Arc::new(
        ctx::persistent_cache::sqlite::SqlitePersistentCacheClient::new(
            config_base_dir,
            std::time::Duration::from_millis(persistent_cache_transient_ttl_ms),
        )
        .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e))?,
    );
    #[cfg(not(feature = "sqlite-persistent-cache"))]
    let persistent_cache = {
        let _ = persistent_cache_transient_ttl_ms;
        let _ = &config_base_dir;
        Arc::new(ctx::persistent_cache::default::DefaultPersistentCacheClient)
    };

    // Router
    let app = axum::Router::new()
        // Agent Completions - create (transport selected by X-Transport header)
        .route(
            "/agent/completions",
            axum::routing::any({
                let agent_completions_client = agent_completions_client.clone();
                let persistent_cache = persistent_cache.clone();
                let reverse_attach = reverse_attach.clone();
                move |transport: streaming_ws::Transport, req: axum::extract::Request| {
                    let agent_completions_client = agent_completions_client.clone();
                    let persistent_cache = persistent_cache.clone();
                    let reverse_attach = reverse_attach.clone();
                    async move {
                        use axum::extract::FromRequest;
                        use axum::extract::FromRequestParts;
                        let (mut parts, body) = req.into_parts();
                        let headers = parts.headers.clone();
                        match transport {
                            streaming_ws::Transport::Sse => {
                                let req = axum::extract::Request::from_parts(parts, body);
                                match Json::<objectiveai_sdk::agent::completions::request::AgentCompletionCreateParams>::from_request(req, &()).await {
                                    Ok(Json(body)) => create_agent_completion(agent_completions_client, headers, persistent_cache, suppress_output, body).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                            streaming_ws::Transport::WebSocket => {
                                match WebSocketUpgrade::from_request_parts(&mut parts, &()).await {
                                    Ok(ws) => streaming_ws_handlers::create_agent_completion_ws(agent_completions_client, reverse_attach, headers, persistent_cache, suppress_output, ws).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                        }
                    }
                }
            }),
        )
        // Vector Completions - create (transport selected by X-Transport header)
        .route(
            "/vector/completions",
            axum::routing::any({
                let vector_completions_client = vector_completions_client.clone();
                let agent_completions_client = agent_completions_client.clone();
                let persistent_cache = persistent_cache.clone();
                let reverse_attach = reverse_attach.clone();
                move |transport: streaming_ws::Transport, req: axum::extract::Request| {
                    let vector_completions_client = vector_completions_client.clone();
                    let agent_completions_client = agent_completions_client.clone();
                    let persistent_cache = persistent_cache.clone();
                    let reverse_attach = reverse_attach.clone();
                    async move {
                        use axum::extract::FromRequest;
                        use axum::extract::FromRequestParts;
                        let (mut parts, body) = req.into_parts();
                        let headers = parts.headers.clone();
                        match transport {
                            streaming_ws::Transport::Sse => {
                                let req = axum::extract::Request::from_parts(parts, body);
                                match Json::<objectiveai_sdk::vector::completions::request::VectorCompletionCreateParams>::from_request(req, &()).await {
                                    Ok(Json(body)) => create_vector_completion(vector_completions_client, headers, persistent_cache, suppress_output, body).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                            streaming_ws::Transport::WebSocket => {
                                match WebSocketUpgrade::from_request_parts(&mut parts, &()).await {
                                    Ok(ws) => streaming_ws_handlers::create_vector_completion_ws(vector_completions_client, agent_completions_client, reverse_attach, headers, persistent_cache, suppress_output, ws).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                        }
                    }
                }
            }),
        )
        // Function Executions - create (transport selected by X-Transport header)
        .route(
            "/functions/executions",
            axum::routing::any({
                let function_executions_client = function_executions_client.clone();
                let agent_completions_client = agent_completions_client.clone();
                let persistent_cache = persistent_cache.clone();
                let reverse_attach = reverse_attach.clone();
                move |transport: streaming_ws::Transport, req: axum::extract::Request| {
                    let function_executions_client = function_executions_client.clone();
                    let agent_completions_client = agent_completions_client.clone();
                    let persistent_cache = persistent_cache.clone();
                    let reverse_attach = reverse_attach.clone();
                    async move {
                        use axum::extract::FromRequest;
                        use axum::extract::FromRequestParts;
                        let (mut parts, body) = req.into_parts();
                        let headers = parts.headers.clone();
                        match transport {
                            streaming_ws::Transport::Sse => {
                                let req = axum::extract::Request::from_parts(parts, body);
                                match Json::<objectiveai_sdk::functions::executions::request::FunctionExecutionCreateParams>::from_request(req, &()).await {
                                    Ok(Json(body)) => execute_function(function_executions_client, headers, persistent_cache, suppress_output, body).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                            streaming_ws::Transport::WebSocket => {
                                match WebSocketUpgrade::from_request_parts(&mut parts, &()).await {
                                    Ok(ws) => streaming_ws_handlers::execute_function_ws(function_executions_client, agent_completions_client, reverse_attach, headers, persistent_cache, suppress_output, ws).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                        }
                    }
                }
            }),
        )
        // Function Profile Computations - create (transport selected by X-Transport header)
        .route(
            "/functions/profiles/compute",
            axum::routing::any({
                let profile_computations_client =
                    profile_computations_client.clone();
                let agent_completions_client = agent_completions_client.clone();
                let persistent_cache = persistent_cache.clone();
                let reverse_attach = reverse_attach.clone();
                move |transport: streaming_ws::Transport, req: axum::extract::Request| {
                    let profile_computations_client = profile_computations_client.clone();
                    let agent_completions_client = agent_completions_client.clone();
                    let persistent_cache = persistent_cache.clone();
                    let reverse_attach = reverse_attach.clone();
                    async move {
                        use axum::extract::FromRequest;
                        use axum::extract::FromRequestParts;
                        let (mut parts, body) = req.into_parts();
                        let headers = parts.headers.clone();
                        match transport {
                            streaming_ws::Transport::Sse => {
                                let req = axum::extract::Request::from_parts(parts, body);
                                match Json::<objectiveai_sdk::functions::profiles::computations::request::FunctionProfileComputationCreateParams>::from_request(req, &()).await {
                                    Ok(Json(body)) => create_profile_computation(profile_computations_client, headers, persistent_cache, suppress_output, body).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                            streaming_ws::Transport::WebSocket => {
                                match WebSocketUpgrade::from_request_parts(&mut parts, &()).await {
                                    Ok(ws) => streaming_ws_handlers::create_profile_computation_ws(profile_computations_client, agent_completions_client, reverse_attach, headers, persistent_cache, suppress_output, ws).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                        }
                    }
                }
            }),
        )
        // Auth - create API key
        .route(
            "/auth/keys",
            axum::routing::post({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap, Json(body): Json<
                    objectiveai_sdk::auth::request::CreateApiKeyRequest,
                >| {
                    create_api_key(auth_client, headers, persistent_cache, suppress_output, body)
                }
            }),
        )
        // Auth - create OpenRouter BYOK API key
        .route(
            "/auth/keys/openrouter",
            axum::routing::post({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap, Json(body): Json<
                    objectiveai_sdk::auth::request::CreateOpenRouterByokApiKeyRequest,
                >| {
                    create_openrouter_byok_api_key(auth_client, headers, persistent_cache, suppress_output, body)
                }
            }),
        )
        // Auth - disable API key
        .route(
            "/auth/keys",
            axum::routing::delete({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap, Json(body): Json<
                    objectiveai_sdk::auth::request::DisableApiKeyRequest,
                >| {
                    disable_api_key(auth_client, headers, persistent_cache, suppress_output, body)
                }
            }),
        )
        // Auth - delete OpenRouter BYOK API key
        .route(
            "/auth/keys/openrouter",
            axum::routing::delete({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap| {
                    delete_openrouter_byok_api_key(auth_client, headers, persistent_cache, suppress_output)
                }
            }),
        )
        // Auth - list API keys
        .route(
            "/auth/keys",
            axum::routing::get({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap| {
                    list_api_keys(auth_client, headers, persistent_cache, suppress_output)
                }
            }),
        )
        // Auth - get OpenRouter BYOK API key
        .route(
            "/auth/keys/openrouter",
            axum::routing::get({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap| {
                    get_openrouter_byok_api_key(auth_client, headers, persistent_cache, suppress_output)
                }
            }),
        )
        // Auth - get credits
        .route(
            "/auth/credits",
            axum::routing::get({
                let auth_client = auth_client.clone();
                let persistent_cache = persistent_cache.clone();
                move |headers: axum::http::HeaderMap| {
                    get_credits(auth_client, headers, persistent_cache, suppress_output)
                }
            }),
        )
        // Error - create (transport selected by X-Transport header)
        .route(
            "/error",
            axum::routing::any({
                let error_client = Arc::new(crate::error::Client::new());
                let agent_completions_client = agent_completions_client.clone();
                let persistent_cache = persistent_cache.clone();
                let reverse_attach = reverse_attach.clone();
                move |transport: streaming_ws::Transport, req: axum::extract::Request| {
                    let error_client = error_client.clone();
                    let agent_completions_client = agent_completions_client.clone();
                    let persistent_cache = persistent_cache.clone();
                    let reverse_attach = reverse_attach.clone();
                    async move {
                        use axum::extract::FromRequest;
                        use axum::extract::FromRequestParts;
                        let (mut parts, body) = req.into_parts();
                        let headers = parts.headers.clone();
                        match transport {
                            streaming_ws::Transport::Sse => {
                                let req = axum::extract::Request::from_parts(parts, body);
                                match Json::<objectiveai_sdk::error::request::ErrorCreateParams>::from_request(req, &()).await {
                                    Ok(Json(body)) => create_error(error_client, headers, persistent_cache, suppress_output, body).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                            streaming_ws::Transport::WebSocket => {
                                match WebSocketUpgrade::from_request_parts(&mut parts, &()).await {
                                    Ok(ws) => streaming_ws_handlers::create_error_ws(error_client, agent_completions_client, reverse_attach, headers, persistent_cache, suppress_output, ws).await,
                                    Err(rej) => rej.into_response(),
                                }
                            }
                        }
                    }
                }
            }),
        )
        // CORS
        .layer(
            tower_http::cors::CorsLayer::new()
                .allow_origin(tower_http::cors::Any)
                .allow_methods(tower_http::cors::Any)
                .allow_headers(tower_http::cors::Any)
                .expose_headers(tower_http::cors::Any),
        );

    // ObjectiveAI-MCP server — Streamable HTTP MCP + the `/notify`
    // extensions. Six routes total (POST/GET/DELETE on the root,
    // POST/GET on `/notify`, GET on `/notify/queued`). Lives on its
    // own loopback-only listener (`mcp_listener` above) so non-
    // loopback callers physically cannot reach it. No CORS layer —
    // there's nothing cross-origin about loopback-to-loopback. See
    // `objectiveai_mcp::router`.
    let mcp_app = axum::Router::new().merge(crate::objectiveai_mcp::router(
        reverse_channels.clone(),
        mcp_listeners.clone(),
        reverse_channel_timeout,
    ));

    Ok((listener, app, mcp_listener, mcp_app))
}

pub async fn serve(listener: tokio::net::TcpListener, app: axum::Router) -> std::io::Result<()> {
    axum::serve(listener, app).await
}

pub async fn run(config: Config) -> std::io::Result<()> {
    let suppress_output = config.suppress_output;
    let objectiveai_dir = config.objectiveai_dir.clone();
    let (listener, app, mcp_listener, mcp_app) = setup(config).await?;

    // There is only ever ONE api server per OBJECTIVEAI_DIR: claim
    // key "api" in <dir>/bin/locks the moment the listen address is
    // known, publishing the URL clients connect with (wildcard binds
    // map to loopback). Anyone can lockfile::read it without owning
    // the lock; the claim itself is held until process death
    // (LockClaim leaks on drop by design) and the kernel releases it
    // on any exit, crash included.
    let addr = listener.local_addr()?;
    let connect_ip = match addr.ip() {
        std::net::IpAddr::V4(v4) if v4.is_unspecified() => {
            std::net::IpAddr::V4(std::net::Ipv4Addr::LOCALHOST)
        }
        std::net::IpAddr::V6(v6) if v6.is_unspecified() => {
            std::net::IpAddr::V6(std::net::Ipv6Addr::LOCALHOST)
        }
        ip => ip,
    };
    let connect_url =
        format!("http://{}", std::net::SocketAddr::new(connect_ip, addr.port()));
    if objectiveai_sdk::lockfile::try_acquire(
        &objectiveai_dir.join("bin").join("locks"),
        "api",
        &connect_url,
    )
    .await
    .is_none()
    {
        return Err(std::io::Error::other(
            "another objectiveai-api instance already holds the api lock for this OBJECTIVEAI_DIR",
        ));
    }

    if !suppress_output {
        let mcp_addr = mcp_listener.local_addr()?;
        eprintln!("listening on {addr}");
        eprintln!("mcp listening on {mcp_addr} (loopback only)");
    }
    // Public + loopback-MCP listeners served concurrently. On Cloud
    // Run there is no infra benefit to staggering them — the
    // container needs both up before it can serve a single request
    // that touches `client_objectiveai_mcp` — so we `try_join` to
    // bring them up in parallel and tear the process down the
    // moment either listener's accept loop errors.
    tokio::try_join!(serve(listener, app), serve(mcp_listener, mcp_app))?;
    Ok(())
}

// Create Context

pub(crate) fn context(headers: &axum::http::HeaderMap, persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>, suppress_output: bool) -> ctx::Context<ctx::DefaultContextExt, impl ctx::persistent_cache::PersistentCacheClient> {
    ctx::Context::new(
        Arc::new(ctx::DefaultContextExt),
        persistent_cache,
        rust_decimal::Decimal::ONE,
        suppress_output,
        headers,
    )
}

// Agent Completions

async fn create_agent_completion(
    client: Arc<
        agent::completions::Client<
            ctx::DefaultContextExt,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::openrouter::Agent, objectiveai_sdk::agent::openrouter::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::claude_agent_sdk::Agent, objectiveai_sdk::agent::claude_agent_sdk::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::codex_sdk::Agent, objectiveai_sdk::agent::codex_sdk::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::mock::Agent, objectiveai_sdk::agent::mock::Continuation,
            > + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl agent::completions::usage_handler::UsageHandler<
                ctx::DefaultContextExt,
            > + Send
            + Sync
            + 'static,
        >,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    body: objectiveai_sdk::agent::completions::request::AgentCompletionCreateParams,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    if body.stream.unwrap_or(false) {
        match client
            .create_streaming_handle_usage(
                ctx,
                Arc::new(body),
                None,
                None, // disable_tools
                vec![], // extra_mcp_servers
                indexmap::IndexMap::new(), // extra_mcp_headers
                None,
            )
            .await
        {
            Ok(stream) => Sse::new(
                stream
                    .filter_map(|item| {
                        match item {
                            agent::completions::StreamItem::Chunk(chunk) => {
                                Some(Ok::<Event, Infallible>(
                                    Event::default()
                                        .data(serde_json::to_string(&chunk).unwrap()),
                                ))
                            }
                            agent::completions::StreamItem::State(_) => None,
                        }
                    })
                    .chain(StreamOnce::new(
                        Ok(Event::default().data("[DONE]")),
                    )),
            )
            .into_response(),
            Err(e) => ResponseError::from(&e).into_response(),
        }
    } else {
        match client
            .create_unary_handle_usage(
                ctx,
                Arc::new(body),
                None,
                None, // disable_tools
                vec![], // extra_mcp_servers
                indexmap::IndexMap::new(), // extra_mcp_headers
                None,
            )
            .await
        {
            Ok(r) => Json(r).into_response(),
            Err(e) => ResponseError::from(&e).into_response(),
        }
    }
}

// Vector Completions

async fn create_vector_completion(
    client: Arc<
        vector::completions::Client<
            ctx::DefaultContextExt,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::openrouter::Agent, objectiveai_sdk::agent::openrouter::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::claude_agent_sdk::Agent, objectiveai_sdk::agent::claude_agent_sdk::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::codex_sdk::Agent, objectiveai_sdk::agent::codex_sdk::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::mock::Agent, objectiveai_sdk::agent::mock::Continuation,
            > + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl agent::completions::usage_handler::UsageHandler<
                ctx::DefaultContextExt,
            > + Send
            + Sync
            + 'static,
            impl vector::completions::usage_handler::UsageHandler<
                ctx::DefaultContextExt,
            > + Send
            + Sync
            + 'static,
        >,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    body: objectiveai_sdk::vector::completions::request::VectorCompletionCreateParams,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    if body.stream.unwrap_or(false) {
        match client
            .create_streaming_handle_usage(ctx, Arc::new(body))
            .await
        {
            Ok(stream) => Sse::new(
                stream
                    .map(|chunk| {
                        Ok::<Event, Infallible>(
                            Event::default()
                                .data(serde_json::to_string(&chunk).unwrap()),
                        )
                    })
                    .chain(StreamOnce::new(
                        Ok(Event::default().data("[DONE]")),
                    )),
            )
            .into_response(),
            Err(e) => ResponseError::from(&e).into_response(),
        }
    } else {
        match client.create_unary_handle_usage(ctx, Arc::new(body)).await {
            Ok(r) => Json(r).into_response(),
            Err(e) => ResponseError::from(&e).into_response(),
        }
    }
}

// Function Executions

async fn execute_function(
    client: Arc<
        functions::executions::Client<
            ctx::DefaultContextExt,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::openrouter::Agent, objectiveai_sdk::agent::openrouter::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::claude_agent_sdk::Agent, objectiveai_sdk::agent::claude_agent_sdk::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::codex_sdk::Agent, objectiveai_sdk::agent::codex_sdk::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::UpstreamClient<
                objectiveai_sdk::agent::mock::Agent, objectiveai_sdk::agent::mock::Continuation,
            > + Send
            + Sync
            + 'static,
            impl agent::completions::usage_handler::UsageHandler<
                ctx::DefaultContextExt,
            > + Send
            + Sync
            + 'static,
            impl vector::completions::usage_handler::UsageHandler<
                ctx::DefaultContextExt,
            > + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl retrieval::retrieve::Client<ctx::DefaultContextExt>
            + Send
            + Sync
            + 'static,
            impl functions::executions::usage_handler::UsageHandler<
                ctx::DefaultContextExt,
            > + Send
            + Sync
            + 'static,
        >,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    request: objectiveai_sdk::functions::executions::request::FunctionExecutionCreateParams,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    if request.stream.unwrap_or(false) {
        match client
            .create_streaming_handle_usage(ctx, Arc::new(request))
            .await
        {
            Ok(stream) => Sse::new(
                stream
                    .map(|chunk| {
                        Ok::<Event, Infallible>(
                            Event::default()
                                .data(serde_json::to_string(&chunk).unwrap()),
                        )
                    })
                    .chain(StreamOnce::new(
                        Ok(Event::default().data("[DONE]")),
                    )),
            )
            .into_response(),
            Err(e) => ResponseError::from(&e).into_response(),
        }
    } else {
        match client
            .create_unary_handle_usage(ctx, Arc::new(request))
            .await
        {
            Ok(r) => Json(r).into_response(),
            Err(e) => ResponseError::from(&e).into_response(),
        }
    }
}

// Profile Computations

async fn create_profile_computation(
    // client: Arc<
    //     impl functions::profiles::computations::Client<ctx::DefaultContextExt>
    //     + Send
    //     + Sync
    //     + 'static,
    // >,
    // https://github.com/rust-lang/rust/issues/100013
    // using a concrete type for client instead
    client: Arc<functions::profiles::computations::ObjectiveAiClient>,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    request: objectiveai_sdk::functions::profiles::computations::request::FunctionProfileComputationCreateParams,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    if request.stream.unwrap_or(false) {
        match client.create_streaming(ctx, Arc::new(request)).await {
            Ok(stream) => Sse::new(
                stream
                    .map(|result| {
                        Ok::<Event, Infallible>(
                            Event::default().data(
                                match result {
                                    Ok(chunk) => serde_json::to_string(&chunk),
                                    Err(e) => serde_json::to_string(&e),
                                }
                                .unwrap(),
                            ),
                        )
                    })
                    .chain(StreamOnce::new(
                        Ok(Event::default().data("[DONE]")),
                    )),
            )
            .into_response(),
            Err(e) => e.into_response(),
        }
    } else {
        match client.create_unary(ctx, Arc::new(request)).await {
            Ok(r) => Json(r).into_response(),
            Err(e) => e.into_response(),
        }
    }
}

// Auth

async fn create_api_key(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    body: objectiveai_sdk::auth::request::CreateApiKeyRequest,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.create_api_key(ctx, body).await {
        Ok(r) => Json(r).into_response(),
        Err(e) => e.into_response(),
    }
}

async fn create_openrouter_byok_api_key(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    body: objectiveai_sdk::auth::request::CreateOpenRouterByokApiKeyRequest,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.create_openrouter_byok_api_key(ctx, body).await {
        Ok(r) => Json(r).into_response(),
        Err(e) => e.into_response(),
    }
}

async fn disable_api_key(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    body: objectiveai_sdk::auth::request::DisableApiKeyRequest,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.disable_api_key(ctx, body).await {
        Ok(r) => Json(r).into_response(),
        Err(e) => e.into_response(),
    }
}

async fn delete_openrouter_byok_api_key(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.delete_openrouter_byok_api_key(ctx).await {
        Ok(()) => axum::http::StatusCode::OK.into_response(),
        Err(e) => e.into_response(),
    }
}

async fn list_api_keys(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.list_api_keys(ctx).await {
        Ok(r) => Json(r).into_response(),
        Err(e) => e.into_response(),
    }
}

async fn get_openrouter_byok_api_key(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.get_openrouter_byok_api_key(ctx).await {
        Ok(r) => Json(r).into_response(),
        Err(e) => e.into_response(),
    }
}

async fn get_credits(
    client: Arc<
        impl auth::Client<ctx::DefaultContextExt> + Send + Sync + 'static,
    >,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    match client.get_credits(ctx).await {
        Ok(r) => Json(r).into_response(),
        Err(e) => e.into_response(),
    }
}

// Error

async fn create_error(
    client: Arc<crate::error::Client>,
    headers: axum::http::HeaderMap,
    persistent_cache: Arc<impl ctx::persistent_cache::PersistentCacheClient + 'static>,
    suppress_output: bool,
    body: objectiveai_sdk::error::request::ErrorCreateParams,
) -> axum::response::Response {
    let ctx = context(&headers, persistent_cache, suppress_output);
    if body.stream.unwrap_or(false) {
        match client.create_streaming(&ctx, &body) {
            Ok(stream) => Sse::new(
                stream
                    .map(|result| {
                        Ok::<Event, Infallible>(
                            Event::default().data(
                                match result {
                                    Ok(chunk) => serde_json::to_string(&chunk),
                                    Err(e) => serde_json::to_string(&e),
                                }
                                .unwrap(),
                            ),
                        )
                    })
                    .chain(StreamOnce::new(
                        Ok(Event::default().data("[DONE]")),
                    )),
            )
            .into_response(),
            Err(e) => e.into_response(),
        }
    } else {
        match client.create_unary(&ctx, &body) {
            Ok(r) => Json(r).into_response(),
            Err(e) => e.into_response(),
        }
    }
}