heliosdb-nano 3.30.0

PostgreSQL-compatible embedded database with TDE + ZKE encryption, HNSW vector search, Product Quantization, git-like branching, time-travel queries, materialized views, row-level security, and 50+ enterprise features
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
//! Natural Language to SQL Query Engine
//!
//! Converts natural language questions into SQL queries using LLM providers.
//! Features:
//! - Schema-aware SQL generation
//! - Query validation and sandboxing
//! - Result explanation
//! - Query history and caching
//! - Multi-dialect support

use once_cell::sync::Lazy;
use regex::Regex;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::{Arc, RwLock};
use std::time::{Duration, Instant};

use super::providers::{
    ChatMessage, LlmProvider, LlmRequest, MessageRole, ProviderError, ProviderResult,
};
use super::sandbox::{QuerySandbox, SandboxConfig, SandboxResult};

// ============================================================================
// Static Lazy Regex Patterns
// ============================================================================

// SAFETY: All regex patterns below are compile-time string literals that are known to be valid.
// expect() is appropriate here because invalid patterns represent programming errors, not runtime failures.

/// Pattern to extract SQL from LLM response
#[allow(clippy::expect_used)]
static RE_SQL_BLOCK: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"```(?:sql)?\s*([\s\S]*?)```").expect("Invalid SQL_BLOCK regex")
});

/// Pattern to match SELECT statement
#[allow(clippy::expect_used)]
static RE_SELECT: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"(?is)(SELECT\s+[\s\S]+?)(?:;|$)").expect("Invalid SELECT regex")
});

/// Pattern to detect aggregation keywords
#[allow(clippy::expect_used)]
static RE_AGGREGATION: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"(?i)\b(count|sum|avg|average|total|minimum|maximum|min|max|group)\b")
        .expect("Invalid AGGREGATION regex")
});

/// Pattern to detect comparison keywords
#[allow(clippy::expect_used)]
static RE_COMPARISON: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"(?i)\b(greater|less|more|fewer|equal|between|above|below|at least|at most)\b")
        .expect("Invalid COMPARISON regex")
});

/// Pattern to detect time-related keywords
#[allow(clippy::expect_used)]
static RE_TIME: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"(?i)\b(today|yesterday|last|this|next|week|month|year|recent|latest|oldest)\b")
        .expect("Invalid TIME regex")
});

/// Pattern to detect sorting keywords
#[allow(clippy::expect_used)]
static RE_SORTING: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"(?i)\b(top|bottom|first|last|highest|lowest|best|worst|most|least|order)\b")
        .expect("Invalid SORTING regex")
});

/// Pattern to detect limit keywords
#[allow(clippy::expect_used)]
static RE_LIMIT: Lazy<Regex> = Lazy::new(|| {
    Regex::new(r"(?i)\b(top\s+\d+|\d+\s+(?:results?|rows?|records?)|limit|first\s+\d+)\b")
        .expect("Invalid LIMIT regex")
});

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

/// NL Query engine configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NlQueryConfig {
    /// SQL dialect to generate
    #[serde(default = "default_dialect")]
    pub dialect: SqlDialect,
    /// Maximum results to return
    #[serde(default = "default_max_results")]
    pub max_results: usize,
    /// Whether to validate generated SQL
    #[serde(default = "default_true")]
    pub validate_sql: bool,
    /// Sandbox configuration for validation
    pub sandbox_config: Option<SandboxConfig>,
    /// Whether to explain results
    #[serde(default = "default_true")]
    pub explain_results: bool,
    /// Cache TTL in seconds
    #[serde(default = "default_cache_ttl")]
    pub cache_ttl_secs: u64,
    /// Maximum cache entries
    #[serde(default = "default_cache_size")]
    pub max_cache_entries: usize,
    /// LLM temperature for SQL generation
    #[serde(default = "default_temperature")]
    pub temperature: f32,
    /// Model to use (overrides provider default)
    pub model: Option<String>,
    /// Custom system prompt
    pub system_prompt: Option<String>,
    /// Enable query suggestions
    #[serde(default = "default_true")]
    pub enable_suggestions: bool,
    /// Enable auto-correction on syntax errors
    #[serde(default = "default_true")]
    pub auto_correct: bool,
    /// Maximum correction attempts
    #[serde(default = "default_max_corrections")]
    pub max_correction_attempts: usize,
}

fn default_dialect() -> SqlDialect {
    SqlDialect::PostgreSQL
}

fn default_max_results() -> usize {
    1000
}

fn default_true() -> bool {
    true
}

fn default_cache_ttl() -> u64 {
    300
}

fn default_cache_size() -> usize {
    1000
}

fn default_temperature() -> f32 {
    0.1
}

fn default_max_corrections() -> usize {
    2
}

impl Default for NlQueryConfig {
    fn default() -> Self {
        Self {
            dialect: SqlDialect::PostgreSQL,
            max_results: 1000,
            validate_sql: true,
            sandbox_config: None,
            explain_results: true,
            cache_ttl_secs: 300,
            max_cache_entries: 1000,
            temperature: 0.1,
            model: None,
            system_prompt: None,
            enable_suggestions: true,
            auto_correct: true,
            max_correction_attempts: 2,
        }
    }
}

/// SQL dialect
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum SqlDialect {
    PostgreSQL,
    MySQL,
    SQLite,
    MSSQL,
    Oracle,
    HeliosDB,
}

impl SqlDialect {
    /// Get dialect-specific features description
    pub fn features_hint(&self) -> &'static str {
        match self {
            SqlDialect::PostgreSQL => {
                "PostgreSQL: Use double quotes for identifiers, supports ILIKE, array types, JSONB, CTEs, window functions"
            }
            SqlDialect::MySQL => {
                "MySQL: Use backticks for identifiers, LIMIT before OFFSET, no boolean type (use TINYINT)"
            }
            SqlDialect::SQLite => {
                "SQLite: Limited types, no RIGHT JOIN, use || for string concat, LIMIT before OFFSET"
            }
            SqlDialect::MSSQL => {
                "T-SQL: TOP instead of LIMIT, GETDATE() for now, square brackets for identifiers"
            }
            SqlDialect::Oracle => {
                "Oracle: ROWNUM for limiting, NVL instead of COALESCE, SYSDATE for now"
            }
            SqlDialect::HeliosDB => {
                "HeliosDB: PostgreSQL-compatible with vector support, VECTOR type, cosine_distance function"
            }
        }
    }
}

// ============================================================================
// Request and Response Types
// ============================================================================

/// Natural language query request
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NlQueryRequest {
    /// Natural language question
    pub question: String,
    /// Schema context (tables/columns available)
    pub schema: Option<SchemaContext>,
    /// Conversation context (for follow-up questions)
    pub context: Option<ConversationContext>,
    /// Override configuration
    pub config: Option<NlQueryConfig>,
    /// User ID for audit
    pub user_id: Option<String>,
    /// Tenant ID for multi-tenancy
    pub tenant_id: Option<String>,
    /// Request metadata
    pub metadata: Option<HashMap<String, serde_json::Value>>,
}

/// Schema context for query generation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SchemaContext {
    /// Available tables
    pub tables: Vec<TableSchema>,
    /// Database name
    pub database: Option<String>,
    /// Schema name
    pub schema: Option<String>,
    /// Additional context hints
    pub hints: Option<Vec<String>>,
}

/// Table schema information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TableSchema {
    /// Table name
    pub name: String,
    /// Table description
    pub description: Option<String>,
    /// Columns
    pub columns: Vec<ColumnSchema>,
    /// Primary key columns
    pub primary_key: Option<Vec<String>>,
    /// Foreign keys
    pub foreign_keys: Option<Vec<ForeignKey>>,
    /// Indexes
    pub indexes: Option<Vec<IndexInfo>>,
    /// Sample data (for context)
    pub sample_values: Option<HashMap<String, Vec<String>>>,
    /// Row count estimate
    pub row_count: Option<usize>,
}

/// Column schema information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ColumnSchema {
    /// Column name
    pub name: String,
    /// Data type
    pub data_type: String,
    /// Whether nullable
    pub nullable: bool,
    /// Description/comment
    pub description: Option<String>,
    /// Default value
    pub default_value: Option<String>,
    /// Is primary key
    #[serde(default)]
    pub is_primary_key: bool,
    /// Is unique
    #[serde(default)]
    pub is_unique: bool,
    /// Enum values (if applicable)
    pub enum_values: Option<Vec<String>>,
}

/// Foreign key information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ForeignKey {
    /// Foreign key name
    pub name: Option<String>,
    /// Local columns
    pub columns: Vec<String>,
    /// Referenced table
    pub ref_table: String,
    /// Referenced columns
    pub ref_columns: Vec<String>,
}

/// Index information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IndexInfo {
    /// Index name
    pub name: String,
    /// Indexed columns
    pub columns: Vec<String>,
    /// Is unique
    pub unique: bool,
    /// Index type
    pub index_type: Option<String>,
}

/// Conversation context for follow-up questions
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConversationContext {
    /// Previous questions and SQL
    pub history: Vec<QueryHistoryEntry>,
    /// Entities mentioned in conversation
    pub entities: Option<HashMap<String, String>>,
    /// Session ID
    pub session_id: Option<String>,
}

/// Query history entry
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QueryHistoryEntry {
    /// Original question
    pub question: String,
    /// Generated SQL
    pub sql: String,
    /// Whether it was successful
    pub success: bool,
    /// Timestamp
    pub timestamp: Option<i64>,
}

/// Natural language query response
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NlQueryResponse {
    /// Generated SQL query
    pub sql: String,
    /// Query explanation
    pub explanation: Option<String>,
    /// Confidence score (0.0 - 1.0)
    pub confidence: f32,
    /// Query analysis
    pub analysis: QueryAnalysis,
    /// Validation result
    pub validation: Option<SandboxResult>,
    /// Suggested alternative queries
    pub suggestions: Option<Vec<QuerySuggestion>>,
    /// Warnings
    pub warnings: Vec<String>,
    /// Token usage
    pub usage: Option<TokenUsage>,
    /// Whether the query was cached
    pub cached: bool,
    /// Processing time in ms
    pub processing_time_ms: u64,
}

/// Query analysis result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QueryAnalysis {
    /// Detected intent
    pub intent: QueryIntent,
    /// Tables involved
    pub tables: Vec<String>,
    /// Columns referenced
    pub columns: Vec<String>,
    /// Filters/conditions detected
    pub filters: Vec<DetectedFilter>,
    /// Aggregations detected
    pub aggregations: Vec<String>,
    /// Sorting detected
    pub sorting: Option<SortingInfo>,
    /// Limit detected
    pub limit: Option<usize>,
    /// Time range detected
    pub time_range: Option<TimeRange>,
    /// Entities extracted
    pub entities: Vec<ExtractedEntity>,
}

/// Query intent type
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum QueryIntent {
    /// Simple data retrieval
    Select,
    /// Aggregation/summary
    Aggregate,
    /// Comparison
    Compare,
    /// Ranking/top-N
    Rank,
    /// Time-series analysis
    TimeSeries,
    /// Search/filter
    Search,
    /// Count/existence
    Count,
    /// Join/relationship
    Join,
    /// Unknown
    Unknown,
}

/// Detected filter/condition
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DetectedFilter {
    /// Column name
    pub column: String,
    /// Operator (=, >, <, LIKE, etc.)
    pub operator: String,
    /// Filter value
    pub value: String,
}

/// Sorting information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SortingInfo {
    /// Column to sort by
    pub column: String,
    /// Direction
    pub direction: SortDirection,
}

/// Sort direction
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum SortDirection {
    Asc,
    Desc,
}

/// Time range
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TimeRange {
    /// Start (if specified)
    pub start: Option<String>,
    /// End (if specified)
    pub end: Option<String>,
    /// Relative description
    pub description: String,
}

/// Extracted entity
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExtractedEntity {
    /// Entity text
    pub text: String,
    /// Entity type
    pub entity_type: String,
    /// Normalized value
    pub normalized: Option<String>,
}

/// Query suggestion
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QuerySuggestion {
    /// Suggestion text
    pub text: String,
    /// Generated SQL
    pub sql: Option<String>,
    /// Why this is suggested
    pub reason: String,
}

/// Token usage
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TokenUsage {
    pub prompt_tokens: usize,
    pub completion_tokens: usize,
    pub total_tokens: usize,
}

// ============================================================================
// Query Cache
// ============================================================================

/// Cached query entry
struct CachedQuery {
    response: NlQueryResponse,
    created: Instant,
    ttl: Duration,
}

/// Query cache
struct QueryCache {
    entries: HashMap<String, CachedQuery>,
    max_entries: usize,
}

impl QueryCache {
    fn new(max_entries: usize) -> Self {
        Self {
            entries: HashMap::new(),
            max_entries,
        }
    }

    fn get(&mut self, key: &str) -> Option<NlQueryResponse> {
        if let Some(entry) = self.entries.get(key) {
            if entry.created.elapsed() < entry.ttl {
                let mut response = entry.response.clone();
                response.cached = true;
                return Some(response);
            }
            // Expired, remove it
            self.entries.remove(key);
        }
        None
    }

    fn insert(&mut self, key: String, response: NlQueryResponse, ttl: Duration) {
        // Evict old entries if at capacity
        if self.entries.len() >= self.max_entries {
            self.evict_oldest();
        }

        self.entries.insert(
            key,
            CachedQuery {
                response,
                created: Instant::now(),
                ttl,
            },
        );
    }

    fn evict_oldest(&mut self) {
        let oldest = self
            .entries
            .iter()
            .min_by_key(|(_, v)| v.created)
            .map(|(k, _)| k.clone());

        if let Some(key) = oldest {
            self.entries.remove(&key);
        }
    }

    fn clear(&mut self) {
        self.entries.clear();
    }
}

// ============================================================================
// NL Query Engine
// ============================================================================

/// Natural Language Query Engine
pub struct NlQueryEngine {
    /// LLM provider
    llm: Arc<dyn LlmProvider>,
    /// Configuration
    config: NlQueryConfig,
    /// Query sandbox
    sandbox: QuerySandbox,
    /// Query cache
    cache: RwLock<QueryCache>,
}

impl NlQueryEngine {
    /// Create new NL Query engine
    pub fn new(llm: Arc<dyn LlmProvider>) -> Self {
        let config = NlQueryConfig::default();
        let sandbox_config = config.sandbox_config.clone().unwrap_or_default();

        Self {
            llm,
            config: config.clone(),
            sandbox: QuerySandbox::new(sandbox_config),
            cache: RwLock::new(QueryCache::new(config.max_cache_entries)),
        }
    }

    /// Create with custom configuration
    pub fn with_config(llm: Arc<dyn LlmProvider>, config: NlQueryConfig) -> Self {
        let sandbox_config = config.sandbox_config.clone().unwrap_or_default();

        Self {
            llm,
            config: config.clone(),
            sandbox: QuerySandbox::new(sandbox_config),
            cache: RwLock::new(QueryCache::new(config.max_cache_entries)),
        }
    }

    /// Convert natural language to SQL
    pub async fn translate(&self, request: NlQueryRequest) -> ProviderResult<NlQueryResponse> {
        let start = Instant::now();
        let config = request.config.as_ref().unwrap_or(&self.config);

        // Generate cache key
        let cache_key = self.generate_cache_key(&request);

        // Check cache
        if let Ok(mut cache) = self.cache.write() {
            if let Some(cached) = cache.get(&cache_key) {
                return Ok(cached);
            }
        }

        // Analyze the question
        let analysis = self.analyze_question(&request.question);

        // Build system prompt with schema context
        let system_prompt = self.build_system_prompt(&request, config);

        // Build user prompt
        let user_prompt = self.build_user_prompt(&request);

        // Generate SQL using LLM
        let messages = vec![
            ChatMessage {
                role: MessageRole::System,
                content: system_prompt,
                name: None,
                function_call: None,
                tool_calls: None,
                tool_call_id: None,
            },
            ChatMessage {
                role: MessageRole::User,
                content: user_prompt,
                name: None,
                function_call: None,
                tool_calls: None,
                tool_call_id: None,
            },
        ];

        let llm_request = LlmRequest {
            messages,
            model: config.model.clone(),
            temperature: Some(config.temperature),
            max_tokens: Some(2000),
            ..Default::default()
        };

        let llm_response = self.llm.chat(llm_request).await?;

        // Extract SQL from response
        let mut sql = self.extract_sql(&llm_response.message.content)?;

        // Validate SQL
        let validation = if config.validate_sql {
            let result = self.sandbox.validate(&sql);

            // Auto-correct if needed
            if !result.allowed && config.auto_correct {
                for _ in 0..config.max_correction_attempts {
                    if let Ok(corrected) = self
                        .attempt_correction(&sql, &result, &request, config)
                        .await
                    {
                        let new_result = self.sandbox.validate(&corrected);
                        if new_result.allowed {
                            sql = corrected;
                            break;
                        }
                    }
                }
            }

            Some(self.sandbox.validate(&sql))
        } else {
            None
        };

        // Calculate confidence
        let confidence = self.calculate_confidence(&analysis, &validation, &sql);

        // Generate explanation
        let explanation = if config.explain_results {
            Some(self.generate_explanation(&request.question, &sql, &analysis))
        } else {
            None
        };

        // Generate suggestions
        let suggestions = if config.enable_suggestions {
            Some(self.generate_suggestions(&request, &analysis))
        } else {
            None
        };

        // Build warnings
        let mut warnings = Vec::new();
        if let Some(ref v) = validation {
            warnings.extend(v.warnings.clone());
        }
        if analysis.limit.is_none() && analysis.intent != QueryIntent::Aggregate {
            warnings.push(format!(
                "No LIMIT specified. Results will be capped at {} rows.",
                config.max_results
            ));
        }

        // Build response
        let processing_time_ms = start.elapsed().as_millis() as u64;
        let response = NlQueryResponse {
            sql,
            explanation,
            confidence,
            analysis,
            validation,
            suggestions,
            warnings,
            usage: llm_response.usage.map(|u| TokenUsage {
                prompt_tokens: u.prompt_tokens,
                completion_tokens: u.completion_tokens,
                total_tokens: u.total_tokens,
            }),
            cached: false,
            processing_time_ms,
        };

        // Cache the response
        if let Ok(mut cache) = self.cache.write() {
            cache.insert(
                cache_key,
                response.clone(),
                Duration::from_secs(config.cache_ttl_secs),
            );
        }

        Ok(response)
    }

    /// Clear the query cache
    pub fn clear_cache(&self) {
        if let Ok(mut cache) = self.cache.write() {
            cache.clear();
        }
    }

    /// Generate cache key from request
    fn generate_cache_key(&self, request: &NlQueryRequest) -> String {
        use std::hash::{Hash, Hasher};
        let mut hasher = std::collections::hash_map::DefaultHasher::new();

        request.question.to_lowercase().trim().hash(&mut hasher);
        if let Some(ref schema) = request.schema {
            schema.database.hash(&mut hasher);
            schema.schema.hash(&mut hasher);
            for table in &schema.tables {
                table.name.hash(&mut hasher);
            }
        }
        if let Some(ref tenant_id) = request.tenant_id {
            tenant_id.hash(&mut hasher);
        }

        format!("{:x}", hasher.finish())
    }

    /// Analyze the natural language question
    fn analyze_question(&self, question: &str) -> QueryAnalysis {
        let lower = question.to_lowercase();

        // Detect intent
        let intent = self.detect_intent(&lower);

        // Extract entities
        let entities = self.extract_entities(question);

        // Detect aggregations
        let aggregations = if RE_AGGREGATION.is_match(&lower) {
            RE_AGGREGATION
                .find_iter(&lower)
                .map(|m| m.as_str().to_string())
                .collect()
        } else {
            Vec::new()
        };

        // Detect time range
        let time_range = self.detect_time_range(&lower);

        // Detect sorting
        let sorting = if RE_SORTING.is_match(&lower) {
            Some(SortingInfo {
                column: "detected_from_context".to_string(),
                direction: if lower.contains("lowest")
                    || lower.contains("bottom")
                    || lower.contains("least")
                    || lower.contains("oldest")
                {
                    SortDirection::Asc
                } else {
                    SortDirection::Desc
                },
            })
        } else {
            None
        };

        // Detect limit
        let limit = self.detect_limit(&lower);

        QueryAnalysis {
            intent,
            tables: Vec::new(),    // Will be populated from schema matching
            columns: Vec::new(),   // Will be populated from schema matching
            filters: Vec::new(),   // Will be populated from entity extraction
            aggregations,
            sorting,
            limit,
            time_range,
            entities,
        }
    }

    /// Detect query intent
    fn detect_intent(&self, question: &str) -> QueryIntent {
        let lower = question.to_lowercase();

        if lower.contains("how many") || lower.contains("count") || lower.contains("number of") {
            QueryIntent::Count
        } else if RE_AGGREGATION.is_match(&lower)
            && (lower.contains("total")
                || lower.contains("sum")
                || lower.contains("average")
                || lower.contains("avg"))
        {
            QueryIntent::Aggregate
        } else if RE_SORTING.is_match(&lower)
            && (lower.contains("top")
                || lower.contains("highest")
                || lower.contains("lowest")
                || lower.contains("best")
                || lower.contains("worst"))
        {
            QueryIntent::Rank
        } else if lower.contains("compare") || lower.contains("versus") || lower.contains(" vs ") {
            QueryIntent::Compare
        } else if RE_TIME.is_match(&lower)
            && (lower.contains("trend")
                || lower.contains("over time")
                || lower.contains("by month")
                || lower.contains("by year"))
        {
            QueryIntent::TimeSeries
        } else if lower.contains("find")
            || lower.contains("search")
            || lower.contains("where")
            || lower.contains("which")
        {
            QueryIntent::Search
        } else if lower.contains("join")
            || lower.contains("with")
            || lower.contains("related")
            || lower.contains("associated")
        {
            QueryIntent::Join
        } else if lower.contains("show")
            || lower.contains("list")
            || lower.contains("get")
            || lower.contains("select")
        {
            QueryIntent::Select
        } else {
            QueryIntent::Unknown
        }
    }

    /// Extract entities from question
    fn extract_entities(&self, question: &str) -> Vec<ExtractedEntity> {
        let mut entities = Vec::new();

        // Extract quoted strings
        let quote_re = Regex::new(r#"['"]([^'"]+)['"]"#).ok();
        if let Some(re) = quote_re {
            for cap in re.captures_iter(question) {
                if let Some(m) = cap.get(1) {
                    entities.push(ExtractedEntity {
                        text: m.as_str().to_string(),
                        entity_type: "quoted_value".to_string(),
                        normalized: Some(m.as_str().to_string()),
                    });
                }
            }
        }

        // Extract numbers
        let num_re = Regex::new(r"\b(\d+(?:\.\d+)?)\b").ok();
        if let Some(re) = num_re {
            for cap in re.captures_iter(question) {
                if let Some(m) = cap.get(1) {
                    entities.push(ExtractedEntity {
                        text: m.as_str().to_string(),
                        entity_type: "number".to_string(),
                        normalized: Some(m.as_str().to_string()),
                    });
                }
            }
        }

        // Extract date-like patterns
        let date_re = Regex::new(r"\b(\d{4}-\d{2}-\d{2}|\d{1,2}/\d{1,2}/\d{2,4})\b").ok();
        if let Some(re) = date_re {
            for cap in re.captures_iter(question) {
                if let Some(m) = cap.get(1) {
                    entities.push(ExtractedEntity {
                        text: m.as_str().to_string(),
                        entity_type: "date".to_string(),
                        normalized: Some(m.as_str().to_string()),
                    });
                }
            }
        }

        entities
    }

    /// Detect time range from question
    fn detect_time_range(&self, question: &str) -> Option<TimeRange> {
        let lower = question.to_lowercase();

        if lower.contains("today") {
            Some(TimeRange {
                start: Some("today".to_string()),
                end: Some("today".to_string()),
                description: "today".to_string(),
            })
        } else if lower.contains("yesterday") {
            Some(TimeRange {
                start: Some("yesterday".to_string()),
                end: Some("yesterday".to_string()),
                description: "yesterday".to_string(),
            })
        } else if lower.contains("last week") {
            Some(TimeRange {
                start: None,
                end: None,
                description: "last 7 days".to_string(),
            })
        } else if lower.contains("last month") {
            Some(TimeRange {
                start: None,
                end: None,
                description: "last 30 days".to_string(),
            })
        } else if lower.contains("last year") || lower.contains("past year") {
            Some(TimeRange {
                start: None,
                end: None,
                description: "last 365 days".to_string(),
            })
        } else if lower.contains("this week") {
            Some(TimeRange {
                start: None,
                end: None,
                description: "current week".to_string(),
            })
        } else if lower.contains("this month") {
            Some(TimeRange {
                start: None,
                end: None,
                description: "current month".to_string(),
            })
        } else if lower.contains("this year") {
            Some(TimeRange {
                start: None,
                end: None,
                description: "current year".to_string(),
            })
        } else {
            None
        }
    }

    /// Detect limit from question
    fn detect_limit(&self, question: &str) -> Option<usize> {
        // Pattern: "top N", "first N", "N results"
        let limit_re =
            Regex::new(r"(?i)(?:top|first|limit)\s+(\d+)|(\d+)\s+(?:results?|rows?|records?)")
                .ok()?;

        if let Some(cap) = limit_re.captures(question) {
            let num = cap
                .get(1)
                .or_else(|| cap.get(2))
                .and_then(|m| m.as_str().parse().ok());
            return num;
        }

        None
    }

    /// Build system prompt for LLM
    fn build_system_prompt(&self, request: &NlQueryRequest, config: &NlQueryConfig) -> String {
        let dialect_hint = config.dialect.features_hint();

        let mut prompt = config.system_prompt.clone().unwrap_or_else(|| {
            format!(
                r#"You are an expert SQL query generator. Convert natural language questions to SQL queries.

SQL Dialect: {:?}
{}

Rules:
1. Generate only the SQL query, no explanations
2. Use proper SQL syntax for the specified dialect
3. Add appropriate WHERE clauses for filters mentioned
4. Use JOINs when multiple tables are needed
5. Add ORDER BY for ranking/sorting questions
6. Add LIMIT for "top N" or bounded queries
7. Use appropriate aggregation functions (COUNT, SUM, AVG, etc.)
8. Handle NULL values appropriately
9. Use parameterized values where possible (use $1, $2, etc.)
10. Wrap the SQL in ```sql code blocks

Important:
- Only generate SELECT queries (no INSERT, UPDATE, DELETE, DROP, etc.)
- Do not include comments in the SQL
- Ensure all table and column names match the schema exactly"#,
                config.dialect, dialect_hint
            )
        });

        // Add schema context
        if let Some(ref schema) = request.schema {
            prompt.push_str("\n\nAvailable Schema:\n");
            for table in &schema.tables {
                prompt.push_str(&format!("\nTable: {}\n", table.name));
                if let Some(ref desc) = table.description {
                    prompt.push_str(&format!("  Description: {}\n", desc));
                }
                prompt.push_str("  Columns:\n");
                for col in &table.columns {
                    let mut col_desc = format!("    - {} ({})", col.name, col.data_type);
                    if !col.nullable {
                        col_desc.push_str(" NOT NULL");
                    }
                    if col.is_primary_key {
                        col_desc.push_str(" PRIMARY KEY");
                    }
                    if let Some(ref desc) = col.description {
                        col_desc.push_str(&format!(" -- {}", desc));
                    }
                    prompt.push_str(&format!("{}\n", col_desc));
                }

                // Add foreign key hints
                if let Some(ref fks) = table.foreign_keys {
                    for fk in fks {
                        prompt.push_str(&format!(
                            "  Foreign Key: {} -> {}.{}\n",
                            fk.columns.join(", "),
                            fk.ref_table,
                            fk.ref_columns.join(", ")
                        ));
                    }
                }
            }

            // Add hints
            if let Some(ref hints) = schema.hints {
                prompt.push_str("\nHints:\n");
                for hint in hints {
                    prompt.push_str(&format!("- {}\n", hint));
                }
            }
        }

        // Add conversation context
        if let Some(ref ctx) = request.context {
            if !ctx.history.is_empty() {
                prompt.push_str("\n\nRecent Query History:\n");
                for entry in ctx.history.iter().rev().take(3) {
                    prompt.push_str(&format!("Q: {}\nSQL: {}\n\n", entry.question, entry.sql));
                }
            }
        }

        prompt
    }

    /// Build user prompt
    fn build_user_prompt(&self, request: &NlQueryRequest) -> String {
        format!(
            "Convert this question to SQL:\n\n{}",
            request.question
        )
    }

    /// Extract SQL from LLM response
    fn extract_sql(&self, response: &str) -> ProviderResult<String> {
        // Try to extract from code block first
        if let Some(caps) = RE_SQL_BLOCK.captures(response) {
            if let Some(sql) = caps.get(1) {
                return Ok(sql.as_str().trim().to_string());
            }
        }

        // Try to find SELECT statement directly
        if let Some(caps) = RE_SELECT.captures(response) {
            if let Some(sql) = caps.get(1) {
                return Ok(sql.as_str().trim().to_string());
            }
        }

        // If nothing found, return the whole response trimmed
        let trimmed = response.trim();
        if trimmed.to_uppercase().starts_with("SELECT") {
            Ok(trimmed.to_string())
        } else {
            Err(ProviderError::Api(
                "Could not extract valid SQL from response".to_string(),
            ))
        }
    }

    /// Attempt to correct invalid SQL
    async fn attempt_correction(
        &self,
        sql: &str,
        validation: &SandboxResult,
        request: &NlQueryRequest,
        config: &NlQueryConfig,
    ) -> ProviderResult<String> {
        let errors: Vec<String> = validation.errors.iter().map(|e| e.message.clone()).collect();

        let correction_prompt = format!(
            r#"The following SQL query has validation errors. Please fix them.

Original SQL:
```sql
{}
```

Errors:
{}

Please provide a corrected SQL query that addresses these issues.
Only output the corrected SQL in a ```sql code block."#,
            sql,
            errors.join("\n- ")
        );

        let messages = vec![
            ChatMessage {
                role: MessageRole::System,
                content: self.build_system_prompt(request, config),
                name: None,
                function_call: None,
                tool_calls: None,
                tool_call_id: None,
            },
            ChatMessage {
                role: MessageRole::User,
                content: correction_prompt,
                name: None,
                function_call: None,
                tool_calls: None,
                tool_call_id: None,
            },
        ];

        let llm_request = LlmRequest {
            messages,
            model: config.model.clone(),
            temperature: Some(0.0), // Lower temperature for corrections
            max_tokens: Some(2000),
            ..Default::default()
        };

        let response = self.llm.chat(llm_request).await?;
        self.extract_sql(&response.message.content)
    }

    /// Calculate confidence score
    fn calculate_confidence(
        &self,
        analysis: &QueryAnalysis,
        validation: &Option<SandboxResult>,
        sql: &str,
    ) -> f32 {
        let mut confidence = 0.5; // Base confidence

        // Intent detection confidence
        if analysis.intent != QueryIntent::Unknown {
            confidence += 0.1;
        }

        // Validation passed
        if let Some(ref v) = validation {
            if v.allowed {
                confidence += 0.2;
            } else {
                confidence -= 0.2;
            }
        }

        // Has entities that map to values
        if !analysis.entities.is_empty() {
            confidence += 0.05 * analysis.entities.len() as f32;
        }

        // SQL structure checks
        let upper_sql = sql.to_uppercase();
        if upper_sql.contains("SELECT") {
            confidence += 0.05;
        }
        if upper_sql.contains("FROM") {
            confidence += 0.05;
        }
        if upper_sql.contains("WHERE") && !analysis.filters.is_empty() {
            confidence += 0.05;
        }

        // Cap at 0.95 (never 100% confident)
        confidence.clamp(0.1, 0.95)
    }

    /// Generate explanation for the query
    fn generate_explanation(
        &self,
        question: &str,
        sql: &str,
        analysis: &QueryAnalysis,
    ) -> String {
        let mut parts = Vec::new();

        // Intent description
        let intent_desc = match analysis.intent {
            QueryIntent::Select => "retrieving data",
            QueryIntent::Aggregate => "calculating aggregated values",
            QueryIntent::Compare => "comparing data",
            QueryIntent::Rank => "ranking results",
            QueryIntent::TimeSeries => "analyzing data over time",
            QueryIntent::Search => "searching for specific records",
            QueryIntent::Count => "counting records",
            QueryIntent::Join => "combining data from multiple tables",
            QueryIntent::Unknown => "querying data",
        };
        parts.push(format!("This query is {} based on your question.", intent_desc));

        // Tables involved
        if !analysis.tables.is_empty() {
            parts.push(format!(
                "It queries the {} table(s).",
                analysis.tables.join(", ")
            ));
        }

        // Aggregations
        if !analysis.aggregations.is_empty() {
            parts.push(format!(
                "It uses {} aggregation(s).",
                analysis.aggregations.join(", ")
            ));
        }

        // Sorting
        if let Some(ref sort) = analysis.sorting {
            parts.push(format!(
                "Results are sorted by {} in {} order.",
                sort.column,
                match sort.direction {
                    SortDirection::Asc => "ascending",
                    SortDirection::Desc => "descending",
                }
            ));
        }

        // Limit
        if let Some(limit) = analysis.limit {
            parts.push(format!("Limited to {} results.", limit));
        }

        // Time range
        if let Some(ref tr) = analysis.time_range {
            parts.push(format!("Filtered to {}.", tr.description));
        }

        parts.join(" ")
    }

    /// Generate query suggestions
    fn generate_suggestions(
        &self,
        request: &NlQueryRequest,
        analysis: &QueryAnalysis,
    ) -> Vec<QuerySuggestion> {
        let mut suggestions = Vec::new();

        // Suggest adding limit if not present
        if analysis.limit.is_none() && analysis.intent == QueryIntent::Select {
            suggestions.push(QuerySuggestion {
                text: "Add a limit to your query for better performance".to_string(),
                sql: None,
                reason: "Unbounded queries can be slow on large tables".to_string(),
            });
        }

        // Suggest time filter for aggregate queries
        if analysis.intent == QueryIntent::Aggregate && analysis.time_range.is_none() {
            suggestions.push(QuerySuggestion {
                text: "Consider adding a time filter (e.g., 'last month')".to_string(),
                sql: None,
                reason: "Time-bounded aggregations are often more meaningful".to_string(),
            });
        }

        // Suggest related queries based on intent
        match analysis.intent {
            QueryIntent::Count => {
                suggestions.push(QuerySuggestion {
                    text: format!(
                        "Show me the actual {} instead of just the count",
                        if request.question.contains("user") {
                            "users"
                        } else if request.question.contains("order") {
                            "orders"
                        } else {
                            "records"
                        }
                    ),
                    sql: None,
                    reason: "See the underlying data".to_string(),
                });
            }
            QueryIntent::Rank => {
                suggestions.push(QuerySuggestion {
                    text: "Show me the bottom/lowest instead".to_string(),
                    sql: None,
                    reason: "View the opposite end of the ranking".to_string(),
                });
            }
            _ => {}
        }

        suggestions
    }
}

// ============================================================================
// Tests
// ============================================================================

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

    #[test]
    fn test_detect_intent_count() {
        let engine = create_test_engine();
        let analysis = engine.analyze_question("How many users are there?");
        assert_eq!(analysis.intent, QueryIntent::Count);
    }

    #[test]
    fn test_detect_intent_rank() {
        let engine = create_test_engine();
        let analysis = engine.analyze_question("Show me the top 10 products by sales");
        assert_eq!(analysis.intent, QueryIntent::Rank);
    }

    #[test]
    fn test_detect_intent_aggregate() {
        let engine = create_test_engine();
        let analysis = engine.analyze_question("What is the total revenue?");
        assert_eq!(analysis.intent, QueryIntent::Aggregate);
    }

    #[test]
    fn test_detect_limit() {
        let engine = create_test_engine();
        let analysis = engine.analyze_question("Show me the top 5 customers");
        assert_eq!(analysis.limit, Some(5));
    }

    #[test]
    fn test_detect_time_range() {
        let engine = create_test_engine();

        let analysis = engine.analyze_question("Show orders from last week");
        assert!(analysis.time_range.is_some());
        assert_eq!(
            analysis.time_range.as_ref().map(|t| t.description.as_str()),
            Some("last 7 days")
        );
    }

    #[test]
    fn test_extract_entities() {
        let engine = create_test_engine();
        let entities = engine.extract_entities("Find users with name 'John' and age 25");

        assert!(entities.iter().any(|e| e.text == "John"));
        assert!(entities.iter().any(|e| e.text == "25"));
    }

    #[test]
    fn test_sql_extraction_from_code_block() {
        let engine = create_test_engine();
        let response = r#"Here's the SQL query:

```sql
SELECT * FROM users WHERE status = 'active'
```

This will return all active users."#;

        let sql = engine.extract_sql(response).unwrap();
        assert_eq!(sql, "SELECT * FROM users WHERE status = 'active'");
    }

    #[test]
    fn test_sql_extraction_direct() {
        let engine = create_test_engine();
        let response = "SELECT name, email FROM users LIMIT 10";

        let sql = engine.extract_sql(response).unwrap();
        assert_eq!(sql, "SELECT name, email FROM users LIMIT 10");
    }

    #[test]
    fn test_cache_key_generation() {
        let engine = create_test_engine();

        let request1 = NlQueryRequest {
            question: "Show all users".to_string(),
            schema: None,
            context: None,
            config: None,
            user_id: None,
            tenant_id: None,
            metadata: None,
        };

        let request2 = NlQueryRequest {
            question: "SHOW ALL USERS".to_string(),
            schema: None,
            context: None,
            config: None,
            user_id: None,
            tenant_id: None,
            metadata: None,
        };

        // Same question with different case should have same cache key
        assert_eq!(
            engine.generate_cache_key(&request1),
            engine.generate_cache_key(&request2)
        );
    }

    fn create_test_engine() -> NlQueryEngine {
        // Create a mock provider for testing
        struct MockProvider;

        #[async_trait::async_trait]
        impl LlmProvider for MockProvider {
            fn name(&self) -> &str {
                "mock"
            }

            async fn list_models(&self) -> ProviderResult<Vec<super::super::providers::ModelInfo>> {
                Ok(vec![])
            }

            async fn chat(
                &self,
                _request: LlmRequest,
            ) -> ProviderResult<super::super::providers::LlmResponse> {
                Ok(super::super::providers::LlmResponse {
                    id: "test".to_string(),
                    model: "mock".to_string(),
                    message: ChatMessage {
                        role: MessageRole::Assistant,
                        content: "SELECT * FROM users".to_string(),
                        name: None,
                        function_call: None,
                        tool_calls: None,
                        tool_call_id: None,
                    },
                    finish_reason: Some("stop".to_string()),
                    usage: None,
                })
            }

            async fn chat_stream(
                &self,
                _request: LlmRequest,
            ) -> ProviderResult<
                Box<
                    dyn futures::Stream<
                            Item = ProviderResult<super::super::providers::StreamChunk>,
                        > + Send
                        + Unpin,
                >,
            > {
                Err(ProviderError::Api("Not implemented".to_string()))
            }

            fn count_tokens(&self, text: &str, _model: &str) -> ProviderResult<usize> {
                Ok(text.len() / 4)
            }

            fn supports_model(&self, _model: &str) -> bool {
                true
            }

            fn model_info(&self, _model: &str) -> Option<super::super::providers::ModelInfo> {
                None
            }
        }

        NlQueryEngine::new(Arc::new(MockProvider))
    }
}