llama-gguf 0.14.0

A high-performance Rust implementation of llama.cpp - LLM inference engine with full GGUF support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
//! High-level inference engine for llama-gguf.
//!
//! Provides [`Engine`] and [`ChatEngine`] for easy model loading and text generation
//! without needing to manually wire together GGUF files, tokenizers, backends, and samplers.
//!
//! # Example
//!
//! ```no_run
//! use llama_gguf::engine::{Engine, EngineConfig};
//!
//! let engine = Engine::load(EngineConfig {
//!     model_path: "model.gguf".into(),
//!     ..Default::default()
//! }).unwrap();
//!
//! let response = engine.generate("What is a tort?", 256).unwrap();
//! println!("{}", response);
//! ```

use std::sync::Arc;

use crate::backend::Backend;
use crate::gguf::GgufFile;
use crate::model::{
    EmbeddingConfig, EmbeddingExtractor, InferenceContext, Model, ModelConfig, ModelLoader,
};
use crate::sampling::{Sampler, SamplerConfig};
use crate::tokenizer::Tokenizer;

// ============================================================================
// Error type
// ============================================================================

/// Errors that can occur during engine operations.
#[derive(thiserror::Error, Debug)]
pub enum EngineError {
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),

    #[error("GGUF error: {0}")]
    Gguf(#[from] crate::gguf::GgufError),

    #[error("Model error: {0}")]
    Model(#[from] crate::model::ModelError),

    #[error("Tokenizer error: {0}")]
    Tokenizer(#[from] crate::tokenizer::TokenizerError),

    #[error("Embedding error: {0}")]
    Embedding(#[from] crate::model::EmbeddingError),

    #[error("Engine error: {0}")]
    Other(String),
}

// ============================================================================
// Configuration
// ============================================================================

/// Configuration for creating an [`Engine`].
///
/// Can be constructed manually, from a [`Config`](crate::config::Config) TOML file,
/// or with [`Default::default()`].
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(default)]
pub struct EngineConfig {
    /// Path to the model file (GGUF or ONNX).
    pub model_path: String,

    /// Optional path to a tokenizer file.
    ///
    /// For ONNX models, this defaults to `tokenizer.json` in the same directory.
    /// Can also point to a GGUF file to extract just the tokenizer.
    pub tokenizer_path: Option<String>,

    /// Temperature for sampling (0.0 = greedy, higher = more random).
    pub temperature: f32,

    /// Top-K sampling: only consider the K most likely tokens (0 = disabled).
    pub top_k: usize,

    /// Top-P (nucleus) sampling: only consider tokens with cumulative probability <= p.
    pub top_p: f32,

    /// Repetition penalty (1.0 = no penalty).
    pub repeat_penalty: f32,

    /// Default maximum tokens to generate.
    pub max_tokens: usize,

    /// Random seed for reproducible generation (None = random).
    pub seed: Option<u64>,

    /// Use GPU acceleration (requires `cuda` feature).
    pub use_gpu: bool,

    /// Maximum context length override.
    ///
    /// If set, caps the model's context length (and thus KV cache size).
    /// The model's native `max_seq_len` from GGUF metadata can be very large
    /// (e.g. 32768) which may exhaust GPU memory for the KV cache alone.
    /// Set this to a smaller value (e.g. 2048) to reduce VRAM usage.
    /// If `None` or `0`, uses the model's native `max_seq_len`.
    pub max_context_len: Option<usize>,

    /// Optional Hailo accelerator configuration.
    /// When set, enables Hailo NPU inference in the GPU selection chain.
    #[cfg(feature = "hailo")]
    pub hailo_config: Option<crate::backend::hailo::HailoConfig>,

    /// KV cache type for memory-efficient inference.
    pub kv_cache_type: crate::model::KVCacheType,
}

impl Default for EngineConfig {
    fn default() -> Self {
        Self {
            model_path: String::new(),
            tokenizer_path: None,
            temperature: 0.7,
            top_k: 40,
            top_p: 0.95,
            repeat_penalty: 1.1,
            max_tokens: 512,
            seed: None,
            use_gpu: false,
            max_context_len: None,
            #[cfg(feature = "hailo")]
            hailo_config: None,
            kv_cache_type: crate::model::KVCacheType::F32,
        }
    }
}

impl EngineConfig {
    /// Load an `EngineConfig` from a [`Config`](crate::config::Config) TOML file.
    ///
    /// This is a convenience method that loads the full config and extracts
    /// the engine-relevant sections.
    pub fn from_config_file(
        path: impl AsRef<std::path::Path>,
    ) -> Result<Self, crate::config::ConfigError> {
        let config = crate::config::Config::from_file(path)?;
        Ok(config.to_engine_config(None))
    }

    /// Load an `EngineConfig` using the full config precedence chain.
    ///
    /// Searches default config file locations, then applies environment
    /// variable overrides.
    pub fn from_config(
        config_path: Option<impl AsRef<std::path::Path>>,
    ) -> Result<Self, crate::config::ConfigError> {
        let config = crate::config::Config::load(config_path)?;
        Ok(config.to_engine_config(None))
    }
}

// ============================================================================
// Chat template detection
// ============================================================================

/// Detected chat template format from the GGUF metadata.
#[derive(Debug, Clone, PartialEq)]
pub enum ChatTemplate {
    /// `<|user|>\n...<|assistant|>\n` format
    UserAssistant,
    /// ChatML: `<|im_start|>user\n...<|im_end|>\n<|im_start|>assistant\n`
    ChatML,
    /// Llama-2: `[INST] ... [/INST]`
    Llama2,
    /// No template detected, use raw text.
    None,
}

impl ChatTemplate {
    /// Detect chat template from model type string (for ONNX models without GGUF metadata).
    pub fn detect_from_model_type(model_type: Option<&str>) -> Self {
        match model_type {
            Some("qwen2" | "qwen") => ChatTemplate::ChatML,
            Some("llama" | "codellama") => ChatTemplate::Llama2,
            Some("mistral" | "mixtral") => ChatTemplate::Llama2,
            _ => ChatTemplate::None,
        }
    }

    /// Detect chat template from GGUF metadata.
    pub fn detect(gguf: &GgufFile) -> Self {
        if let Some(template) = gguf.data.get_string("tokenizer.chat_template") {
            if template.contains("<|user|>") {
                ChatTemplate::UserAssistant
            } else if template.contains("<|im_start|>") {
                ChatTemplate::ChatML
            } else if template.contains("[INST]") {
                ChatTemplate::Llama2
            } else {
                ChatTemplate::None
            }
        } else if let Some(arch) = gguf.data.get_string("general.architecture") {
            match arch.to_lowercase().as_str() {
                "qwen2" | "qwen" | "qwen3" | "qwen35" | "qwen3moe" | "qwen3next" => {
                    ChatTemplate::ChatML
                }
                _ => ChatTemplate::None,
            }
        } else {
            ChatTemplate::None
        }
    }

    /// Wrap a raw prompt in the appropriate chat format.
    pub fn wrap_prompt(&self, prompt: &str) -> String {
        // If prompt already contains chat tokens, return as-is
        if prompt.contains("<|user|>")
            || prompt.contains("<|im_start|>")
            || prompt.contains("[INST]")
        {
            return prompt.to_string();
        }

        match self {
            ChatTemplate::UserAssistant => {
                format!("<|user|>\n{}<|assistant|>\n", prompt)
            }
            ChatTemplate::ChatML => {
                format!(
                    "<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
                    prompt
                )
            }
            ChatTemplate::Llama2 => {
                format!("[INST] {} [/INST]", prompt)
            }
            ChatTemplate::None => prompt.to_string(),
        }
    }

    /// Format a chat message with system prompt for the first turn.
    pub fn format_first_turn(&self, system_prompt: &str, user_message: &str) -> String {
        match self {
            ChatTemplate::UserAssistant => {
                format!(
                    "<|system|>\n{}<|user|>\n{}<|assistant|>\n",
                    system_prompt, user_message
                )
            }
            ChatTemplate::ChatML => {
                format!(
                    "<|im_start|>system\n{}<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
                    system_prompt, user_message
                )
            }
            ChatTemplate::Llama2 => {
                format!(
                    "[INST] <<SYS>>\n{}\n<</SYS>>\n\n{} [/INST]",
                    system_prompt, user_message
                )
            }
            ChatTemplate::None => {
                format!(
                    "System: {}\n\nUser: {}\n\nAssistant:",
                    system_prompt, user_message
                )
            }
        }
    }

    /// Format a continuation turn (not the first message).
    pub fn format_continuation(&self, user_message: &str) -> String {
        match self {
            ChatTemplate::UserAssistant => {
                format!("<|user|>\n{}<|assistant|>\n", user_message)
            }
            ChatTemplate::ChatML => {
                format!(
                    "<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
                    user_message
                )
            }
            ChatTemplate::Llama2 => {
                format!(" [INST] {} [/INST]", user_message)
            }
            ChatTemplate::None => {
                format!("\n\nUser: {}\n\nAssistant:", user_message)
            }
        }
    }

    /// Patterns that indicate the model is trying to generate a new user turn
    /// (i.e., the response is complete).
    pub fn stop_patterns(&self) -> &[&str] {
        match self {
            ChatTemplate::UserAssistant => &["<|user|>", "<|end|>"],
            ChatTemplate::ChatML => &["<|im_end|>", "<|im_start|>"],
            ChatTemplate::Llama2 => &["[INST]", "</s>"],
            ChatTemplate::None => &["User:", "\nUser:"],
        }
    }
}

// ============================================================================
// Engine
// ============================================================================

/// High-level inference engine that wraps model loading, tokenization, and generation.
///
/// `Engine` is `Send + Sync` safe for the immutable model and config, but the
/// mutable inference context and sampler are created per-call via internal state.
pub struct Engine {
    gguf: Option<GgufFile>,
    model: Box<dyn Model>,
    tokenizer: Tokenizer,
    config: ModelConfig,
    backend: Arc<dyn Backend>,
    sampler_config: SamplerConfig,
    chat_template: ChatTemplate,
    add_bos: bool,
    engine_config: EngineConfig,
}

impl Engine {
    /// Load a model and create an inference engine.
    ///
    /// This opens the model file (GGUF or ONNX), loads the tokenizer and model weights,
    /// and selects the appropriate backend (CPU or GPU).
    ///
    /// Format is auto-detected by file extension:
    /// - `.gguf` -- GGUF format (default)
    /// - `.onnx` -- ONNX format (requires `onnx` feature, companion config.json + tokenizer.json)
    pub fn load(config: EngineConfig) -> Result<Self, EngineError> {
        if config.model_path.is_empty() {
            return Err(EngineError::Other("model_path is required".into()));
        }

        let path = std::path::Path::new(&config.model_path);

        // Detect format by extension
        match path.extension().and_then(|e| e.to_str()) {
            #[cfg(feature = "onnx")]
            Some("onnx") => Self::load_onnx(config),
            #[cfg(not(feature = "onnx"))]
            Some("onnx") => Err(EngineError::Other(
                "ONNX support requires the `onnx` feature. Build with: cargo build --features onnx"
                    .into(),
            )),
            _ => Self::load_gguf(config),
        }
    }

    /// Load from a GGUF model file (existing path).
    fn load_gguf(config: EngineConfig) -> Result<Self, EngineError> {
        tracing::info!("Loading GGUF model from: {}", config.model_path);

        // Load GGUF file
        let gguf = GgufFile::open(&config.model_path)?;

        // Load tokenizer
        tracing::info!("Loading tokenizer...");
        let tokenizer = if let Some(ref tok_path) = config.tokenizer_path {
            // User-specified tokenizer (could be a tokenizer.json or a GGUF file)
            if tok_path.ends_with(".json") {
                Tokenizer::from_hf_json(tok_path)?
            } else {
                let tok_gguf = GgufFile::open(tok_path)?;
                Tokenizer::from_gguf(&tok_gguf)?
            }
        } else {
            Tokenizer::from_gguf(&gguf)?
        };
        tracing::info!("Vocabulary size: {}", tokenizer.vocab_size);

        // Load model weights
        tracing::info!("Loading model weights...");
        let loader = ModelLoader::load(&config.model_path)?;
        let model_config = loader.config().clone();
        tracing::info!(
            "Model: {} layers, {} heads, {} hidden dim, {} ctx",
            model_config.num_layers,
            model_config.num_heads,
            model_config.hidden_size,
            model_config.max_seq_len,
        );

        let arch = loader.architecture();

        let (backend, model): (Arc<dyn Backend>, Box<dyn Model>) = if arch.is_encoder_only() {
            tracing::info!("Detected encoder-only architecture: {:?}", arch);
            let bert_model = loader.build_bert_model()?;
            (
                Arc::new(crate::backend::cpu::CpuBackend::new()),
                Box::new(bert_model),
            )
        } else {
            let concrete_model = loader.build_model()?;

            // When CUDA is available we try to create a GpuModelWrapper first.
            // This runs the entire forward pass on GPU with pre-allocated scratch
            // buffers, eliminating ~770 host↔device transfers per token that the
            // standard Backend-trait path incurs.  If GPU-only init fails we
            // fall back to the regular CudaBackend (per-op transfers) or CPU.
            if config.use_gpu {
                Self::select_gpu_model(concrete_model, &model_config, &config)
            } else {
                (
                    Arc::new(crate::backend::cpu::CpuBackend::new()),
                    Box::new(concrete_model),
                )
            }
        };

        // Detect chat template
        let chat_template = ChatTemplate::detect(&gguf);
        tracing::info!("Chat template: {:?}", chat_template);

        // Check BOS token preference.
        // If the GGUF explicitly says add_bos_token, use that. Otherwise only
        // add BOS when the model actually defines a bos_token_id.
        let add_bos = gguf
            .data
            .get_bool("tokenizer.ggml.add_bos_token")
            .unwrap_or(tokenizer.has_explicit_bos);

        // Build sampler config
        let sampler_config = SamplerConfig {
            temperature: config.temperature,
            top_k: config.top_k,
            top_p: config.top_p,
            repeat_penalty: config.repeat_penalty,
            seed: config.seed,
            ..Default::default()
        };

        tracing::info!("Engine ready");

        Ok(Self {
            gguf: Some(gguf),
            model,
            tokenizer,
            config: model_config,
            backend,
            sampler_config,
            chat_template,
            add_bos,
            engine_config: config,
        })
    }

    /// Load from an ONNX model file with companion config.json and tokenizer.json.
    #[cfg(feature = "onnx")]
    fn load_onnx(config: EngineConfig) -> Result<Self, EngineError> {
        use crate::onnx::OnnxModelLoader;

        tracing::info!("Loading ONNX model from: {}", config.model_path);

        let model_dir = std::path::Path::new(&config.model_path)
            .parent()
            .unwrap_or(std::path::Path::new("."));

        // Load model via ONNX loader
        let loader = OnnxModelLoader::load(&config.model_path)
            .map_err(|e| EngineError::Other(format!("ONNX load error: {}", e)))?;
        let model_config = loader.config().clone();
        let hf_config = loader.hf_config().clone();

        tracing::info!(
            "Model: {} layers, {} heads, {} hidden dim, {} ctx",
            model_config.num_layers,
            model_config.num_heads,
            model_config.hidden_size,
            model_config.max_seq_len,
        );

        let concrete_model = loader
            .build_model()
            .map_err(|e| EngineError::Other(format!("ONNX model build error: {}", e)))?;

        // Load tokenizer
        tracing::info!("Loading tokenizer...");
        let tokenizer = if let Some(ref tok_path) = config.tokenizer_path {
            if tok_path.ends_with(".json") {
                Tokenizer::from_hf_json(tok_path)?
            } else {
                let tok_gguf = GgufFile::open(tok_path)?;
                Tokenizer::from_gguf(&tok_gguf)?
            }
        } else {
            // Look for tokenizer.json in the same directory
            let tokenizer_path = model_dir.join("tokenizer.json");
            if tokenizer_path.exists() {
                tracing::info!("Using tokenizer.json from: {}", tokenizer_path.display());
                Tokenizer::from_hf_json(&tokenizer_path)?
            } else {
                return Err(EngineError::Other(format!(
                    "No tokenizer found. ONNX models require a tokenizer.json file \
                     in the same directory as the model, or specify --tokenizer <path>. \
                     Looked for: {}",
                    tokenizer_path.display()
                )));
            }
        };
        tracing::info!("Vocabulary size: {}", tokenizer.vocab_size);

        // Select backend
        let backend: Arc<dyn Backend> = if config.use_gpu {
            Self::select_gpu_backend(&concrete_model)
        } else {
            Arc::new(crate::backend::cpu::CpuBackend::new())
        };

        let model: Box<dyn Model> = Box::new(concrete_model);

        // Infer chat template from model type
        let chat_template = ChatTemplate::detect_from_model_type(hf_config.model_type.as_deref());
        tracing::info!("Chat template: {:?}", chat_template);

        // For ONNX models, default to adding BOS
        let add_bos = true;

        let sampler_config = SamplerConfig {
            temperature: config.temperature,
            top_k: config.top_k,
            top_p: config.top_p,
            repeat_penalty: config.repeat_penalty,
            seed: config.seed,
            ..Default::default()
        };

        tracing::info!("Engine ready (ONNX)");

        Ok(Self {
            gguf: None,
            model,
            tokenizer,
            config: model_config,
            backend,
            sampler_config,
            chat_template,
            add_bos,
            engine_config: config,
        })
    }

    /// Select the best GPU model + backend combination.
    ///
    /// Tries GPU-only inference first (all computation on GPU, ~386× fewer
    /// host↔device transfers), then falls back to the per-op CudaBackend,
    /// then to CPU.
    #[allow(unused_variables)]
    fn select_gpu_model(
        model: crate::model::LlamaModel,
        config: &ModelConfig,
        engine_config: &EngineConfig,
    ) -> (Arc<dyn Backend>, Box<dyn Model>) {
        let gpu_seq_len = match engine_config.max_context_len {
            Some(cap) if cap > 0 && cap < config.max_seq_len => {
                tracing::info!(
                    "Capping GPU context length from {} to {} (max_context_len)",
                    config.max_seq_len,
                    cap
                );
                cap
            }
            _ => config.max_seq_len,
        };

        // Priority: CUDA > Vulkan > Metal > DX12 > per-op fallback
        // Each gpu_only engine consumes the model, so only one can be tried.

        #[cfg(feature = "cuda")]
        {
            if cudarc::driver::CudaDevice::new(0).is_ok() {
                let architecture = model.architecture();
                match crate::backend::cuda::gpu_only::GpuOnlyInference::from_model(
                    model,
                    gpu_seq_len,
                ) {
                    Ok(gpu) => {
                        tracing::info!(
                            "Using full GPU inference (attention + DeltaNet + MoE all on CUDA)"
                        );
                        let wrapper = crate::backend::GpuModelWrapper::new(
                            gpu,
                            config.clone(),
                            architecture,
                        );
                        return (
                            Arc::new(crate::backend::cpu::CpuBackend::new()),
                            Box::new(wrapper),
                        );
                    }
                    Err(e) => {
                        eprintln!("Error: CUDA GPU inference init failed: {}", e);
                        eprintln!("The model was consumed during init. Please restart without --gpu.");
                        std::process::exit(1);
                    }
                }
            } else {
                tracing::info!("No CUDA device available, trying other GPU backends...");
            }
        }

        #[cfg(feature = "vulkan")]
        {
            if crate::backend::vulkan::VulkanBackend::new().is_ok() {
                let architecture = model.architecture();
                match crate::backend::vulkan::gpu_only::VulkanGpuInference::from_model(
                    model,
                    gpu_seq_len,
                ) {
                    Ok(gpu) => {
                        tracing::info!("Using full GPU inference on Vulkan");
                        let wrapper = crate::backend::GpuModelWrapper::new(
                            gpu,
                            config.clone(),
                            architecture,
                        );
                        return (
                            Arc::new(crate::backend::cpu::CpuBackend::new()),
                            Box::new(wrapper),
                        );
                    }
                    Err(e) => {
                        eprintln!("Error: Vulkan GPU inference init failed: {}", e);
                        eprintln!("The model was consumed during init. Please restart without --gpu.");
                        std::process::exit(1);
                    }
                }
            } else {
                tracing::info!("No Vulkan device available, trying other GPU backends...");
            }
        }

        #[cfg(all(feature = "metal", target_os = "macos"))]
        {
            if crate::backend::metal::MetalBackend::new().is_ok() {
                let architecture = model.architecture();
                match crate::backend::metal::gpu_only::MetalGpuInference::from_model(
                    model,
                    gpu_seq_len,
                ) {
                    Ok(gpu) => {
                        tracing::info!("Using full GPU inference on Metal");
                        let wrapper = crate::backend::GpuModelWrapper::new(
                            gpu,
                            config.clone(),
                            architecture,
                        );
                        return (
                            Arc::new(crate::backend::cpu::CpuBackend::new()),
                            Box::new(wrapper),
                        );
                    }
                    Err(e) => {
                        eprintln!("Error: Metal GPU inference init failed: {}", e);
                        eprintln!("The model was consumed during init. Please restart without --gpu.");
                        std::process::exit(1);
                    }
                }
            } else {
                tracing::info!("No Metal device available, trying other GPU backends...");
            }
        }

        #[cfg(all(feature = "dx12", target_os = "windows"))]
        {
            if crate::backend::dx12::Dx12Backend::new().is_ok() {
                let architecture = model.architecture();
                match crate::backend::dx12::gpu_only::Dx12GpuInference::from_model(
                    model,
                    gpu_seq_len,
                ) {
                    Ok(gpu) => {
                        tracing::info!("Using full GPU inference on DX12");
                        let wrapper = crate::backend::GpuModelWrapper::new(
                            gpu,
                            config.clone(),
                            architecture,
                        );
                        return (
                            Arc::new(crate::backend::cpu::CpuBackend::new()),
                            Box::new(wrapper),
                        );
                    }
                    Err(e) => {
                        eprintln!("Error: DX12 GPU inference init failed: {}", e);
                        eprintln!("The model was consumed during init. Please restart without --gpu.");
                        std::process::exit(1);
                    }
                }
            } else {
                tracing::info!("No DX12 device available");
            }
        }

        #[cfg(feature = "hailo")]
        {
            if let Some(ref hailo_config) = engine_config.hailo_config {
                if crate::backend::hailo::context::check_device_available().is_ok() {
                    let architecture = model.architecture();
                    match crate::backend::hailo::gpu_only::HailoGpuInference::from_model(
                        model,
                        gpu_seq_len,
                        hailo_config.clone(),
                    ) {
                        Ok(gpu) => {
                            tracing::info!("Using hybrid CPU+Hailo inference");
                            let wrapper = crate::backend::GpuModelWrapper::new(
                                gpu,
                                config.clone(),
                                architecture,
                            );
                            return (
                                Arc::new(crate::backend::cpu::CpuBackend::new()),
                                Box::new(wrapper),
                            );
                        }
                        Err(e) => {
                            eprintln!("Error: Hailo inference init failed: {}", e);
                            eprintln!("The model was consumed during init. Please restart without --hailo.");
                            std::process::exit(1);
                        }
                    }
                } else {
                    tracing::info!("No Hailo device available, falling back to CPU...");
                }
            }
        }

        // No GPU-only engine available: fall back to per-op backend
        let backend = Self::select_gpu_backend(&model);
        (backend, Box::new(model))
    }

    /// Select the best available GPU backend.
    ///
    /// Priority: CUDA > Metal > DX12 > Vulkan > CPU fallback.
    #[allow(unused_variables)]
    pub fn select_gpu_backend(model: &crate::model::LlamaModel) -> Arc<dyn Backend> {
        // Try CUDA first (NVIDIA GPUs)
        #[cfg(feature = "cuda")]
        {
            match crate::backend::cuda::CudaBackend::new() {
                Ok(mut cuda) => {
                    tracing::info!("Using CUDA backend: {}", cuda.device_name());
                    if let Err(e) = cuda.load_model_weights(model) {
                        tracing::warn!("Failed to load GPU weights ({}), using quantized ops", e);
                    }
                    return Arc::new(cuda);
                }
                Err(e) => {
                    tracing::info!("CUDA not available ({}), trying Metal...", e);
                }
            }
        }

        // Try Metal (native macOS / Apple Silicon)
        #[cfg(all(feature = "metal", target_os = "macos"))]
        {
            match crate::backend::metal::MetalBackend::new() {
                Ok(metal) => {
                    tracing::info!("Using Metal backend: {}", metal.device_name());
                    return Arc::new(metal);
                }
                Err(e) => {
                    tracing::info!("Metal not available ({}), trying DX12...", e);
                }
            }
        }

        // Try DX12 (native Windows GPU compute)
        #[cfg(all(feature = "dx12", target_os = "windows"))]
        {
            match crate::backend::dx12::Dx12Backend::new() {
                Ok(dx12) => {
                    tracing::info!("Using DX12 backend: {}", dx12.device_name());
                    return Arc::new(dx12);
                }
                Err(e) => {
                    tracing::info!("DX12 not available ({}), trying Vulkan...", e);
                }
            }
        }

        // Try Vulkan (cross-platform: AMD, Intel, NVIDIA, etc.)
        #[cfg(feature = "vulkan")]
        {
            match crate::backend::vulkan::VulkanBackend::new() {
                Ok(vk) => {
                    tracing::info!("Using Vulkan backend: {}", vk.device_name());
                    return Arc::new(vk);
                }
                Err(e) => {
                    tracing::warn!("Vulkan not available ({}), falling back to CPU", e);
                }
            }
        }

        // Fallback message when no GPU backend is compiled
        #[cfg(not(any(
            feature = "cuda",
            feature = "vulkan",
            all(feature = "metal", target_os = "macos"),
            all(feature = "dx12", target_os = "windows")
        )))]
        {
            tracing::warn!(
                "No GPU backend compiled. Build with --features cuda, --features metal, --features dx12, or --features vulkan"
            );
        }

        Arc::new(crate::backend::cpu::CpuBackend::new())
    }

    /// Get the model configuration.
    pub fn model_config(&self) -> &ModelConfig {
        &self.config
    }

    /// Get the detected chat template.
    pub fn chat_template(&self) -> &ChatTemplate {
        &self.chat_template
    }

    /// Get the GGUF file metadata (None for ONNX-loaded models).
    pub fn gguf(&self) -> Option<&GgufFile> {
        self.gguf.as_ref()
    }

    /// Get the tokenizer.
    pub fn tokenizer(&self) -> &Tokenizer {
        &self.tokenizer
    }

    /// Get the engine configuration.
    pub fn engine_config(&self) -> &EngineConfig {
        &self.engine_config
    }

    /// Get the underlying model (for advanced usage like perplexity computation).
    pub fn model(&self) -> &dyn Model {
        &*self.model
    }

    /// Get the backend.
    pub fn backend(&self) -> &Arc<dyn Backend> {
        &self.backend
    }

    /// Whether to add a BOS token when encoding prompts.
    pub fn add_bos(&self) -> bool {
        self.add_bos
    }

    /// Generate text from a prompt.
    ///
    /// The prompt is automatically wrapped with the detected chat template
    /// unless it already contains chat formatting tokens.
    ///
    /// Create an InferenceContext respecting the configured KV cache type.
    pub fn create_inference_context(&self) -> InferenceContext {
        if self.engine_config.kv_cache_type.is_turboquant() {
            InferenceContext::new_with_cache_type(
                &self.config,
                self.backend.clone(),
                self.engine_config.kv_cache_type,
            )
        } else {
            self.model.create_context(self.backend.clone())
        }
    }

    /// Returns the generated text (not including the prompt).
    pub fn generate(&self, prompt: &str, max_tokens: usize) -> Result<String, EngineError> {
        let mut ctx = self.create_inference_context();
        let mut sampler = Sampler::new(self.sampler_config.clone(), self.config.vocab_size);

        // Wrap prompt with chat template
        let formatted = self.chat_template.wrap_prompt(prompt);
        let mut tokens = self.tokenizer.encode(&formatted, self.add_bos)?;

        let mut output = String::new();

        for _ in 0..max_tokens {
            // Check if we hit EOS
            if let Some(&last) = tokens.last()
                && last == self.tokenizer.special_tokens.eos_token_id
            {
                break;
            }

            // Run forward pass
            let input_tokens = if ctx.position == 0 {
                &tokens[..]
            } else {
                &tokens[tokens.len() - 1..]
            };

            let logits = self.model.forward(input_tokens, &mut ctx)?;
            let next_token = sampler.sample(&logits, &tokens);

            // Check for EOS
            if next_token == self.tokenizer.special_tokens.eos_token_id {
                break;
            }

            // Decode token
            if let Ok(text) = self.tokenizer.decode(&[next_token]) {
                // Check for stop patterns
                let combined = format!("{}{}", output, text);
                let stop = self
                    .chat_template
                    .stop_patterns()
                    .iter()
                    .any(|p| combined.contains(p));

                if stop {
                    // Add only the text before the stop pattern
                    for pattern in self.chat_template.stop_patterns() {
                        if let Some(idx) = combined.find(pattern) {
                            output = combined[..idx].to_string();
                            return Ok(output.trim().to_string());
                        }
                    }
                    break;
                }

                output.push_str(&text);
            }

            tokens.push(next_token);
        }

        Ok(output.trim().to_string())
    }

    /// Generate text from a prompt, yielding tokens as they are produced.
    ///
    /// Each item in the returned iterator is a `Result<String, EngineError>` containing
    /// the decoded text of one or more tokens.
    pub fn generate_streaming(&self, prompt: &str, max_tokens: usize) -> GenerationStream<'_> {
        GenerationStream::new(self, prompt, max_tokens)
    }

    /// Extract embeddings from text using the model.
    pub fn embed(&self, text: &str) -> Result<Vec<f32>, EngineError> {
        let mut ctx = self.create_inference_context();
        let embed_config = EmbeddingConfig::default();
        let extractor = EmbeddingExtractor::new(embed_config, &self.config);
        let embedding =
            extractor.embed_text(self.model.as_ref(), &self.tokenizer, &mut ctx, text)?;
        Ok(embedding)
    }
}

// ============================================================================
// Streaming generation
// ============================================================================

/// Iterator that yields generated tokens as strings.
///
/// Created by [`Engine::generate_streaming`].
pub struct GenerationStream<'a> {
    engine: &'a Engine,
    ctx: InferenceContext,
    sampler: Sampler,
    tokens: Vec<u32>,
    remaining: usize,
    done: bool,
    accumulated: String,
    /// Pending bytes for incomplete UTF-8 sequences across token boundaries
    pending_bytes: Vec<u8>,
}

impl<'a> GenerationStream<'a> {
    fn new(engine: &'a Engine, prompt: &str, max_tokens: usize) -> Self {
        let ctx = engine.create_inference_context();
        let sampler = Sampler::new(engine.sampler_config.clone(), engine.config.vocab_size);

        let formatted = engine.chat_template.wrap_prompt(prompt);
        if std::env::var("LLAMA_DEBUG").is_ok() {
            eprintln!("[DEBUG] formatted prompt: {:?}", formatted);
            eprintln!("[DEBUG] add_bos: {}", engine.add_bos);
        }
        let tokens = engine
            .tokenizer
            .encode(&formatted, engine.add_bos)
            .unwrap_or_default();
        if std::env::var("LLAMA_DEBUG").is_ok() {
            eprintln!("[DEBUG] encoded {} tokens: {:?}", tokens.len(), &tokens[..tokens.len().min(50)]);
            for (i, &tid) in tokens.iter().enumerate() {
                if let Some(s) = engine.tokenizer.get_token(tid) {
                    eprintln!("[DEBUG]   token[{}] = {} -> {:?}", i, tid, s);
                }
            }
        }

        Self {
            engine,
            ctx,
            sampler,
            tokens,
            remaining: max_tokens,
            done: false,
            accumulated: String::new(),
            pending_bytes: Vec::new(),
        }
    }
}

impl<'a> Iterator for GenerationStream<'a> {
    type Item = Result<String, EngineError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.done || self.remaining == 0 {
            return None;
        }

        // Check EOS from last token
        if let Some(&last) = self.tokens.last()
            && last == self.engine.tokenizer.special_tokens.eos_token_id
        {
            self.done = true;
            return None;
        }

        // Forward pass
        let input_tokens = if self.ctx.position == 0 {
            &self.tokens[..]
        } else {
            &self.tokens[self.tokens.len() - 1..]
        };

        let logits = match self.engine.model.forward(input_tokens, &mut self.ctx) {
            Ok(l) => l,
            Err(e) => {
                self.done = true;
                return Some(Err(EngineError::Model(e)));
            }
        };

        let next_token = self.sampler.sample(&logits, &self.tokens);

        if std::env::var("LLAMA_DEBUG_LOGITS").is_ok() {
            let logit_data = logits.as_f32().unwrap();
            let mut indexed: Vec<(usize, f32)> = logit_data.iter().copied().enumerate().collect();
            indexed.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
            let step = self.tokens.len();
            eprint!("[LOGIT] step={} top5:", step);
            for (id, score) in indexed.iter().take(5) {
                let tok_str = self.engine.tokenizer.get_token(*id as u32).unwrap_or_default();
                eprint!(" {}({:.2})={:?}", id, score, tok_str);
            }
            let chosen_str = self.engine.tokenizer.get_token(next_token).unwrap_or_default();
            eprintln!(" → chosen={}({:?})", next_token, chosen_str);
        }

        // Check EOS
        if next_token == self.engine.tokenizer.special_tokens.eos_token_id {
            self.done = true;
            return None;
        }

        // Decode (streaming-aware: accumulates incomplete UTF-8 across tokens)
        match self
            .engine
            .tokenizer
            .decode_token_streaming(next_token, &mut self.pending_bytes)
        {
            Ok(text) => {
                self.tokens.push(next_token);
                self.remaining -= 1;

                if text.is_empty() {
                    // Pending bytes not yet forming valid UTF-8; recurse to next token
                    return self.next();
                }

                // Check stop patterns
                let combined = format!("{}{}", self.accumulated, text);
                for pattern in self.engine.chat_template.stop_patterns() {
                    if combined.contains(pattern) {
                        self.done = true;
                        if let Some(idx) = combined.find(pattern) {
                            if idx > self.accumulated.len() {
                                let before = &combined[self.accumulated.len()..idx];
                                return Some(Ok(before.to_string()));
                            }
                        }
                        return None;
                    }
                }

                self.accumulated.push_str(&text);
                Some(Ok(text))
            }
            Err(e) => {
                self.tokens.push(next_token);
                self.remaining -= 1;
                Some(Err(EngineError::Tokenizer(e)))
            }
        }
    }
}

// ============================================================================
// ChatEngine
// ============================================================================

/// High-level chat engine that maintains conversation state.
///
/// Wraps an [`Engine`] with conversation history, context management,
/// and automatic chat template formatting.
pub struct ChatEngine {
    engine: Engine,
    system_prompt: String,
    conversation_tokens: Vec<u32>,
    ctx: InferenceContext,
    sampler: Sampler,
    is_first_turn: bool,
}

impl ChatEngine {
    /// Create a new chat engine from a loaded [`Engine`].
    pub fn new(engine: Engine, system_prompt: Option<String>) -> Self {
        let ctx = engine.create_inference_context();
        let sampler = Sampler::new(engine.sampler_config.clone(), engine.config.vocab_size);

        Self {
            system_prompt: system_prompt
                .unwrap_or_else(|| "You are a helpful AI assistant.".to_string()),
            conversation_tokens: Vec::new(),
            ctx,
            sampler,
            is_first_turn: true,
            engine,
        }
    }

    /// Get a reference to the underlying engine.
    pub fn engine(&self) -> &Engine {
        &self.engine
    }

    /// Get the current system prompt.
    pub fn system_prompt(&self) -> &str {
        &self.system_prompt
    }

    /// Get the number of tokens in the current conversation context.
    pub fn context_len(&self) -> usize {
        self.conversation_tokens.len()
    }

    /// Send a message and get the full response.
    pub fn chat(&mut self, message: &str) -> Result<String, EngineError> {
        let max_tokens = self.engine.engine_config.max_tokens;

        // Format the message using the chat template
        let formatted = if self.is_first_turn {
            self.engine
                .chat_template
                .format_first_turn(&self.system_prompt, message)
        } else {
            self.engine.chat_template.format_continuation(message)
        };

        // Encode new tokens
        let new_tokens = self
            .engine
            .tokenizer
            .encode(&formatted, self.is_first_turn && self.engine.add_bos)?;

        // Check context length and trim if needed
        self.ensure_context_space(new_tokens.len(), max_tokens);

        // Add new tokens to conversation
        self.conversation_tokens.extend(&new_tokens);

        // Batch-prefill: process ALL prompt tokens in a single forward pass.
        // This is dramatically faster than one-at-a-time, especially on GPU
        // backends where kernel launch overhead dominates for tiny batches.
        let eos_id = self.engine.tokenizer.special_tokens.eos_token_id;
        let mut response_text = String::new();

        if new_tokens.is_empty() {
            self.is_first_turn = false;
            return Ok(response_text);
        }

        let prefill_logits = self.engine.model.forward(&new_tokens, &mut self.ctx)?;
        let first_token = self.sampler.sample(&prefill_logits, &self.conversation_tokens);

        if first_token == eos_id {
            self.is_first_turn = false;
            return Ok(response_text);
        }

        if let Ok(text) = self.engine.tokenizer.decode(&[first_token]) {
            response_text.push_str(&text);
        }
        self.conversation_tokens.push(first_token);

        // Autoregressive decode for the remaining tokens
        for _ in 1..max_tokens {
            // Check stop patterns
            let should_stop = self
                .engine
                .chat_template
                .stop_patterns()
                .iter()
                .any(|p| response_text.contains(p));
            if should_stop {
                for pattern in self.engine.chat_template.stop_patterns() {
                    if let Some(idx) = response_text.find(pattern) {
                        response_text.truncate(idx);
                        break;
                    }
                }
                break;
            }

            let last_token = *self
                .conversation_tokens
                .last()
                .unwrap_or(&self.engine.tokenizer.special_tokens.bos_token_id);

            let logits = self.engine.model.forward(&[last_token], &mut self.ctx)?;
            let next_token = self.sampler.sample(&logits, &self.conversation_tokens);

            if next_token == eos_id {
                break;
            }

            if let Ok(text) = self.engine.tokenizer.decode(&[next_token]) {
                response_text.push_str(&text);
            }

            self.conversation_tokens.push(next_token);
        }

        self.is_first_turn = false;
        Ok(response_text.trim().to_string())
    }

    /// Send a message and get the full response, with a prefix injected as the
    /// start of the assistant's reply. The prefix tokens are prefilled alongside
    /// the prompt tokens so the model continues from the prefix text. The prefix
    /// is prepended to the returned string.
    ///
    /// This is useful for forcing the model to start with a particular token
    /// sequence (e.g. `{` for JSON output).
    pub fn chat_with_prefix(
        &mut self,
        message: &str,
        prefix: &str,
    ) -> Result<String, EngineError> {
        let max_tokens = self.engine.engine_config.max_tokens;

        let formatted = if self.is_first_turn {
            self.engine
                .chat_template
                .format_first_turn(&self.system_prompt, message)
        } else {
            self.engine.chat_template.format_continuation(message)
        };

        // Append prefix to the formatted prompt so it becomes part of the prefill
        let formatted_with_prefix = format!("{}{}", formatted, prefix);

        let new_tokens = self
            .engine
            .tokenizer
            .encode(&formatted_with_prefix, self.is_first_turn && self.engine.add_bos)?;

        self.ensure_context_space(new_tokens.len(), max_tokens);
        self.conversation_tokens.extend(&new_tokens);

        let eos_id = self.engine.tokenizer.special_tokens.eos_token_id;
        let mut response_text = prefix.to_string();

        if new_tokens.is_empty() {
            self.is_first_turn = false;
            return Ok(response_text);
        }

        let prefill_logits = self.engine.model.forward(&new_tokens, &mut self.ctx)?;
        let first_token = self.sampler.sample(&prefill_logits, &self.conversation_tokens);

        if first_token == eos_id {
            self.is_first_turn = false;
            return Ok(response_text);
        }

        if let Ok(text) = self.engine.tokenizer.decode(&[first_token]) {
            response_text.push_str(&text);
        }
        self.conversation_tokens.push(first_token);

        for _ in 1..max_tokens {
            let should_stop = self
                .engine
                .chat_template
                .stop_patterns()
                .iter()
                .any(|p| response_text.contains(p));
            if should_stop {
                for pattern in self.engine.chat_template.stop_patterns() {
                    if let Some(idx) = response_text.find(pattern) {
                        response_text.truncate(idx);
                        break;
                    }
                }
                break;
            }

            let last_token = *self
                .conversation_tokens
                .last()
                .unwrap_or(&self.engine.tokenizer.special_tokens.bos_token_id);

            let logits = self.engine.model.forward(&[last_token], &mut self.ctx)?;
            let next_token = self.sampler.sample(&logits, &self.conversation_tokens);

            if next_token == eos_id {
                break;
            }

            if let Ok(text) = self.engine.tokenizer.decode(&[next_token]) {
                response_text.push_str(&text);
            }

            self.conversation_tokens.push(next_token);
        }

        self.is_first_turn = false;
        Ok(response_text.trim().to_string())
    }

    /// Send a message and stream the response token by token.
    ///
    /// Returns an iterator of `Result<String, EngineError>` where each item is
    /// a decoded token chunk.
    pub fn chat_streaming(&mut self, message: &str) -> Result<ChatStream<'_>, EngineError> {
        let max_tokens = self.engine.engine_config.max_tokens;

        // Format the message
        let formatted = if self.is_first_turn {
            self.engine
                .chat_template
                .format_first_turn(&self.system_prompt, message)
        } else {
            self.engine.chat_template.format_continuation(message)
        };

        // Encode new tokens
        let new_tokens = self
            .engine
            .tokenizer
            .encode(&formatted, self.is_first_turn && self.engine.add_bos)?;

        // Ensure context space
        self.ensure_context_space(new_tokens.len(), max_tokens);

        // Add new tokens to conversation
        self.conversation_tokens.extend(&new_tokens);

        // Batch-prefill all prompt tokens in a single forward pass.
        let prefill_logits = if !new_tokens.is_empty() {
            Some(self.engine.model.forward(&new_tokens, &mut self.ctx)?)
        } else {
            None
        };

        self.is_first_turn = false;

        Ok(ChatStream {
            chat_engine: self,
            remaining: max_tokens,
            done: false,
            accumulated: String::new(),
            prefill_logits,
        })
    }

    /// Clear conversation history and reset context.
    pub fn clear_history(&mut self) {
        self.conversation_tokens.clear();
        self.ctx.reset();
        self.sampler.reset();
        self.is_first_turn = true;
    }

    /// Ensure there's enough space in the context for new tokens + generation.
    fn ensure_context_space(&mut self, new_token_count: usize, max_gen_tokens: usize) {
        let total_len = self.conversation_tokens.len() + new_token_count + max_gen_tokens;

        if total_len > self.engine.config.max_seq_len {
            let excess = total_len - self.engine.config.max_seq_len + 100;

            if excess >= self.conversation_tokens.len() {
                tracing::warn!("Context full, resetting conversation");
                self.conversation_tokens.clear();
                self.ctx.reset();
            } else {
                tracing::info!("Trimming {} tokens from context", excess);
                self.conversation_tokens = self.conversation_tokens[excess..].to_vec();
                self.ctx.kv_cache.shift_left(excess);
                self.ctx.position = self.ctx.position.saturating_sub(excess);
            }
        }
    }
}

// ============================================================================
// Chat streaming
// ============================================================================

/// Iterator that yields chat response tokens as strings.
///
/// Created by [`ChatEngine::chat_streaming`].
pub struct ChatStream<'a> {
    chat_engine: &'a mut ChatEngine,
    remaining: usize,
    done: bool,
    accumulated: String,
    /// Logits from the batched prefill pass; consumed on the first `next()` call.
    prefill_logits: Option<crate::tensor::Tensor>,
}

impl<'a> Iterator for ChatStream<'a> {
    type Item = Result<String, EngineError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.done || self.remaining == 0 {
            return None;
        }

        // Check stop patterns on accumulated text
        for pattern in self.chat_engine.engine.chat_template.stop_patterns() {
            if self.accumulated.contains(pattern) {
                self.done = true;
                return None;
            }
        }

        // On the first call, use the prefill logits (no extra forward pass).
        // On subsequent calls, run the standard single-token decode.
        let logits = if let Some(prefill) = self.prefill_logits.take() {
            prefill
        } else {
            let last_token = *self.chat_engine.conversation_tokens.last().unwrap_or(
                &self
                    .chat_engine
                    .engine
                    .tokenizer
                    .special_tokens
                    .bos_token_id,
            );

            match self
                .chat_engine
                .engine
                .model
                .forward(&[last_token], &mut self.chat_engine.ctx)
            {
                Ok(l) => l,
                Err(e) => {
                    self.done = true;
                    return Some(Err(EngineError::Model(e)));
                }
            }
        };

        let next_token = self
            .chat_engine
            .sampler
            .sample(&logits, &self.chat_engine.conversation_tokens);

        // Check for EOS
        if next_token
            == self
                .chat_engine
                .engine
                .tokenizer
                .special_tokens
                .eos_token_id
        {
            self.done = true;
            return None;
        }

        match self.chat_engine.engine.tokenizer.decode(&[next_token]) {
            Ok(text) => {
                // Check stop patterns in accumulated + new text
                let combined = format!("{}{}", self.accumulated, text);
                for pattern in self.chat_engine.engine.chat_template.stop_patterns() {
                    if combined.contains(pattern) {
                        self.done = true;
                        if let Some(idx) = combined.find(pattern) {
                            let before = &combined[self.accumulated.len()..idx];
                            self.chat_engine.conversation_tokens.push(next_token);
                            if !before.is_empty() {
                                return Some(Ok(before.to_string()));
                            }
                        }
                        return None;
                    }
                }

                self.accumulated.push_str(&text);
                self.chat_engine.conversation_tokens.push(next_token);
                self.remaining -= 1;
                Some(Ok(text))
            }
            Err(e) => {
                self.chat_engine.conversation_tokens.push(next_token);
                self.remaining -= 1;
                Some(Err(EngineError::Tokenizer(e)))
            }
        }
    }
}