oxidize-pdf 2.4.3

A pure Rust PDF generation and manipulation library with zero external dependencies
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
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
//! LLM-optimized export formats for PDF documents
//!
//! This module provides utilities to export PDF content in formats optimized for
//! Large Language Model (LLM) processing, including Markdown, JSON, and contextual formats.
//!
//! # Example
//!
//! ```no_run
//! use oxidize_pdf::ai::{MarkdownExporter, MarkdownOptions};
//!
//! # fn main() -> oxidize_pdf::Result<()> {
//! let text = "Hello, world! This is a PDF document.";
//! let markdown = MarkdownExporter::export_text(text)?;
//! println!("{}", markdown);
//! # Ok(())
//! # }
//! ```

use crate::Result;

#[cfg(feature = "semantic")]
use serde_json::{json, Value};

#[cfg(feature = "semantic")]
use super::chunking::DocumentChunk;

/// Metadata about a PDF document for export
#[derive(Debug, Clone)]
pub struct DocumentMetadata {
    /// Document title
    pub title: String,

    /// Total number of pages
    pub page_count: usize,

    /// Creation date (ISO 8601 format recommended)
    pub created_at: Option<String>,

    /// Author name
    pub author: Option<String>,
}

impl Default for DocumentMetadata {
    fn default() -> Self {
        Self {
            title: "Untitled Document".to_string(),
            page_count: 0,
            created_at: None,
            author: None,
        }
    }
}

/// Configuration options for Markdown export
#[derive(Debug, Clone)]
pub struct MarkdownOptions {
    /// Whether to include metadata headers (YAML frontmatter)
    pub include_metadata: bool,

    /// Whether to include page number markers
    pub include_page_numbers: bool,
}

impl Default for MarkdownOptions {
    fn default() -> Self {
        Self {
            include_metadata: true,
            include_page_numbers: true,
        }
    }
}

/// Exporter for converting PDF content to Markdown format
///
/// Markdown is a lightweight markup language that's highly readable by both humans
/// and LLMs, making it ideal for document processing pipelines.
///
/// # Example
///
/// ```no_run
/// use oxidize_pdf::ai::{MarkdownExporter, MarkdownOptions};
///
/// # fn main() -> oxidize_pdf::Result<()> {
/// let exporter = MarkdownExporter::new(MarkdownOptions::default());
/// let markdown = MarkdownExporter::export_text("Hello, world!")?;
/// # Ok(())
/// # }
/// ```
#[derive(Debug, Clone)]
pub struct MarkdownExporter {
    options: MarkdownOptions,
}

impl MarkdownExporter {
    /// Create a new Markdown exporter with the given options
    ///
    /// # Arguments
    ///
    /// * `options` - Configuration for the export process
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{MarkdownExporter, MarkdownOptions};
    ///
    /// let exporter = MarkdownExporter::new(MarkdownOptions {
    ///     include_metadata: true,
    ///     include_page_numbers: false,
    /// });
    /// ```
    pub fn new(options: MarkdownOptions) -> Self {
        Self { options }
    }

    /// Create a new Markdown exporter with default options
    pub fn default() -> Self {
        Self::new(MarkdownOptions::default())
    }

    /// Export text using the configured options
    ///
    /// This method respects the exporter's options for metadata and page numbers.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content to export
    ///
    /// # Returns
    ///
    /// A Markdown-formatted string
    pub fn export(&self, text: &str) -> Result<String> {
        if self.options.include_metadata {
            // For now, export with basic header
            // Will be enhanced in future phases
            Self::export_text(text)
        } else {
            Ok(text.to_string())
        }
    }

    /// Export plain text to Markdown format
    ///
    /// This is the simplest export method, converting raw text to a basic
    /// Markdown document with a title header.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content to export
    ///
    /// # Returns
    ///
    /// A Markdown-formatted string
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::MarkdownExporter;
    ///
    /// let text = "This is a sample document.";
    /// let markdown = MarkdownExporter::export_text(text).unwrap();
    /// assert!(markdown.contains("# Document"));
    /// assert!(markdown.contains("This is a sample document."));
    /// ```
    pub fn export_text(text: &str) -> Result<String> {
        // Phase 1: Simple conversion with basic header
        let mut output = String::new();
        output.push_str("# Document\n\n");
        output.push_str(text);
        Ok(output)
    }

    /// Export text with metadata as YAML frontmatter
    ///
    /// This adds a YAML header to the Markdown document with metadata like
    /// title, page count, author, and creation date.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content to export
    /// * `metadata` - Document metadata to include
    ///
    /// # Returns
    ///
    /// A Markdown-formatted string with YAML frontmatter
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{MarkdownExporter, DocumentMetadata};
    ///
    /// let metadata = DocumentMetadata {
    ///     title: "My Document".to_string(),
    ///     page_count: 5,
    ///     created_at: Some("2025-10-13".to_string()),
    ///     author: Some("John Doe".to_string()),
    /// };
    ///
    /// let markdown = MarkdownExporter::export_with_metadata("Content here", &metadata).unwrap();
    /// assert!(markdown.contains("title: My Document"));
    /// assert!(markdown.contains("pages: 5"));
    /// ```
    pub fn export_with_metadata(text: &str, metadata: &DocumentMetadata) -> Result<String> {
        let mut output = String::new();

        // YAML frontmatter
        output.push_str("---\n");

        // Escape title if it contains special characters
        let escaped_title = if metadata.title.contains(':') || metadata.title.contains('#') {
            format!("\"{}\"", metadata.title.replace('"', "\\\""))
        } else {
            metadata.title.clone()
        };

        output.push_str(&format!("title: {}\n", escaped_title));
        output.push_str(&format!("pages: {}\n", metadata.page_count));

        if let Some(ref created) = metadata.created_at {
            output.push_str(&format!("created: {}\n", created));
        }

        if let Some(ref author) = metadata.author {
            let escaped_author = if author.contains(':') {
                format!("\"{}\"", author.replace('"', "\\\""))
            } else {
                author.clone()
            };
            output.push_str(&format!("author: {}\n", escaped_author));
        }

        output.push_str("---\n\n");

        // Content
        output.push_str(&format!("# {}\n\n", metadata.title));
        output.push_str(text);

        Ok(output)
    }

    /// Export multi-page text with page break markers
    ///
    /// This method creates a Markdown document with clear page boundaries,
    /// making it easy for LLMs to understand document structure.
    ///
    /// # Arguments
    ///
    /// * `page_texts` - Vector of (page_number, text) tuples (1-indexed)
    ///
    /// # Returns
    ///
    /// A Markdown-formatted string with page markers
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::MarkdownExporter;
    ///
    /// let pages = vec![
    ///     (1, "Page 1 content".to_string()),
    ///     (2, "Page 2 content".to_string()),
    ///     (3, "Page 3 content".to_string()),
    /// ];
    ///
    /// let markdown = MarkdownExporter::export_with_pages(&pages).unwrap();
    /// assert!(markdown.contains("**Page 1**"));
    /// assert!(markdown.contains("**Page 2**"));
    /// ```
    pub fn export_with_pages(page_texts: &[(usize, String)]) -> Result<String> {
        let mut output = String::new();
        output.push_str("# Document\n\n");

        for (i, (page_num, text)) in page_texts.iter().enumerate() {
            if i > 0 {
                // Add page break separator
                output.push_str("\n\n---\n\n");
            }

            output.push_str(&format!("**Page {}**\n\n", page_num));
            output.push_str(text);
        }

        Ok(output)
    }

    /// Export multi-page text with metadata and page breaks
    ///
    /// Combines metadata frontmatter with page-by-page content.
    ///
    /// # Arguments
    ///
    /// * `page_texts` - Vector of (page_number, text) tuples (1-indexed)
    /// * `metadata` - Document metadata
    ///
    /// # Returns
    ///
    /// A Markdown-formatted string with YAML frontmatter and page markers
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{MarkdownExporter, DocumentMetadata};
    ///
    /// let metadata = DocumentMetadata {
    ///     title: "Multi-Page Doc".to_string(),
    ///     page_count: 2,
    ///     created_at: None,
    ///     author: None,
    /// };
    ///
    /// let pages = vec![
    ///     (1, "First page".to_string()),
    ///     (2, "Second page".to_string()),
    /// ];
    ///
    /// let markdown = MarkdownExporter::export_with_metadata_and_pages(&pages, &metadata).unwrap();
    /// assert!(markdown.contains("pages: 2"));
    /// assert!(markdown.contains("**Page 1**"));
    /// ```
    pub fn export_with_metadata_and_pages(
        page_texts: &[(usize, String)],
        metadata: &DocumentMetadata,
    ) -> Result<String> {
        let mut output = String::new();

        // YAML frontmatter
        output.push_str("---\n");

        let escaped_title = if metadata.title.contains(':') || metadata.title.contains('#') {
            format!("\"{}\"", metadata.title.replace('"', "\\\""))
        } else {
            metadata.title.clone()
        };

        output.push_str(&format!("title: {}\n", escaped_title));
        output.push_str(&format!("pages: {}\n", metadata.page_count));

        if let Some(ref created) = metadata.created_at {
            output.push_str(&format!("created: {}\n", created));
        }

        if let Some(ref author) = metadata.author {
            let escaped_author = if author.contains(':') {
                format!("\"{}\"", author.replace('"', "\\\""))
            } else {
                author.clone()
            };
            output.push_str(&format!("author: {}\n", escaped_author));
        }

        output.push_str("---\n\n");

        // Title
        output.push_str(&format!("# {}\n\n", metadata.title));

        // Pages
        for (i, (page_num, text)) in page_texts.iter().enumerate() {
            if i > 0 {
                output.push_str("\n\n---\n\n");
            }

            output.push_str(&format!("**Page {}**\n\n", page_num));
            output.push_str(text);
        }

        Ok(output)
    }
}

/// Configuration options for JSON export
#[cfg(feature = "semantic")]
#[derive(Debug, Clone)]
pub struct JsonOptions {
    /// Whether to pretty-print the JSON output
    pub pretty_print: bool,

    /// Whether to include chunk information
    pub include_chunks: bool,
}

#[cfg(feature = "semantic")]
impl Default for JsonOptions {
    fn default() -> Self {
        Self {
            pretty_print: true,
            include_chunks: false,
        }
    }
}

/// Exporter for converting PDF content to JSON format
///
/// JSON is a structured format that's easy to parse programmatically,
/// making it ideal for feeding PDF content into data pipelines and LLM APIs.
///
/// # Example
///
/// ```no_run
/// use oxidize_pdf::ai::{JsonExporter, JsonOptions};
///
/// # fn main() -> oxidize_pdf::Result<()> {
/// let exporter = JsonExporter::new(JsonOptions::default());
/// let json = JsonExporter::export_simple("Hello, world!")?;
/// println!("{}", json);
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "semantic")]
#[derive(Debug, Clone)]
pub struct JsonExporter {
    options: JsonOptions,
}

#[cfg(feature = "semantic")]
impl JsonExporter {
    /// Create a new JSON exporter with the given options
    ///
    /// # Arguments
    ///
    /// * `options` - Configuration for the export process
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{JsonExporter, JsonOptions};
    ///
    /// let exporter = JsonExporter::new(JsonOptions {
    ///     pretty_print: true,
    ///     include_chunks: false,
    /// });
    /// ```
    pub fn new(options: JsonOptions) -> Self {
        Self { options }
    }

    /// Create a new JSON exporter with default options
    pub fn default() -> Self {
        Self::new(JsonOptions::default())
    }

    /// Export text using the configured options
    ///
    /// This method respects the exporter's options for formatting.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content to export
    ///
    /// # Returns
    ///
    /// A JSON-formatted string
    pub fn export(&self, text: &str) -> Result<String> {
        let doc = json!({
            "type": "document",
            "content": text
        });

        if self.options.pretty_print {
            serde_json::to_string_pretty(&doc)
                .map_err(|e| crate::error::PdfError::SerializationError(e.to_string()))
        } else {
            serde_json::to_string(&doc)
                .map_err(|e| crate::error::PdfError::SerializationError(e.to_string()))
        }
    }

    /// Export plain text to simple JSON format
    ///
    /// This is the simplest export method, converting raw text to a basic
    /// JSON document structure.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content to export
    ///
    /// # Returns
    ///
    /// A pretty-printed JSON string
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::JsonExporter;
    ///
    /// let text = "This is a sample document.";
    /// let json = JsonExporter::export_simple(text).unwrap();
    /// assert!(json.contains("\"type\": \"document\""));
    /// assert!(json.contains("This is a sample document."));
    /// ```
    pub fn export_simple(text: &str) -> Result<String> {
        let doc = json!({
            "type": "document",
            "content": text
        });
        serde_json::to_string_pretty(&doc)
            .map_err(|e| crate::error::PdfError::SerializationError(e.to_string()))
    }

    /// Export text with metadata
    ///
    /// # Arguments
    ///
    /// * `text` - The text content
    /// * `metadata` - Document metadata
    ///
    /// # Returns
    ///
    /// A JSON string with metadata and content
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{JsonExporter, DocumentMetadata};
    ///
    /// let metadata = DocumentMetadata {
    ///     title: "My Document".to_string(),
    ///     page_count: 5,
    ///     created_at: Some("2025-10-13".to_string()),
    ///     author: Some("John Doe".to_string()),
    /// };
    ///
    /// let json = JsonExporter::export_with_metadata("Content here", &metadata).unwrap();
    /// assert!(json.contains("\"title\": \"My Document\""));
    /// ```
    pub fn export_with_metadata(text: &str, metadata: &DocumentMetadata) -> Result<String> {
        let mut meta_obj = json!({
            "title": metadata.title,
            "page_count": metadata.page_count
        });

        if let Some(ref created) = metadata.created_at {
            meta_obj["created_at"] = json!(created);
        }

        if let Some(ref author) = metadata.author {
            meta_obj["author"] = json!(author);
        }

        let doc = json!({
            "type": "document",
            "metadata": meta_obj,
            "content": text
        });

        serde_json::to_string_pretty(&doc)
            .map_err(|e| crate::error::PdfError::SerializationError(e.to_string()))
    }

    /// Export multi-page document to JSON
    ///
    /// # Arguments
    ///
    /// * `page_texts` - Vector of (page_number, text) tuples
    ///
    /// # Returns
    ///
    /// A JSON string with page-by-page structure
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::JsonExporter;
    ///
    /// let pages = vec![
    ///     (1, "Page 1 content".to_string()),
    ///     (2, "Page 2 content".to_string()),
    /// ];
    ///
    /// let json = JsonExporter::export_pages(&pages).unwrap();
    /// assert!(json.contains("\"page_number\": 1"));
    /// assert!(json.contains("\"page_number\": 2"));
    /// ```
    pub fn export_pages(page_texts: &[(usize, String)]) -> Result<String> {
        let pages: Vec<Value> = page_texts
            .iter()
            .map(|(page_num, text)| {
                json!({
                    "page_number": page_num,
                    "content": text
                })
            })
            .collect();

        let doc = json!({
            "type": "document",
            "page_count": page_texts.len(),
            "pages": pages
        });

        serde_json::to_string_pretty(&doc)
            .map_err(|e| crate::error::PdfError::SerializationError(e.to_string()))
    }

    /// Export document chunks to JSON format
    ///
    /// This method is ideal for RAG (Retrieval Augmented Generation) pipelines
    /// where you need structured chunks with metadata for embedding and retrieval.
    ///
    /// Each chunk includes:
    /// - Content text
    /// - Token count
    /// - Page numbers where the chunk appears
    /// - Position metadata (character offsets, page range)
    /// - Confidence score
    /// - Whether sentence boundaries were respected
    ///
    /// # Arguments
    ///
    /// * `chunks` - Vector of document chunks from DocumentChunker
    ///
    /// # Returns
    ///
    /// A JSON string with structured chunk data
    ///
    /// # Example
    ///
    /// ```no_run
    /// use oxidize_pdf::ai::{DocumentChunker, JsonExporter};
    ///
    /// # fn main() -> oxidize_pdf::Result<()> {
    /// let chunker = DocumentChunker::new(512, 50);
    /// let chunks = chunker.chunk_text("Long document text...")?;
    /// let json = JsonExporter::export_with_chunks(&chunks)?;
    /// println!("{}", json);
    /// # Ok(())
    /// # }
    /// ```
    pub fn export_with_chunks(chunks: &[DocumentChunk]) -> Result<String> {
        let chunk_objects: Vec<Value> = chunks
            .iter()
            .map(|chunk| {
                json!({
                    "id": chunk.id,
                    "content": chunk.content,
                    "tokens": chunk.tokens,
                    "page_numbers": chunk.page_numbers,
                    "chunk_index": chunk.chunk_index,
                    "metadata": {
                        "position": {
                            "start_char": chunk.metadata.position.start_char,
                            "end_char": chunk.metadata.position.end_char,
                            "first_page": chunk.metadata.position.first_page,
                            "last_page": chunk.metadata.position.last_page
                        },
                        "confidence": chunk.metadata.confidence,
                        "sentence_boundary_respected": chunk.metadata.sentence_boundary_respected
                    }
                })
            })
            .collect();

        let doc = json!({
            "type": "chunked_document",
            "chunk_count": chunks.len(),
            "chunks": chunk_objects
        });

        serde_json::to_string_pretty(&doc)
            .map_err(|e| crate::error::PdfError::SerializationError(e.to_string()))
    }
}

/// Exporter for converting PDF content to contextual format
///
/// Contextual format is optimized for direct injection into LLM prompts,
/// providing document content in a conversational, easy-to-understand structure
/// without heavy formatting or metadata overhead.
///
/// This format is ideal for:
/// - Direct LLM prompt injection
/// - Question-answering over documents
/// - Summarization tasks
/// - Conversational AI with document context
///
/// # Example
///
/// ```
/// use oxidize_pdf::ai::ContextualFormat;
///
/// let text = "This is the document content.";
/// let contextual = ContextualFormat::export_simple(text).unwrap();
/// // Output: "Document content:\n\nThis is the document content."
/// ```
#[derive(Debug, Clone)]
pub struct ContextualFormat;

impl ContextualFormat {
    /// Export plain text to contextual format
    ///
    /// Creates a simple, conversational representation of the document
    /// content without heavy formatting.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content to export
    ///
    /// # Returns
    ///
    /// A contextual-formatted string
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::ContextualFormat;
    ///
    /// let text = "Sample document text.";
    /// let result = ContextualFormat::export_simple(text).unwrap();
    /// assert!(result.contains("Document content:"));
    /// assert!(result.contains("Sample document text."));
    /// ```
    pub fn export_simple(text: &str) -> Result<String> {
        let mut output = String::new();
        output.push_str("Document content:\n\n");
        output.push_str(text);
        Ok(output)
    }

    /// Export text with metadata in conversational format
    ///
    /// Creates a natural language description of the document with metadata,
    /// ideal for LLM understanding without structured parsing.
    ///
    /// # Arguments
    ///
    /// * `text` - The text content
    /// * `metadata` - Document metadata
    ///
    /// # Returns
    ///
    /// A contextual-formatted string with metadata
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{ContextualFormat, DocumentMetadata};
    ///
    /// let metadata = DocumentMetadata {
    ///     title: "Annual Report".to_string(),
    ///     page_count: 25,
    ///     created_at: Some("2025-01-15".to_string()),
    ///     author: Some("Jane Smith".to_string()),
    /// };
    ///
    /// let result = ContextualFormat::export_with_metadata("Report text...", &metadata).unwrap();
    /// assert!(result.contains("This is a document titled \"Annual Report\""));
    /// assert!(result.contains("25 pages"));
    /// ```
    pub fn export_with_metadata(text: &str, metadata: &DocumentMetadata) -> Result<String> {
        let mut output = String::new();

        // Natural language metadata introduction
        output.push_str(&format!("This is a document titled \"{}\"", metadata.title));

        if metadata.page_count > 0 {
            output.push_str(&format!(
                " with {} page{}",
                metadata.page_count,
                if metadata.page_count == 1 { "" } else { "s" }
            ));
        }

        if let Some(ref author) = metadata.author {
            output.push_str(&format!(", written by {}", author));
        }

        if let Some(ref created) = metadata.created_at {
            output.push_str(&format!(", created on {}", created));
        }

        output.push_str(".\n\n");
        output.push_str("Content:\n\n");
        output.push_str(text);

        Ok(output)
    }

    /// Export multi-page document with conversational page markers
    ///
    /// # Arguments
    ///
    /// * `page_texts` - Vector of (page_number, text) tuples
    ///
    /// # Returns
    ///
    /// A contextual-formatted string with page indicators
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::ContextualFormat;
    ///
    /// let pages = vec![
    ///     (1, "First page content".to_string()),
    ///     (2, "Second page content".to_string()),
    /// ];
    ///
    /// let result = ContextualFormat::export_with_pages(&pages).unwrap();
    /// assert!(result.contains("On page 1:"));
    /// assert!(result.contains("On page 2:"));
    /// ```
    pub fn export_with_pages(page_texts: &[(usize, String)]) -> Result<String> {
        let mut output = String::new();
        output.push_str("Document content:\n\n");

        for (page_num, text) in page_texts.iter() {
            output.push_str(&format!("On page {}:\n", page_num));
            output.push_str(text);
            output.push_str("\n\n");
        }

        Ok(output)
    }

    /// Export multi-page document with metadata and conversational formatting
    ///
    /// # Arguments
    ///
    /// * `page_texts` - Vector of (page_number, text) tuples
    /// * `metadata` - Document metadata
    ///
    /// # Returns
    ///
    /// A contextual-formatted string with metadata and page content
    ///
    /// # Example
    ///
    /// ```
    /// use oxidize_pdf::ai::{ContextualFormat, DocumentMetadata};
    ///
    /// let metadata = DocumentMetadata {
    ///     title: "Technical Guide".to_string(),
    ///     page_count: 3,
    ///     created_at: None,
    ///     author: None,
    /// };
    ///
    /// let pages = vec![
    ///     (1, "Introduction".to_string()),
    ///     (2, "Main content".to_string()),
    /// ];
    ///
    /// let result = ContextualFormat::export_with_metadata_and_pages(&pages, &metadata).unwrap();
    /// assert!(result.contains("titled \"Technical Guide\""));
    /// assert!(result.contains("On page 1:"));
    /// ```
    pub fn export_with_metadata_and_pages(
        page_texts: &[(usize, String)],
        metadata: &DocumentMetadata,
    ) -> Result<String> {
        let mut output = String::new();

        // Natural language metadata introduction
        output.push_str(&format!("This is a document titled \"{}\"", metadata.title));

        if metadata.page_count > 0 {
            output.push_str(&format!(
                " with {} page{}",
                metadata.page_count,
                if metadata.page_count == 1 { "" } else { "s" }
            ));
        }

        if let Some(ref author) = metadata.author {
            output.push_str(&format!(", written by {}", author));
        }

        if let Some(ref created) = metadata.created_at {
            output.push_str(&format!(", created on {}", created));
        }

        output.push_str(".\n\n");
        output.push_str("Content:\n\n");

        // Add page content with conversational markers
        for (page_num, text) in page_texts.iter() {
            output.push_str(&format!("On page {}:\n", page_num));
            output.push_str(text);
            output.push_str("\n\n");
        }

        Ok(output)
    }
}

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

    #[test]
    fn test_basic_text_to_markdown() {
        let text = "hello world";
        let result = MarkdownExporter::export_text(text).unwrap();

        assert!(result.contains("# Document"), "Should have document header");
        assert!(
            result.contains("hello world"),
            "Should contain original text"
        );

        // Verify structure: header, blank line, content
        let lines: Vec<&str> = result.lines().collect();
        assert_eq!(lines[0], "# Document");
        assert_eq!(lines[1], "");
        assert_eq!(lines[2], "hello world");
    }

    #[test]
    fn test_empty_text() {
        let result = MarkdownExporter::export_text("").unwrap();
        assert!(
            result.contains("# Document"),
            "Should still have header for empty text"
        );
        assert_eq!(result, "# Document\n\n");
    }

    #[test]
    fn test_multiline_text() {
        let text = "First line\nSecond line\nThird line";
        let result = MarkdownExporter::export_text(text).unwrap();

        assert!(result.contains("First line"));
        assert!(result.contains("Second line"));
        assert!(result.contains("Third line"));
    }

    #[test]
    fn test_text_with_special_characters() {
        let text = "Text with # hash and * asterisk";
        let result = MarkdownExporter::export_text(text).unwrap();

        // Special characters should be preserved in content
        assert!(result.contains("# hash"));
        assert!(result.contains("* asterisk"));
    }

    #[test]
    fn test_markdown_exporter_creation() {
        let exporter = MarkdownExporter::new(MarkdownOptions {
            include_metadata: true,
            include_page_numbers: false,
        });

        assert!(exporter.options.include_metadata);
        assert!(!exporter.options.include_page_numbers);
    }

    #[test]
    fn test_markdown_exporter_default() {
        let exporter = MarkdownExporter::default();

        assert!(exporter.options.include_metadata);
        assert!(exporter.options.include_page_numbers);
    }

    #[test]
    fn test_markdown_with_metadata() {
        let metadata = DocumentMetadata {
            title: "Test Document".to_string(),
            page_count: 10,
            created_at: Some("2025-10-13".to_string()),
            author: Some("John Doe".to_string()),
        };

        let result = MarkdownExporter::export_with_metadata("Sample content", &metadata).unwrap();

        // Check YAML frontmatter structure
        assert!(result.starts_with("---\n"), "Should start with YAML marker");
        assert!(result.contains("title: Test Document"));
        assert!(result.contains("pages: 10"));
        assert!(result.contains("created: 2025-10-13"));
        assert!(result.contains("author: John Doe"));

        // Check content section
        assert!(result.contains("# Test Document"));
        assert!(result.contains("Sample content"));
    }

    #[test]
    fn test_metadata_with_special_characters() {
        let metadata = DocumentMetadata {
            title: "Test: Document #1".to_string(),
            page_count: 5,
            created_at: None,
            author: None,
        };

        let result = MarkdownExporter::export_with_metadata("Content", &metadata).unwrap();

        // Title with special characters should be quoted
        assert!(result.contains("title: \"Test: Document #1\""));
    }

    #[test]
    fn test_metadata_minimal() {
        let metadata = DocumentMetadata {
            title: "Simple".to_string(),
            page_count: 1,
            created_at: None,
            author: None,
        };

        let result = MarkdownExporter::export_with_metadata("Text", &metadata).unwrap();

        assert!(result.contains("title: Simple"));
        assert!(result.contains("pages: 1"));
        assert!(!result.contains("created:"));
        assert!(!result.contains("author:"));
    }

    #[test]
    fn test_document_metadata_default() {
        let metadata = DocumentMetadata::default();

        assert_eq!(metadata.title, "Untitled Document");
        assert_eq!(metadata.page_count, 0);
        assert!(metadata.created_at.is_none());
        assert!(metadata.author.is_none());
    }

    #[test]
    fn test_multipage_markdown() {
        let pages = vec![
            (1, "Content of page 1".to_string()),
            (2, "Content of page 2".to_string()),
            (3, "Content of page 3".to_string()),
        ];

        let result = MarkdownExporter::export_with_pages(&pages).unwrap();

        // Check document header
        assert!(result.starts_with("# Document\n\n"));

        // Check all page markers
        assert!(result.contains("**Page 1**"));
        assert!(result.contains("**Page 2**"));
        assert!(result.contains("**Page 3**"));

        // Check page content
        assert!(result.contains("Content of page 1"));
        assert!(result.contains("Content of page 2"));
        assert!(result.contains("Content of page 3"));

        // Check page separators (---)
        let separator_count = result.matches("\n---\n").count();
        assert_eq!(separator_count, 2, "Should have 2 separators for 3 pages");
    }

    #[test]
    fn test_page_numbers_correct() {
        let pages = vec![(1, "First".to_string()), (2, "Second".to_string())];

        let result = MarkdownExporter::export_with_pages(&pages).unwrap();

        // Verify page numbers appear in order
        let page1_pos = result.find("**Page 1**").unwrap();
        let page2_pos = result.find("**Page 2**").unwrap();
        assert!(page1_pos < page2_pos, "Page 1 should appear before Page 2");
    }

    #[test]
    fn test_single_page_no_separator() {
        let pages = vec![(1, "Single page content".to_string())];

        let result = MarkdownExporter::export_with_pages(&pages).unwrap();

        // Should not have separator for single page
        assert!(
            !result.contains("---"),
            "Single page should not have separator"
        );
        assert!(result.contains("**Page 1**"));
        assert!(result.contains("Single page content"));
    }

    #[test]
    fn test_empty_pages_list() {
        let pages: Vec<(usize, String)> = vec![];
        let result = MarkdownExporter::export_with_pages(&pages).unwrap();

        // Should just have document header
        assert_eq!(result, "# Document\n\n");
    }

    #[test]
    fn test_metadata_and_pages_combined() {
        let metadata = DocumentMetadata {
            title: "Test Document".to_string(),
            page_count: 2,
            created_at: Some("2025-10-13".to_string()),
            author: Some("John Doe".to_string()),
        };

        let pages = vec![
            (1, "Page one text".to_string()),
            (2, "Page two text".to_string()),
        ];

        let result = MarkdownExporter::export_with_metadata_and_pages(&pages, &metadata).unwrap();

        // Check YAML frontmatter
        assert!(result.starts_with("---\n"));
        assert!(result.contains("title: Test Document"));
        assert!(result.contains("pages: 2"));
        assert!(result.contains("created: 2025-10-13"));
        assert!(result.contains("author: John Doe"));

        // Check title header
        assert!(result.contains("# Test Document"));

        // Check pages
        assert!(result.contains("**Page 1**"));
        assert!(result.contains("**Page 2**"));
        assert!(result.contains("Page one text"));
        assert!(result.contains("Page two text"));
    }

    #[test]
    fn test_page_separator_format() {
        let pages = vec![(1, "A".to_string()), (2, "B".to_string())];

        let result = MarkdownExporter::export_with_pages(&pages).unwrap();

        // Check separator format is exactly "\n\n---\n\n"
        assert!(result.contains("\n\n---\n\n"));
    }

    // JSON Exporter Tests
    #[cfg(feature = "semantic")]
    #[test]
    fn test_basic_json_export() {
        let text = "Hello, world!";
        let result = JsonExporter::export_simple(text).unwrap();

        // Should be valid JSON
        let parsed: serde_json::Value = serde_json::from_str(&result).unwrap();

        // Check structure
        assert_eq!(parsed["type"], "document");
        assert_eq!(parsed["content"], "Hello, world!");
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_json_parsing() {
        let text = "Sample content";
        let json = JsonExporter::export_simple(text).unwrap();

        // Parse back the JSON
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        assert!(parsed.is_object());
        assert_eq!(parsed["type"], "document");
        assert_eq!(parsed["content"], "Sample content");
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_json_with_metadata() {
        let metadata = DocumentMetadata {
            title: "Test Doc".to_string(),
            page_count: 10,
            created_at: Some("2025-10-13".to_string()),
            author: Some("Jane Doe".to_string()),
        };

        let json = JsonExporter::export_with_metadata("Content", &metadata).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        // Check metadata structure
        assert_eq!(parsed["metadata"]["title"], "Test Doc");
        assert_eq!(parsed["metadata"]["page_count"], 10);
        assert_eq!(parsed["metadata"]["created_at"], "2025-10-13");
        assert_eq!(parsed["metadata"]["author"], "Jane Doe");
        assert_eq!(parsed["content"], "Content");
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_json_pages_export() {
        let pages = vec![
            (1, "Page 1 text".to_string()),
            (2, "Page 2 text".to_string()),
            (3, "Page 3 text".to_string()),
        ];

        let json = JsonExporter::export_pages(&pages).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        // Check structure
        assert_eq!(parsed["type"], "document");
        assert_eq!(parsed["page_count"], 3);

        // Check pages array
        let pages_array = parsed["pages"].as_array().unwrap();
        assert_eq!(pages_array.len(), 3);

        assert_eq!(pages_array[0]["page_number"], 1);
        assert_eq!(pages_array[0]["content"], "Page 1 text");

        assert_eq!(pages_array[1]["page_number"], 2);
        assert_eq!(pages_array[1]["content"], "Page 2 text");

        assert_eq!(pages_array[2]["page_number"], 3);
        assert_eq!(pages_array[2]["content"], "Page 3 text");
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_json_exporter_options() {
        let exporter = JsonExporter::new(JsonOptions {
            pretty_print: false,
            include_chunks: false,
        });

        let result = exporter.export("test").unwrap();

        // Non-pretty print should not have newlines
        assert!(!result.contains('\n'));
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_json_pretty_print() {
        let exporter = JsonExporter::new(JsonOptions {
            pretty_print: true,
            include_chunks: false,
        });

        let result = exporter.export("test").unwrap();

        // Pretty print should have newlines and indentation
        assert!(result.contains('\n'));
        assert!(result.contains("  ")); // Indentation
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_json_empty_pages() {
        let pages: Vec<(usize, String)> = vec![];
        let json = JsonExporter::export_pages(&pages).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        assert_eq!(parsed["page_count"], 0);
        assert_eq!(parsed["pages"].as_array().unwrap().len(), 0);
    }

    // JSON Chunks Export Tests
    #[cfg(feature = "semantic")]
    #[test]
    fn test_export_with_chunks_basic() {
        use crate::ai::chunking::{ChunkMetadata, ChunkPosition};

        let chunks = vec![
            DocumentChunk {
                id: "chunk_0".to_string(),
                content: "First chunk content".to_string(),
                tokens: 10,
                page_numbers: vec![1],
                chunk_index: 0,
                metadata: ChunkMetadata {
                    position: ChunkPosition {
                        start_char: 0,
                        end_char: 100,
                        first_page: 1,
                        last_page: 1,
                    },
                    confidence: 1.0,
                    sentence_boundary_respected: true,
                },
            },
            DocumentChunk {
                id: "chunk_1".to_string(),
                content: "Second chunk content".to_string(),
                tokens: 12,
                page_numbers: vec![1, 2],
                chunk_index: 1,
                metadata: ChunkMetadata {
                    position: ChunkPosition {
                        start_char: 90,
                        end_char: 200,
                        first_page: 1,
                        last_page: 2,
                    },
                    confidence: 0.95,
                    sentence_boundary_respected: false,
                },
            },
        ];

        let json = JsonExporter::export_with_chunks(&chunks).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        // Validate structure
        assert_eq!(parsed["type"], "chunked_document");
        assert_eq!(parsed["chunk_count"], 2);

        let chunks_array = parsed["chunks"].as_array().unwrap();
        assert_eq!(chunks_array.len(), 2);

        // Validate first chunk
        assert_eq!(chunks_array[0]["id"], "chunk_0");
        assert_eq!(chunks_array[0]["tokens"], 10);
        assert_eq!(chunks_array[0]["content"], "First chunk content");
        assert_eq!(chunks_array[0]["page_numbers"][0], 1);
        assert_eq!(chunks_array[0]["chunk_index"], 0);
        assert_eq!(chunks_array[0]["metadata"]["confidence"], 1.0);
        assert_eq!(
            chunks_array[0]["metadata"]["sentence_boundary_respected"],
            true
        );
        assert_eq!(chunks_array[0]["metadata"]["position"]["start_char"], 0);
        assert_eq!(chunks_array[0]["metadata"]["position"]["end_char"], 100);
        assert_eq!(chunks_array[0]["metadata"]["position"]["first_page"], 1);
        assert_eq!(chunks_array[0]["metadata"]["position"]["last_page"], 1);

        // Validate second chunk
        assert_eq!(chunks_array[1]["id"], "chunk_1");
        assert_eq!(chunks_array[1]["chunk_index"], 1);
        assert_eq!(chunks_array[1]["tokens"], 12);
        assert_eq!(chunks_array[1]["page_numbers"].as_array().unwrap().len(), 2);
        // Use approximate comparison for f32 values serialized through JSON
        let confidence = chunks_array[1]["metadata"]["confidence"].as_f64().unwrap();
        assert!(
            (confidence - 0.95).abs() < 0.01,
            "Confidence should be approximately 0.95, got {}",
            confidence
        );
        assert_eq!(
            chunks_array[1]["metadata"]["sentence_boundary_respected"],
            false
        );
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_export_with_chunks_empty() {
        let chunks: Vec<DocumentChunk> = vec![];
        let json = JsonExporter::export_with_chunks(&chunks).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        assert_eq!(parsed["type"], "chunked_document");
        assert_eq!(parsed["chunk_count"], 0);
        assert_eq!(parsed["chunks"].as_array().unwrap().len(), 0);
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_export_with_chunks_position_metadata() {
        use crate::ai::chunking::{ChunkMetadata, ChunkPosition};

        // Test that all position metadata is correctly serialized
        let chunk = DocumentChunk {
            id: "test_chunk".to_string(),
            content: "Test content for position tracking".to_string(),
            tokens: 5,
            page_numbers: vec![5, 6, 7],
            chunk_index: 10,
            metadata: ChunkMetadata {
                position: ChunkPosition {
                    start_char: 1000,
                    end_char: 2000,
                    first_page: 5,
                    last_page: 7,
                },
                confidence: 0.85,
                sentence_boundary_respected: false,
            },
        };

        let json = JsonExporter::export_with_chunks(&[chunk]).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        assert_eq!(parsed["chunk_count"], 1);

        let chunk_obj = &parsed["chunks"][0];
        assert_eq!(chunk_obj["id"], "test_chunk");
        assert_eq!(chunk_obj["tokens"], 5);
        assert_eq!(chunk_obj["chunk_index"], 10);
        assert_eq!(chunk_obj["content"], "Test content for position tracking");

        // Validate page numbers array
        let pages = chunk_obj["page_numbers"].as_array().unwrap();
        assert_eq!(pages.len(), 3);
        assert_eq!(pages[0], 5);
        assert_eq!(pages[1], 6);
        assert_eq!(pages[2], 7);

        // Validate position metadata
        let pos = &chunk_obj["metadata"]["position"];
        assert_eq!(pos["start_char"], 1000);
        assert_eq!(pos["end_char"], 2000);
        assert_eq!(pos["first_page"], 5);
        assert_eq!(pos["last_page"], 7);

        // Validate other metadata (use approximate comparison for f32)
        let confidence = chunk_obj["metadata"]["confidence"].as_f64().unwrap();
        assert!(
            (confidence - 0.85).abs() < 0.01,
            "Confidence should be approximately 0.85, got {}",
            confidence
        );
        assert_eq!(chunk_obj["metadata"]["sentence_boundary_respected"], false);
    }

    #[cfg(feature = "semantic")]
    #[test]
    fn test_export_with_chunks_multiple_pages() {
        use crate::ai::chunking::{ChunkMetadata, ChunkPosition};

        // Test chunk spanning multiple pages
        let chunk = DocumentChunk {
            id: "multipage".to_string(),
            content: "Content spanning pages".to_string(),
            tokens: 20,
            page_numbers: vec![2, 3, 4],
            chunk_index: 0,
            metadata: ChunkMetadata {
                position: ChunkPosition {
                    start_char: 500,
                    end_char: 1500,
                    first_page: 2,
                    last_page: 4,
                },
                confidence: 1.0,
                sentence_boundary_respected: true,
            },
        };

        let json = JsonExporter::export_with_chunks(&[chunk]).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        let chunk_obj = &parsed["chunks"][0];
        let pages = chunk_obj["page_numbers"].as_array().unwrap();

        assert_eq!(pages.len(), 3);
        assert_eq!(chunk_obj["metadata"]["position"]["first_page"], 2);
        assert_eq!(chunk_obj["metadata"]["position"]["last_page"], 4);
    }

    // Contextual Format Tests
    #[test]
    fn test_contextual_simple() {
        let text = "This is sample content.";
        let result = ContextualFormat::export_simple(text).unwrap();

        assert!(result.contains("Document content:"));
        assert!(result.contains("This is sample content."));
        assert_eq!(result, "Document content:\n\nThis is sample content.");
    }

    #[test]
    fn test_contextual_with_metadata_full() {
        let metadata = DocumentMetadata {
            title: "Annual Report".to_string(),
            page_count: 25,
            created_at: Some("2025-01-15".to_string()),
            author: Some("Jane Smith".to_string()),
        };

        let result =
            ContextualFormat::export_with_metadata("Report content here.", &metadata).unwrap();

        // Check natural language introduction
        assert!(result.contains("This is a document titled \"Annual Report\""));
        assert!(result.contains("with 25 pages"));
        assert!(result.contains("written by Jane Smith"));
        assert!(result.contains("created on 2025-01-15"));
        assert!(result.contains("Content:"));
        assert!(result.contains("Report content here."));

        // Check sentence flow (singular vs plural)
        assert!(!result.contains("page,"));
        assert!(result.contains("pages,"));
    }

    #[test]
    fn test_contextual_with_metadata_minimal() {
        let metadata = DocumentMetadata {
            title: "Simple Doc".to_string(),
            page_count: 1,
            created_at: None,
            author: None,
        };

        let result = ContextualFormat::export_with_metadata("Content", &metadata).unwrap();

        assert!(result.contains("titled \"Simple Doc\""));
        assert!(result.contains("with 1 page"));
        assert!(!result.contains("pages")); // Should use singular "page"
        assert!(!result.contains("written by"));
        assert!(!result.contains("created on"));
    }

    #[test]
    fn test_contextual_with_metadata_no_page_count() {
        let metadata = DocumentMetadata {
            title: "Test".to_string(),
            page_count: 0,
            created_at: None,
            author: None,
        };

        let result = ContextualFormat::export_with_metadata("Text", &metadata).unwrap();

        // When page_count is 0, should not mention pages
        assert!(!result.contains("with"));
        assert!(!result.contains("page"));
        assert!(result.contains("This is a document titled \"Test\"."));
    }

    #[test]
    fn test_contextual_with_pages() {
        let pages = vec![
            (1, "First page text".to_string()),
            (2, "Second page text".to_string()),
            (3, "Third page text".to_string()),
        ];

        let result = ContextualFormat::export_with_pages(&pages).unwrap();

        assert!(result.starts_with("Document content:\n\n"));
        assert!(result.contains("On page 1:\nFirst page text"));
        assert!(result.contains("On page 2:\nSecond page text"));
        assert!(result.contains("On page 3:\nThird page text"));
    }

    #[test]
    fn test_contextual_with_pages_empty() {
        let pages: Vec<(usize, String)> = vec![];
        let result = ContextualFormat::export_with_pages(&pages).unwrap();

        assert_eq!(result, "Document content:\n\n");
    }

    #[test]
    fn test_contextual_with_pages_single() {
        let pages = vec![(1, "Only page".to_string())];
        let result = ContextualFormat::export_with_pages(&pages).unwrap();

        assert!(result.contains("On page 1:\nOnly page"));
    }

    #[test]
    fn test_contextual_with_metadata_and_pages() {
        let metadata = DocumentMetadata {
            title: "Technical Guide".to_string(),
            page_count: 2,
            created_at: Some("2025-10-13".to_string()),
            author: Some("John Doe".to_string()),
        };

        let pages = vec![
            (1, "Introduction text".to_string()),
            (2, "Main content".to_string()),
        ];

        let result = ContextualFormat::export_with_metadata_and_pages(&pages, &metadata).unwrap();

        // Check metadata introduction
        assert!(result.contains("titled \"Technical Guide\""));
        assert!(result.contains("with 2 pages"));
        assert!(result.contains("written by John Doe"));
        assert!(result.contains("created on 2025-10-13"));

        // Check content section
        assert!(result.contains("Content:"));
        assert!(result.contains("On page 1:\nIntroduction text"));
        assert!(result.contains("On page 2:\nMain content"));
    }

    #[test]
    fn test_contextual_natural_language_flow() {
        // Test that the format reads naturally
        let metadata = DocumentMetadata {
            title: "Report".to_string(),
            page_count: 5,
            created_at: Some("2025-01-01".to_string()),
            author: Some("Alice".to_string()),
        };

        let result = ContextualFormat::export_with_metadata("Text", &metadata).unwrap();

        // Should read as a natural sentence
        assert!(result.starts_with("This is a document titled \"Report\" with 5 pages, written by Alice, created on 2025-01-01."));
    }

    #[test]
    fn test_contextual_empty_text() {
        let result = ContextualFormat::export_simple("").unwrap();
        assert_eq!(result, "Document content:\n\n");
    }
}