swink-agent-adapters 0.9.0

LLM provider adapters for swink-agent
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
//! Native Anthropic Messages API adapter.
//!
//! Implements [`StreamFn`] for the Anthropic Messages API (`/v1/messages`).
//! Handles the Anthropic-specific SSE format, including thinking blocks and
//! tool use.

use std::collections::HashMap;
use std::pin::Pin;

use futures::stream::{self, Stream, StreamExt as _};
use serde::Serialize;
use serde_json::Value;
use tokio_util::sync::CancellationToken;
use tracing::{debug, error, warn};

use swink_agent::ContentBlock;
use swink_agent::{
    AgentContext, AgentMessage, AssistantMessageEvent, CacheStrategy, Cost, LlmMessage, ModelSpec,
    StopReason, StreamFn, StreamOptions, ThinkingLevel, Usage,
};

use crate::base::AdapterBase;
use crate::block_accumulator::BlockAccumulator;
use crate::convert::extract_tool_schemas;
use crate::sse::{SseAction, SseEvent, sse_paired_events_with_callback};

// ─── Request types ──────────────────────────────────────────────────────────

/// A content block in an Anthropic message.
#[derive(Debug, Serialize)]
#[serde(tag = "type")]
enum AnthropicContentBlock {
    #[serde(rename = "text")]
    Text { text: String },
    #[serde(rename = "tool_use")]
    ToolUse {
        id: String,
        name: String,
        input: Value,
    },
    #[serde(rename = "tool_result")]
    ToolResult {
        tool_use_id: String,
        content: String,
    },
}

/// Message in Anthropic's format.
#[derive(Debug, Serialize)]
struct AnthropicMessage {
    role: String,
    content: Vec<AnthropicContentBlock>,
}

/// Tool definition in Anthropic's format.
#[derive(Debug, Serialize)]
struct AnthropicToolDef {
    name: String,
    description: String,
    input_schema: Value,
    #[serde(skip_serializing_if = "Option::is_none")]
    cache_control: Option<CacheControl>,
}

/// System prompt content block for Anthropic.
#[derive(Debug, Serialize)]
struct SystemBlock {
    r#type: &'static str,
    text: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    cache_control: Option<CacheControl>,
}

/// Cache control marker for Anthropic.
#[derive(Debug, Clone, Serialize)]
struct CacheControl {
    r#type: &'static str,
}

/// Thinking configuration.
#[derive(Debug, Serialize)]
struct AnthropicThinking {
    r#type: String,
    budget_tokens: u64,
}

/// Full request body for Anthropic `/v1/messages`.
#[derive(Debug, Serialize)]
struct AnthropicChatRequest {
    model: String,
    max_tokens: u64,
    stream: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    system: Option<Value>,
    messages: Vec<AnthropicMessage>,
    #[serde(skip_serializing_if = "Vec::is_empty")]
    tools: Vec<AnthropicToolDef>,
    #[serde(skip_serializing_if = "Option::is_none")]
    temperature: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    thinking: Option<AnthropicThinking>,
}

// ─── SSE event / block tracking ─────────────────────────────────────────────

/// The type of content block currently active at a given provider index.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum BlockType {
    Text,
    Thinking,
    ToolUse,
}

/// State machine tracking SSE streaming progress.
///
/// Block lifecycle (index allocation, open/close, drain) is delegated to
/// [`BlockAccumulator`].  The `provider_blocks` map translates Anthropic's
/// provider-side block indices to `(BlockType, harness content_index)` so
/// that `content_block_delta` and `content_block_stop` events can be routed
/// to the correct accumulator method.
struct SseStreamState {
    /// Shared block lifecycle accumulator.
    blocks: BlockAccumulator,
    /// Anthropic block index → `(BlockType, harness content_index)`.
    provider_blocks: HashMap<usize, (BlockType, usize)>,
    usage: Usage,
    stop_reason: Option<StopReason>,
}

// NOTE: Event/data pairing is handled by `SseEvent` from `crate::sse::sse_paired_events`.

// ─── AnthropicStreamFn ──────────────────────────────────────────────────────

/// A [`StreamFn`] implementation for the Anthropic Messages API.
///
/// Connects to the Anthropic API (or a compatible endpoint) and streams
/// responses as `AssistantMessageEvent` values. Supports text, thinking,
/// and tool-use content blocks.
pub struct AnthropicStreamFn {
    base: AdapterBase,
}

impl AnthropicStreamFn {
    /// Create a new Anthropic stream function.
    ///
    /// # Arguments
    ///
    /// * `base_url` - API base URL (e.g. `https://api.anthropic.com`).
    /// * `api_key` - Anthropic API key for `x-api-key` header authentication.
    #[must_use]
    pub fn new(base_url: impl Into<String>, api_key: impl Into<String>) -> Self {
        Self {
            base: AdapterBase::new(base_url, api_key),
        }
    }
}

impl std::fmt::Debug for AnthropicStreamFn {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("AnthropicStreamFn")
            .field("base_url", &self.base.base_url)
            .field("api_key", &"[REDACTED]")
            .finish_non_exhaustive()
    }
}

impl StreamFn for AnthropicStreamFn {
    fn stream<'a>(
        &'a self,
        model: &'a ModelSpec,
        context: &'a AgentContext,
        options: &'a StreamOptions,
        cancellation_token: CancellationToken,
    ) -> Pin<Box<dyn Stream<Item = AssistantMessageEvent> + Send + 'a>> {
        Box::pin(anthropic_stream(
            self,
            model,
            context,
            options,
            cancellation_token,
        ))
    }
}

// ─── Stream implementation ──────────────────────────────────────────────────

fn anthropic_stream<'a>(
    anthropic: &'a AnthropicStreamFn,
    model: &'a ModelSpec,
    context: &'a AgentContext,
    options: &'a StreamOptions,
    cancellation_token: CancellationToken,
) -> impl Stream<Item = AssistantMessageEvent> + Send + 'a {
    stream::once(async move {
        let response = match tokio::select! {
            () = cancellation_token.cancelled() => {
                return stream::iter(Vec::from(crate::base::pre_stream_error(
                    crate::base::cancelled_error("operation cancelled"),
                )))
                .left_stream();
            }
            response = send_request(anthropic, model, context, options) => response
        } {
            Ok(resp) => resp,
            Err(event) => {
                return stream::iter(Vec::from(crate::base::pre_stream_error(event))).left_stream();
            }
        };

        let status = response.status();
        if !status.is_success() {
            let code = status.as_u16();
            let body = match crate::base::read_error_body_or_cancelled(
                response,
                &cancellation_token,
                "operation cancelled",
            )
            .await
            {
                Ok(body) => body,
                Err(event) => {
                    return stream::iter(Vec::from(crate::base::pre_stream_error(event)))
                        .left_stream();
                }
            };
            warn!(status = code, "Anthropic HTTP error");
            // Anthropic-specific: 529 (overloaded) and 504 (gateway timeout)
            // are retryable network errors.
            let event = crate::classify::error_event_from_status_with_overrides(
                code,
                &body,
                "Anthropic",
                &[
                    (529, crate::classify::HttpErrorKind::Network),
                    (504, crate::classify::HttpErrorKind::Network),
                ],
            );
            return stream::iter(Vec::from(crate::base::pre_stream_error(event))).left_stream();
        }

        parse_sse_stream(response, cancellation_token, options.on_raw_payload.clone())
            .right_stream()
    })
    .flatten()
}

/// Send the HTTP POST request to the Anthropic Messages API.
async fn send_request(
    anthropic: &AnthropicStreamFn,
    model: &ModelSpec,
    context: &AgentContext,
    options: &StreamOptions,
) -> Result<reqwest::Response, AssistantMessageEvent> {
    let url = format!("{}/v1/messages", anthropic.base.base_url);
    debug!(
        %url,
        model = %model.model_id,
        messages = context.messages.len(),
        "sending Anthropic request"
    );

    let (system_text, messages) = convert_messages(&context.messages, &context.system_prompt);

    let use_caching = matches!(
        options.cache_strategy,
        CacheStrategy::Auto | CacheStrategy::Anthropic
    );

    let mut tools: Vec<AnthropicToolDef> = extract_tool_schemas(&context.tools)
        .into_iter()
        .map(|s| AnthropicToolDef {
            name: s.name,
            description: s.description,
            input_schema: s.parameters,
            cache_control: None,
        })
        .collect();

    // Apply cache strategy: inject cache_control on system prompt and last tool def
    let system = if use_caching {
        if let Some(last) = tools.last_mut() {
            last.cache_control = Some(CacheControl {
                r#type: "ephemeral",
            });
        }
        system_text.map(|text| {
            serde_json::to_value(vec![SystemBlock {
                r#type: "text",
                text,
                cache_control: Some(CacheControl {
                    r#type: "ephemeral",
                }),
            }])
            .unwrap_or(Value::Null)
        })
    } else {
        system_text.map(Value::String)
    };

    let max_tokens = options.max_tokens.unwrap_or(4096);

    // Resolve thinking budget from model spec
    let thinking = resolve_thinking(model, max_tokens);

    // When thinking is enabled, temperature must not be set (Anthropic requires
    // temperature=1 which is the default when omitted).
    let temperature = if thinking.is_some() {
        None
    } else {
        options.temperature
    };

    let body = AnthropicChatRequest {
        model: model.model_id.clone(),
        max_tokens,
        stream: true,
        system,
        messages,
        tools,
        temperature,
        thinking,
    };

    let api_key = options
        .api_key
        .as_deref()
        .unwrap_or(&anthropic.base.api_key);

    anthropic
        .base
        .client
        .post(&url)
        .header("x-api-key", api_key)
        .header("anthropic-version", "2023-06-01")
        .header("content-type", "application/json")
        .json(&body)
        .send()
        .await
        .map_err(|e| {
            AssistantMessageEvent::error_network(format!("Anthropic connection error: {e}"))
        })
}

/// Resolve thinking configuration from the model spec.
fn resolve_thinking(model: &ModelSpec, max_tokens: u64) -> Option<AnthropicThinking> {
    if model.thinking_level == ThinkingLevel::Off {
        return None;
    }

    // Try to get a budget from the thinking_budgets map first, then use defaults.
    let budget = model
        .thinking_budgets
        .as_ref()
        .and_then(|b| b.get(&model.thinking_level))
        .unwrap_or_else(|| match model.thinking_level {
            ThinkingLevel::Minimal => 1024,
            ThinkingLevel::Low => 2048,
            ThinkingLevel::Medium => 5000,
            ThinkingLevel::High => 10_000,
            ThinkingLevel::ExtraHigh => 20_000,
            ThinkingLevel::Off => unreachable!(),
        });

    // Anthropic requires `budget_tokens` to be strictly less than `max_tokens`.
    // Silently capping here is intentional — callers set budgets in terms of the
    // thinking level, not the absolute token limit, so exceeding max_tokens is a
    // normal edge case rather than a user error worth surfacing.
    let budget = budget.min(max_tokens.saturating_sub(1));

    Some(AnthropicThinking {
        r#type: "enabled".to_string(),
        budget_tokens: budget,
    })
}

/// Convert harness messages to Anthropic message format.
///
/// This function uses a bespoke conversion instead of the shared
/// [`MessageConverter`](super::convert::MessageConverter) trait because
/// the Anthropic API requires the system prompt as a separate top-level
/// field rather than as a message, and thinking blocks must be filtered
/// from outgoing requests.
///
/// Returns `(system, messages)` — the system prompt is a top-level field in
/// Anthropic's API, not a message.
fn convert_messages(
    messages: &[AgentMessage],
    system_prompt: &str,
) -> (Option<String>, Vec<AnthropicMessage>) {
    let system = if system_prompt.is_empty() {
        None
    } else {
        Some(system_prompt.to_string())
    };

    let mut result: Vec<AnthropicMessage> = Vec::new();

    for msg in messages {
        let AgentMessage::Llm(llm) = msg else {
            continue;
        };
        match llm {
            LlmMessage::User(user) => {
                let text = ContentBlock::extract_text(&user.content);
                result.push(AnthropicMessage {
                    role: "user".to_string(),
                    content: vec![AnthropicContentBlock::Text { text }],
                });
            }
            LlmMessage::Assistant(assistant) => {
                let mut content = Vec::new();
                for block in &assistant.content {
                    match block {
                        ContentBlock::Text { text } if !text.is_empty() => {
                            content.push(AnthropicContentBlock::Text { text: text.clone() });
                        }
                        ContentBlock::ToolCall {
                            id,
                            name,
                            arguments,
                            ..
                        } => {
                            // Issue #619: loop-level scrub coerces incomplete tool-use
                            // blocks into object-typed arguments before reaching here.
                            // Debug builds assert the invariant to catch regressions.
                            debug_assert!(
                                arguments.is_object(),
                                "anthropic adapter: tool_use arguments must be a JSON object (got {arguments:?}); loop-level sanitize_incomplete_tool_calls should have coerced this before dispatch"
                            );
                            content.push(AnthropicContentBlock::ToolUse {
                                id: id.clone(),
                                name: name.clone(),
                                input: arguments.clone(),
                            });
                        }
                        // Skip thinking and other blocks — Anthropic doesn't accept them back.
                        _ => {}
                    }
                }
                if !content.is_empty() {
                    result.push(AnthropicMessage {
                        role: "assistant".to_string(),
                        content,
                    });
                }
            }
            LlmMessage::ToolResult(tool_result) => {
                let text = ContentBlock::extract_text(&tool_result.content);
                let block = AnthropicContentBlock::ToolResult {
                    tool_use_id: tool_result.tool_call_id.clone(),
                    content: text,
                };

                // Combine consecutive tool results into a single user message.
                if let Some(last) = result.last_mut()
                    && last.role == "user"
                    && last
                        .content
                        .iter()
                        .all(|b| matches!(b, AnthropicContentBlock::ToolResult { .. }))
                {
                    last.content.push(block);
                    continue;
                }

                result.push(AnthropicMessage {
                    role: "user".to_string(),
                    content: vec![block],
                });
            }
        }
    }

    (system, result)
}

/// Parse Anthropic's SSE streaming response into `AssistantMessageEvent` values.
#[allow(clippy::too_many_lines)]
fn parse_sse_stream(
    response: reqwest::Response,
    cancellation_token: CancellationToken,
    on_raw_payload: Option<swink_agent::OnRawPayload>,
) -> impl Stream<Item = AssistantMessageEvent> + Send {
    let line_stream = sse_paired_events_with_callback(response.bytes_stream(), on_raw_payload);

    let state = SseStreamState {
        blocks: BlockAccumulator::default(),
        provider_blocks: HashMap::new(),
        usage: Usage::default(),
        stop_reason: None,
    };

    crate::sse::sse_adapter_stream(
        line_stream,
        cancellation_token,
        state,
        "operation cancelled",
        |item, state| match item {
            None => {
                let mut events = crate::finalize::finalize_blocks(state);
                events.push(AssistantMessageEvent::error_network(
                    "Anthropic stream ended unexpectedly",
                ));
                SseAction::Done(events)
            }
            Some(SseEvent { event_type, data })
                if event_type == crate::sse::SSE_TRANSPORT_ERROR_EVENT =>
            {
                let mut events = crate::finalize::finalize_blocks(state);
                events.push(AssistantMessageEvent::error_network(format!(
                    "Anthropic {data}",
                )));
                SseAction::Done(events)
            }
            Some(SseEvent { event_type, data }) => {
                let mut done = false;
                let events = process_sse_event(&event_type, &data, state, &mut done);
                if done {
                    SseAction::Done(events)
                } else {
                    SseAction::Continue(events)
                }
            }
        },
    )
}

fn malformed_event_parse_error(
    state: &mut SseStreamState,
    event_type: &str,
    error: &serde_json::Error,
) -> Vec<AssistantMessageEvent> {
    error!(event_type, error = %error, "Anthropic SSE JSON parse error");
    let mut events = crate::finalize::finalize_blocks(state);
    events.push(AssistantMessageEvent::error(format!(
        "Anthropic {event_type} JSON parse error: {error}",
    )));
    events
}

/// Process a single SSE event and return the resulting harness events.
#[allow(clippy::too_many_lines)]
fn process_sse_event(
    event_type: &str,
    data: &str,
    state: &mut SseStreamState,
    done: &mut bool,
) -> Vec<AssistantMessageEvent> {
    let mut events = Vec::new();

    match event_type {
        "message_start" => {
            // Extract input token usage from message_start
            let parsed = match serde_json::from_str::<Value>(data) {
                Ok(parsed) => parsed,
                Err(parse_error) => {
                    *done = true;
                    return malformed_event_parse_error(state, event_type, &parse_error);
                }
            };
            if let Some(input) = parsed
                .pointer("/message/usage/input_tokens")
                .and_then(Value::as_u64)
            {
                state.usage.input = input;
            }
            if let Some(cache_read) = parsed
                .pointer("/message/usage/cache_read_input_tokens")
                .and_then(Value::as_u64)
            {
                state.usage.cache_read = cache_read;
            }
            if let Some(cache_write) = parsed
                .pointer("/message/usage/cache_creation_input_tokens")
                .and_then(Value::as_u64)
            {
                state.usage.cache_write = cache_write;
            }
        }

        "content_block_start" => {
            let parsed = match serde_json::from_str::<Value>(data) {
                Ok(parsed) => parsed,
                Err(parse_error) => {
                    *done = true;
                    return malformed_event_parse_error(state, event_type, &parse_error);
                }
            };
            let index = parsed["index"]
                .as_u64()
                .unwrap_or(0)
                .try_into()
                .unwrap_or(0);
            let block_type = parsed
                .pointer("/content_block/type")
                .and_then(Value::as_str)
                .unwrap_or("");

            match block_type {
                "text" => {
                    events.extend(state.blocks.ensure_text_open());
                    // Always register the provider→harness index mapping so
                    // subsequent content_block_delta events can route by
                    // provider index.  ensure_text_open is idempotent, but
                    // the provider may use a fresh index for the same block.
                    if let Some(content_index) = state.blocks.text_index() {
                        state
                            .provider_blocks
                            .insert(index, (BlockType::Text, content_index));
                    }
                }
                "thinking" => {
                    events.extend(state.blocks.ensure_thinking_open());
                    if let Some(content_index) = state.blocks.thinking_index() {
                        state
                            .provider_blocks
                            .insert(index, (BlockType::Thinking, content_index));
                    }
                }
                "tool_use" => {
                    let id = parsed
                        .pointer("/content_block/id")
                        .and_then(Value::as_str)
                        .unwrap_or("")
                        .to_string();
                    let name = parsed
                        .pointer("/content_block/name")
                        .and_then(Value::as_str)
                        .unwrap_or("")
                        .to_string();
                    let (content_index, start_ev) = state.blocks.open_tool_call(id, name);
                    state
                        .provider_blocks
                        .insert(index, (BlockType::ToolUse, content_index));
                    events.push(start_ev);
                }
                _ => {}
            }
        }

        "content_block_delta" => {
            let parsed = match serde_json::from_str::<Value>(data) {
                Ok(parsed) => parsed,
                Err(parse_error) => {
                    *done = true;
                    return malformed_event_parse_error(state, event_type, &parse_error);
                }
            };
            let index = parsed["index"]
                .as_u64()
                .unwrap_or(0)
                .try_into()
                .unwrap_or(0);
            let delta_type = parsed
                .pointer("/delta/type")
                .and_then(Value::as_str)
                .unwrap_or("");

            if let Some(&(block_type, content_index)) = state.provider_blocks.get(&index) {
                match delta_type {
                    "text_delta" => {
                        debug_assert!(
                            matches!(block_type, BlockType::Text),
                            "text_delta on non-text provider block"
                        );
                        if let Some(text) = parsed.pointer("/delta/text").and_then(Value::as_str) {
                            // Use the provider-mapped content_index so the
                            // event always carries the index registered at
                            // content_block_start — matching pre-migration
                            // behaviour exactly.
                            events.push(AssistantMessageEvent::TextDelta {
                                content_index,
                                delta: text.to_string(),
                            });
                        }
                    }
                    "thinking_delta" => {
                        debug_assert!(
                            matches!(block_type, BlockType::Thinking),
                            "thinking_delta on non-thinking provider block"
                        );
                        if let Some(thinking) =
                            parsed.pointer("/delta/thinking").and_then(Value::as_str)
                        {
                            events.push(AssistantMessageEvent::ThinkingDelta {
                                content_index,
                                delta: thinking.to_string(),
                            });
                        }
                    }
                    "input_json_delta" => {
                        if let Some(json) = parsed
                            .pointer("/delta/partial_json")
                            .and_then(Value::as_str)
                        {
                            events.push(BlockAccumulator::tool_call_delta(
                                content_index,
                                json.to_string(),
                            ));
                        }
                    }
                    _ => {}
                }
            }
        }

        "content_block_stop" => {
            let parsed = match serde_json::from_str::<Value>(data) {
                Ok(parsed) => parsed,
                Err(parse_error) => {
                    *done = true;
                    return malformed_event_parse_error(state, event_type, &parse_error);
                }
            };
            let index = parsed["index"]
                .as_u64()
                .unwrap_or(0)
                .try_into()
                .unwrap_or(0);

            if let Some((block_type, content_index)) = state.provider_blocks.remove(&index) {
                match block_type {
                    BlockType::Text => {
                        events.extend(state.blocks.close_text());
                    }
                    BlockType::Thinking => {
                        let signature = parsed
                            .pointer("/signature")
                            .and_then(Value::as_str)
                            .map(String::from);
                        events.extend(state.blocks.close_thinking(signature));
                    }
                    BlockType::ToolUse => {
                        events.extend(state.blocks.close_tool_call(content_index));
                    }
                }
            }
        }

        "message_delta" => {
            let parsed = match serde_json::from_str::<Value>(data) {
                Ok(parsed) => parsed,
                Err(parse_error) => {
                    *done = true;
                    return malformed_event_parse_error(state, event_type, &parse_error);
                }
            };
            // Extract stop reason
            if let Some(reason) = parsed.pointer("/delta/stop_reason").and_then(Value::as_str) {
                state.stop_reason = Some(match reason {
                    "tool_use" => StopReason::ToolUse,
                    "max_tokens" => StopReason::Length,
                    _ => StopReason::Stop,
                });
            }

            // Extract output token usage
            if let Some(output) = parsed
                .pointer("/usage/output_tokens")
                .and_then(Value::as_u64)
            {
                state.usage.output = output;
            }
        }

        "message_stop" => {
            *done = true;
            events.extend(crate::finalize::finalize_blocks(state));

            let stop_reason = state.stop_reason.unwrap_or(StopReason::Stop);
            state.usage.total = state.usage.input
                + state.usage.output
                + state.usage.cache_read
                + state.usage.cache_write;

            events.push(AssistantMessageEvent::Done {
                stop_reason,
                usage: state.usage.clone(),
                cost: Cost::default(),
            });
        }

        "error" => {
            *done = true;
            let parsed = match serde_json::from_str::<Value>(data) {
                Ok(parsed) => Some(parsed),
                Err(parse_error) => {
                    return malformed_event_parse_error(state, event_type, &parse_error);
                }
            };
            events.extend(crate::finalize::finalize_blocks(state));
            let msg = parsed
                .as_ref()
                .and_then(|v| {
                    v.pointer("/error/message")
                        .and_then(Value::as_str)
                        .map(String::from)
                })
                .unwrap_or_else(|| format!("Anthropic stream error: {data}"));
            let error_type = parsed
                .as_ref()
                .and_then(|v| v.pointer("/error/type").and_then(Value::as_str));

            error!(error = %msg, "Anthropic stream error");

            let event = match error_type {
                Some("authentication_error" | "permission_error") => {
                    AssistantMessageEvent::error_auth(&msg)
                }
                Some("rate_limit_error") => AssistantMessageEvent::error_throttled(&msg),
                Some("overloaded_error" | "api_error") => {
                    AssistantMessageEvent::error_network(&msg)
                }
                _ => AssistantMessageEvent::error_network(&msg),
            };
            events.push(event);
        }

        // Ignore ping and other unknown event types
        _ => {}
    }

    events
}

impl crate::finalize::StreamFinalize for SseStreamState {
    fn drain_open_blocks(&mut self) -> Vec<crate::finalize::OpenBlock> {
        self.provider_blocks.clear();
        crate::finalize::StreamFinalize::drain_open_blocks(&mut self.blocks)
    }
}

// Event/data pairing is now handled by `crate::sse::sse_paired_events`.

// ─── Compile-time assertions ────────────────────────────────────────────────

const _: () = {
    const fn assert_send_sync<T: Send + Sync>() {}
    assert_send_sync::<AnthropicStreamFn>();
};

// ─── Tests ──────────────────────────────────────────────────────────────────

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

    #[test]
    fn cache_strategy_none_no_markers() {
        let tools = vec![AnthropicToolDef {
            name: "test".to_string(),
            description: "desc".to_string(),
            input_schema: serde_json::json!({}),
            cache_control: None,
        }];

        let request = AnthropicChatRequest {
            model: "claude-sonnet-4-6".to_string(),
            max_tokens: 4096,
            stream: true,
            system: Some(Value::String("You are helpful".to_string())),
            messages: vec![],
            tools,
            temperature: None,
            thinking: None,
        };

        let json = serde_json::to_value(&request).unwrap();
        // System should be a plain string
        assert_eq!(json["system"], "You are helpful");
        // Tools should not have cache_control
        assert!(json["tools"][0].get("cache_control").is_none());
    }

    #[test]
    fn cache_strategy_auto_anthropic_markers() {
        // Simulate what send_request does with CacheStrategy::Auto
        let system_text = Some("You are helpful".to_string());
        let mut tools = vec![AnthropicToolDef {
            name: "test".to_string(),
            description: "desc".to_string(),
            input_schema: serde_json::json!({}),
            cache_control: None,
        }];

        // Apply caching (mirroring send_request logic)
        if let Some(last) = tools.last_mut() {
            last.cache_control = Some(CacheControl {
                r#type: "ephemeral",
            });
        }
        let system = system_text.map(|text| {
            serde_json::to_value(vec![SystemBlock {
                r#type: "text",
                text,
                cache_control: Some(CacheControl {
                    r#type: "ephemeral",
                }),
            }])
            .unwrap()
        });

        let request = AnthropicChatRequest {
            model: "claude-sonnet-4-6".to_string(),
            max_tokens: 4096,
            stream: true,
            system,
            messages: vec![],
            tools,
            temperature: None,
            thinking: None,
        };

        let json = serde_json::to_value(&request).unwrap();
        // System should be an array with cache_control
        let sys_array = json["system"].as_array().unwrap();
        assert_eq!(sys_array.len(), 1);
        assert_eq!(sys_array[0]["type"], "text");
        assert_eq!(sys_array[0]["text"], "You are helpful");
        assert_eq!(sys_array[0]["cache_control"]["type"], "ephemeral");
        // Last tool should have cache_control
        assert_eq!(json["tools"][0]["cache_control"]["type"], "ephemeral");
    }

    #[test]
    fn cache_strategy_ignored_by_unsupporting_adapter() {
        // CacheStrategy::Auto on a non-Anthropic adapter should be a no-op.
        // This is tested by verifying that CacheStrategy is just an enum —
        // adapters that don't support it simply don't read the field.
        let strategy = CacheStrategy::Auto;
        assert!(matches!(strategy, CacheStrategy::Auto));
        // No code changes needed in other adapters — they ignore it by design.
    }

    // ── SSE event processing (BlockAccumulator integration) ───────────────

    /// Helper: create a fresh `SseStreamState`.
    fn new_state() -> SseStreamState {
        SseStreamState {
            blocks: BlockAccumulator::default(),
            provider_blocks: HashMap::new(),
            usage: Usage::default(),
            stop_reason: None,
        }
    }

    /// Helper: run `process_sse_event` and return `(events, done)`.
    fn process(
        event_type: &str,
        data: &str,
        state: &mut SseStreamState,
    ) -> (Vec<AssistantMessageEvent>, bool) {
        let mut done = false;
        let events = process_sse_event(event_type, data, state, &mut done);
        (events, done)
    }

    #[test]
    fn text_block_lifecycle_via_sse() {
        let mut state = new_state();

        // content_block_start for text at provider index 0
        let (events, _) = process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextStart { content_index: 0 }
        ));

        // text delta
        let (events, _) = process(
            "content_block_delta",
            r#"{"index":0,"delta":{"type":"text_delta","text":"Hello"}}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        assert!(matches!(
            &events[0],
            AssistantMessageEvent::TextDelta { content_index: 0, delta } if delta == "Hello"
        ));

        // content_block_stop
        let (events, _) = process("content_block_stop", r#"{"index":0}"#, &mut state);
        assert_eq!(events.len(), 1);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 0 }
        ));
    }

    #[test]
    fn thinking_block_with_signature() {
        let mut state = new_state();

        let (events, _) = process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"thinking","thinking":""}}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::ThinkingStart { content_index: 0 }
        ));

        let (events, _) = process(
            "content_block_delta",
            r#"{"index":0,"delta":{"type":"thinking_delta","thinking":"Let me think..."}}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        assert!(matches!(
            &events[0],
            AssistantMessageEvent::ThinkingDelta { content_index: 0, delta } if delta == "Let me think..."
        ));

        // Stop with signature
        let (events, _) = process(
            "content_block_stop",
            r#"{"index":0,"signature":"abc123"}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        match &events[0] {
            AssistantMessageEvent::ThinkingEnd {
                content_index,
                signature,
            } => {
                assert_eq!(*content_index, 0);
                assert_eq!(signature.as_deref(), Some("abc123"));
            }
            other => panic!("expected ThinkingEnd, got {other:?}"),
        }
    }

    #[test]
    fn mixed_thinking_text_tool_call_indices() {
        let mut state = new_state();

        // Thinking block at provider index 0 → harness index 0
        let (events, _) = process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"thinking","thinking":""}}"#,
            &mut state,
        );
        assert!(matches!(
            events[0],
            AssistantMessageEvent::ThinkingStart { content_index: 0 }
        ));

        let (events, _) = process("content_block_stop", r#"{"index":0}"#, &mut state);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::ThinkingEnd {
                content_index: 0,
                ..
            }
        ));

        // Text block at provider index 1 → harness index 1
        let (events, _) = process(
            "content_block_start",
            r#"{"index":1,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextStart { content_index: 1 }
        ));

        let (events, _) = process("content_block_stop", r#"{"index":1}"#, &mut state);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 1 }
        ));

        // Tool call at provider index 2 → harness index 2
        let (events, _) = process(
            "content_block_start",
            r#"{"index":2,"content_block":{"type":"tool_use","id":"call_1","name":"bash"}}"#,
            &mut state,
        );
        assert!(matches!(
            &events[0],
            AssistantMessageEvent::ToolCallStart {
                content_index: 2,
                ..
            }
        ));
    }

    #[test]
    fn multiple_sequential_tool_calls() {
        let mut state = new_state();

        // First tool call at provider index 0
        let (events, _) = process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"tool_use","id":"tc_1","name":"read_file"}}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        match &events[0] {
            AssistantMessageEvent::ToolCallStart {
                content_index,
                id,
                name,
            } => {
                assert_eq!(*content_index, 0);
                assert_eq!(id, "tc_1");
                assert_eq!(name, "read_file");
            }
            other => panic!("expected ToolCallStart, got {other:?}"),
        }

        // Delta for first tool call
        let (events, _) = process(
            "content_block_delta",
            r#"{"index":0,"delta":{"type":"input_json_delta","partial_json":"{\"path\":\"foo\"}"}}"#,
            &mut state,
        );
        assert_eq!(events.len(), 1);
        assert!(matches!(
            &events[0],
            AssistantMessageEvent::ToolCallDelta {
                content_index: 0,
                ..
            }
        ));

        // Close first tool call
        let (events, _) = process("content_block_stop", r#"{"index":0}"#, &mut state);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::ToolCallEnd { content_index: 0 }
        ));

        // Second tool call at provider index 1 → harness index 1
        let (events, _) = process(
            "content_block_start",
            r#"{"index":1,"content_block":{"type":"tool_use","id":"tc_2","name":"write_file"}}"#,
            &mut state,
        );
        match &events[0] {
            AssistantMessageEvent::ToolCallStart {
                content_index,
                id,
                name,
            } => {
                assert_eq!(*content_index, 1);
                assert_eq!(id, "tc_2");
                assert_eq!(name, "write_file");
            }
            other => panic!("expected ToolCallStart, got {other:?}"),
        }

        // Close second tool call
        let (events, _) = process("content_block_stop", r#"{"index":1}"#, &mut state);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::ToolCallEnd { content_index: 1 }
        ));
    }

    #[test]
    fn message_stop_emits_done_with_usage() {
        let mut state = new_state();

        // Set up usage via message_start
        process(
            "message_start",
            r#"{"message":{"usage":{"input_tokens":100,"cache_read_input_tokens":10,"cache_creation_input_tokens":5}}}"#,
            &mut state,
        );

        // Set up stop reason + output tokens
        process(
            "message_delta",
            r#"{"delta":{"stop_reason":"end_turn"},"usage":{"output_tokens":50}}"#,
            &mut state,
        );

        // message_stop triggers Done
        let (events, done) = process("message_stop", r"{}", &mut state);
        assert!(done);
        assert_eq!(events.len(), 1);
        match &events[0] {
            AssistantMessageEvent::Done {
                stop_reason, usage, ..
            } => {
                assert_eq!(*stop_reason, StopReason::Stop);
                assert_eq!(usage.input, 100);
                assert_eq!(usage.output, 50);
                assert_eq!(usage.cache_read, 10);
                assert_eq!(usage.cache_write, 5);
                assert_eq!(usage.total, 165);
            }
            other => panic!("expected Done, got {other:?}"),
        }
    }

    #[test]
    fn error_event_closes_open_blocks() {
        let mut state = new_state();

        // Open a text block
        process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );

        // SSE error arrives before content_block_stop
        let (events, done) = process(
            "error",
            r#"{"error":{"type":"overloaded_error","message":"Server overloaded"}}"#,
            &mut state,
        );
        assert!(done);
        // Should have: TextEnd (from finalize) + error event
        assert_eq!(events.len(), 2);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 0 }
        ));
    }

    #[test]
    fn malformed_message_start_is_terminal_protocol_error() {
        let mut state = new_state();

        let (events, done) = process("message_start", "{", &mut state);

        assert!(done);
        assert_eq!(events.len(), 1);
        assert!(matches!(
            &events[0],
            AssistantMessageEvent::Error {
                stop_reason: StopReason::Error,
                error_kind: None,
                error_message,
                ..
            } if error_message.contains("Anthropic message_start JSON parse error")
        ));
    }

    #[test]
    fn malformed_content_block_delta_finalizes_open_blocks_before_error() {
        let mut state = new_state();

        process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );

        let (events, done) = process("content_block_delta", "{", &mut state);

        assert!(done);
        assert_eq!(events.len(), 2);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 0 }
        ));
        assert!(matches!(
            &events[1],
            AssistantMessageEvent::Error {
                stop_reason: StopReason::Error,
                error_kind: None,
                error_message,
                ..
            } if error_message.contains("Anthropic content_block_delta JSON parse error")
        ));
    }

    #[test]
    fn malformed_error_event_is_non_retryable_parse_error() {
        let mut state = new_state();

        process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );

        let (events, done) = process("error", "{", &mut state);

        assert!(done);
        assert_eq!(events.len(), 2);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 0 }
        ));
        assert!(matches!(
            &events[1],
            AssistantMessageEvent::Error {
                stop_reason: StopReason::Error,
                error_kind: None,
                error_message,
                ..
            } if error_message.contains("Anthropic error JSON parse error")
        ));
    }

    #[test]
    fn tool_use_stop_reason_mapping() {
        let mut state = new_state();

        process(
            "message_delta",
            r#"{"delta":{"stop_reason":"tool_use"},"usage":{"output_tokens":10}}"#,
            &mut state,
        );

        let (events, done) = process("message_stop", r"{}", &mut state);
        assert!(done);
        match &events[0] {
            AssistantMessageEvent::Done { stop_reason, .. } => {
                assert_eq!(*stop_reason, StopReason::ToolUse);
            }
            other => panic!("expected Done, got {other:?}"),
        }
    }

    #[test]
    fn open_blocks_drained_on_message_stop() {
        let mut state = new_state();

        // Open text and tool call, don't close them
        process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );
        process(
            "content_block_start",
            r#"{"index":1,"content_block":{"type":"tool_use","id":"tc_1","name":"bash"}}"#,
            &mut state,
        );

        // message_stop should finalize both open blocks
        let (events, done) = process("message_stop", r"{}", &mut state);
        assert!(done);
        // TextEnd + ToolCallEnd + Done = 3 events
        assert_eq!(events.len(), 3);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 0 }
        ));
        assert!(matches!(
            events[1],
            AssistantMessageEvent::ToolCallEnd { content_index: 1 }
        ));
        assert!(matches!(events[2], AssistantMessageEvent::Done { .. }));
    }

    #[test]
    fn mixed_text_and_tool_call_stream() {
        let mut state = new_state();

        // Text block
        process(
            "content_block_start",
            r#"{"index":0,"content_block":{"type":"text","text":""}}"#,
            &mut state,
        );
        process(
            "content_block_delta",
            r#"{"index":0,"delta":{"type":"text_delta","text":"I will run a command."}}"#,
            &mut state,
        );
        let (events, _) = process("content_block_stop", r#"{"index":0}"#, &mut state);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::TextEnd { content_index: 0 }
        ));

        // Tool call block
        process(
            "content_block_start",
            r#"{"index":1,"content_block":{"type":"tool_use","id":"call_abc","name":"bash"}}"#,
            &mut state,
        );
        process(
            "content_block_delta",
            r#"{"index":1,"delta":{"type":"input_json_delta","partial_json":"{\"cmd\":\"ls\"}"}}"#,
            &mut state,
        );
        let (events, _) = process("content_block_stop", r#"{"index":1}"#, &mut state);
        assert!(matches!(
            events[0],
            AssistantMessageEvent::ToolCallEnd { content_index: 1 }
        ));

        // Done
        process(
            "message_delta",
            r#"{"delta":{"stop_reason":"tool_use"},"usage":{"output_tokens":20}}"#,
            &mut state,
        );
        let (events, done) = process("message_stop", r"{}", &mut state);
        assert!(done);
        assert_eq!(events.len(), 1);
        assert!(matches!(
            &events[0],
            AssistantMessageEvent::Done {
                stop_reason: StopReason::ToolUse,
                ..
            }
        ));
    }

    #[test]
    fn trailing_slash_stripped() {
        let anthropic = AnthropicStreamFn::new("https://api.anthropic.com/", "key");
        assert_eq!(anthropic.base.base_url, "https://api.anthropic.com");
    }

    #[test]
    fn no_trailing_slash_unchanged() {
        let anthropic = AnthropicStreamFn::new("https://api.anthropic.com", "key");
        assert_eq!(anthropic.base.base_url, "https://api.anthropic.com");
    }

    // ── Issue #619: incomplete tool_use sanitization ─────────────────────

    /// Regression for #619: after the loop-level scrub runs, an assistant
    /// message that originally carried `arguments: Null` with `partial_json`
    /// set must serialize with `input: {}` so the Anthropic API accepts the
    /// replayed history on the next turn.
    #[test]
    fn convert_messages_sanitized_tool_use_becomes_empty_object_input() {
        use swink_agent::AssistantMessage;

        let mut assistant = AssistantMessage {
            content: vec![ContentBlock::ToolCall {
                id: "toolu_01".into(),
                name: "read_file".into(),
                // Simulate an incomplete-tool-use block surviving Done(Length):
                arguments: Value::Null,
                partial_json: Some(r#"{"path": "/tm"#.into()),
            }],
            provider: "anthropic".into(),
            model_id: "claude-sonnet-4-6".into(),
            usage: Usage::default(),
            cost: Cost::default(),
            stop_reason: StopReason::Length,
            error_message: None,
            error_kind: None,
            timestamp: 0,
            cache_hint: None,
        };

        // Loop-level scrub runs before the adapter sees the history.
        swink_agent::sanitize_incomplete_tool_calls(&mut assistant);

        let messages = vec![AgentMessage::Llm(LlmMessage::Assistant(assistant))];
        let (_system, converted) = convert_messages(&messages, "");

        assert_eq!(converted.len(), 1);
        assert_eq!(converted[0].role, "assistant");
        let json = serde_json::to_value(&converted[0]).unwrap();
        let block = &json["content"][0];
        assert_eq!(block["type"], "tool_use");
        assert_eq!(block["id"], "toolu_01");
        assert_eq!(block["name"], "read_file");
        // The critical assertion: input is a valid empty JSON object, NOT null.
        assert!(
            block["input"].is_object(),
            "input must be a JSON object, got {:?}",
            block["input"]
        );
        assert_eq!(block["input"].as_object().unwrap().len(), 0);
    }
}