valyu 0.3.1

Official Rust SDK for the Valyu AI API
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
//! Type definitions for Valyu API requests and responses

use serde::{Deserialize, Serialize};

/// Request parameters for the Valyu DeepSearch API
///
/// # Example
///
/// ```
/// use valyu::DeepSearchRequest;
///
/// let request = DeepSearchRequest::new("quantum computing")
///     .with_max_results(10)
///     .with_search_type("web")
///     .with_fast_mode(true);
/// ```
#[derive(Debug, Clone, Serialize)]
pub struct DeepSearchRequest {
    /// The search query text (required)
    pub query: String,

    /// Maximum number of results to return (1-20, default: 5)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_num_results: Option<u8>,

    /// Type of search: "all", "web", "proprietary", or "news" (default: "all")
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search_type: Option<String>,

    /// Enable fast mode for reduced latency but shorter results
    #[serde(skip_serializing_if = "Option::is_none")]
    pub fast_mode: Option<bool>,

    /// Maximum cost per thousand retrievals in dollars (default: 20)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_price: Option<f64>,

    /// Relevance threshold (0.0-1.0, default: 0.5)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub relevance_threshold: Option<f64>,

    /// Specific domains/URLs/datasets to search
    #[serde(skip_serializing_if = "Option::is_none")]
    pub included_sources: Option<Vec<String>>,

    /// Sources to exclude from search
    #[serde(skip_serializing_if = "Option::is_none")]
    pub excluded_sources: Option<Vec<String>>,

    /// Natural language guide phrase for categorization
    #[serde(skip_serializing_if = "Option::is_none")]
    pub category: Option<String>,

    /// Response length: "short", "medium", "large", or "max"
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_length: Option<String>,

    /// 2-letter ISO country code
    #[serde(skip_serializing_if = "Option::is_none")]
    pub country_code: Option<String>,

    /// Whether this is a tool call (default: true)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub is_tool_call: Option<bool>,

    /// Start date for filtering results (YYYY-MM-DD)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start_date: Option<String>,

    /// End date for filtering results (YYYY-MM-DD)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub end_date: Option<String>,

    /// Return only URLs without content (only applies when search_type is "web" or "news")
    #[serde(skip_serializing_if = "Option::is_none")]
    pub url_only: Option<bool>,
}

impl DeepSearchRequest {
    /// Create a new DeepSearch request with just a query
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("quantum computing");
    /// ```
    pub fn new(query: impl Into<String>) -> Self {
        Self {
            query: query.into(),
            max_num_results: None,
            search_type: None,
            fast_mode: None,
            max_price: None,
            relevance_threshold: None,
            included_sources: None,
            excluded_sources: None,
            category: None,
            response_length: None,
            country_code: None,
            is_tool_call: None,
            start_date: None,
            end_date: None,
            url_only: None,
        }
    }

    /// Set the maximum number of results (1-20)
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_max_results(10);
    /// ```
    pub fn with_max_results(mut self, max: u8) -> Self {
        self.max_num_results = Some(max);
        self
    }

    /// Set the search type ("all", "web", or "proprietary")
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_search_type("web");
    /// ```
    pub fn with_search_type(mut self, search_type: impl Into<String>) -> Self {
        self.search_type = Some(search_type.into());
        self
    }

    /// Enable or disable fast mode
    ///
    /// Fast mode provides reduced latency but may return shorter results.
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_fast_mode(true);
    /// ```
    pub fn with_fast_mode(mut self, enabled: bool) -> Self {
        self.fast_mode = Some(enabled);
        self
    }

    /// Set the maximum price per thousand retrievals in dollars
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_max_price(10.0);
    /// ```
    pub fn with_max_price(mut self, price: f64) -> Self {
        self.max_price = Some(price);
        self
    }

    /// Set the relevance threshold (0.0-1.0)
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_relevance_threshold(0.7);
    /// ```
    pub fn with_relevance_threshold(mut self, threshold: f64) -> Self {
        self.relevance_threshold = Some(threshold);
        self
    }

    /// Set the response length ("short", "medium", "large", or "max")
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_response_length("medium");
    /// ```
    pub fn with_response_length(mut self, length: impl Into<String>) -> Self {
        self.response_length = Some(length.into());
        self
    }

    /// Set specific sources to include in the search
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI")
    ///     .with_included_sources(vec!["arxiv.org".to_string(), "nature.com".to_string()]);
    /// ```
    pub fn with_included_sources(mut self, sources: Vec<String>) -> Self {
        self.included_sources = Some(sources);
        self
    }

    /// Set specific sources to exclude from the search
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI")
    ///     .with_excluded_sources(vec!["example.com".to_string()]);
    /// ```
    pub fn with_excluded_sources(mut self, sources: Vec<String>) -> Self {
        self.excluded_sources = Some(sources);
        self
    }

    /// Set a natural language category guide phrase
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI")
    ///     .with_category("academic research");
    /// ```
    pub fn with_category(mut self, category: impl Into<String>) -> Self {
        self.category = Some(category.into());
        self
    }

    /// Set the country code (2-letter ISO code)
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_country_code("US");
    /// ```
    pub fn with_country_code(mut self, code: impl Into<String>) -> Self {
        self.country_code = Some(code.into());
        self
    }

    /// Set whether this is a tool call
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI").with_is_tool_call(false);
    /// ```
    pub fn with_is_tool_call(mut self, is_tool_call: bool) -> Self {
        self.is_tool_call = Some(is_tool_call);
        self
    }

    /// Set a date range for filtering results (YYYY-MM-DD format)
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("AI")
    ///     .with_date_range("2024-01-01", "2024-12-31");
    /// ```
    pub fn with_date_range(mut self, start: impl Into<String>, end: impl Into<String>) -> Self {
        self.start_date = Some(start.into());
        self.end_date = Some(end.into());
        self
    }

    /// Set url_only flag to return only URLs without content
    ///
    /// Only applies when search_type is "web" or "news"
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepSearchRequest;
    ///
    /// let request = DeepSearchRequest::new("quantum computing")
    ///     .with_search_type("web")
    ///     .with_url_only(true);
    /// ```
    pub fn with_url_only(mut self, url_only: bool) -> Self {
        self.url_only = Some(url_only);
        self
    }
}

/// Response from the Valyu DeepSearch API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepSearchResponse {
    /// Whether the request was successful
    pub success: bool,

    /// Error message if the request failed
    pub error: Option<String>,

    /// Transaction ID for tracking
    pub tx_id: Option<String>,

    /// The original query
    pub query: Option<String>,

    /// Array of search results
    pub results: Option<Vec<SearchResult>>,

    /// Breakdown of results by source type
    pub results_by_source: Option<ResultsBySource>,

    /// Total deduction per thousand retrievals
    pub total_deduction_pcm: Option<f64>,

    /// Total deduction in dollars
    pub total_deduction_dollars: Option<f64>,

    /// Total number of characters in results
    pub total_characters: Option<i32>,
}

/// Individual search result from the Valyu API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct SearchResult {
    /// Unique identifier for the result
    pub id: Option<String>,

    /// Title of the result
    pub title: Option<String>,

    /// URL of the source
    pub url: Option<String>,

    /// Content snippet or full text
    pub content: Option<String>,

    /// Description/summary of the result
    pub description: Option<String>,

    /// Source type (e.g., "web", "proprietary")
    pub source: Option<String>,

    /// Source type detail (e.g., "website")
    pub source_type: Option<String>,

    /// Data type ("structured" or "unstructured")
    pub data_type: Option<String>,

    /// Length of the content in characters
    pub length: Option<i32>,

    /// Price/cost of this result
    pub price: Option<f64>,

    /// URLs of associated images (can be object with numeric keys or simple map)
    pub image_url: Option<serde_json::Value>,

    /// Publication date (if available)
    pub publication_date: Option<String>,

    /// DOI (Digital Object Identifier) for academic papers
    pub doi: Option<String>,

    /// Citation information
    pub citation: Option<String>,

    /// Number of times this source has been cited
    pub citation_count: Option<i32>,

    /// List of authors
    pub authors: Option<Vec<String>>,

    /// Relevance score (0.0-1.0)
    pub relevance_score: Option<f64>,
}

/// Breakdown of results by source type
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct ResultsBySource {
    /// Number of web results
    pub web: Option<i32>,

    /// Number of proprietary/database results
    pub proprietary: Option<i32>,
}

// ========== Contents API Types ==========

/// Request parameters for the Valyu Contents API
///
/// Extract and process content from up to 10 URLs.
///
/// # Example
///
/// ```
/// use valyu::ContentsRequest;
///
/// let request = ContentsRequest::new(vec![
///     "https://example.com/article1".to_string(),
///     "https://example.com/article2".to_string(),
/// ])
/// .with_response_length("medium")
/// .with_extract_effort("high");
/// ```
#[derive(Debug, Clone, Serialize)]
pub struct ContentsRequest {
    /// Array of 1-10 URLs to process (must use http/https protocol)
    pub urls: Vec<String>,

    /// Controls output size: "short" (25K), "medium" (50K), "large" (100K), "max", or custom integer (1K-1M)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_length: Option<ResponseLength>,

    /// Extraction quality: "normal" (fastest), "high" (better quality), or "auto" (automatic)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub extract_effort: Option<String>,

    /// Summary instructions: boolean, custom string, or JSON schema for structured extraction
    #[serde(skip_serializing_if = "Option::is_none")]
    pub summary: Option<SummaryOption>,

    /// Maximum cost in dollars (defaults to 2x estimated cost)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_price_dollars: Option<f64>,
}

/// Response length configuration for Contents API
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ResponseLength {
    /// Predefined size: "short", "medium", "large", or "max"
    Preset(String),
    /// Custom size in characters (1K-1M)
    Custom(i32),
}

/// Summary configuration for Contents API
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SummaryOption {
    /// Boolean flag for default summarization
    Boolean(bool),
    /// Custom summarization instructions
    Instructions(String),
    /// JSON schema for structured extraction
    Schema(serde_json::Value),
}

impl ContentsRequest {
    /// Create a new Contents request with URLs
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec![
    ///     "https://example.com/article".to_string(),
    /// ]);
    /// ```
    pub fn new(urls: Vec<String>) -> Self {
        Self {
            urls,
            response_length: None,
            extract_effort: None,
            summary: None,
            max_price_dollars: None,
        }
    }

    /// Set the response length
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_response_length("medium");
    /// ```
    pub fn with_response_length(mut self, length: impl Into<String>) -> Self {
        self.response_length = Some(ResponseLength::Preset(length.into()));
        self
    }

    /// Set a custom response length in characters
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_custom_response_length(30000);
    /// ```
    pub fn with_custom_response_length(mut self, chars: i32) -> Self {
        self.response_length = Some(ResponseLength::Custom(chars));
        self
    }

    /// Set the extraction effort level
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_extract_effort("high");
    /// ```
    pub fn with_extract_effort(mut self, effort: impl Into<String>) -> Self {
        self.extract_effort = Some(effort.into());
        self
    }

    /// Enable or disable default summarization
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_summary(true);
    /// ```
    pub fn with_summary(mut self, enabled: bool) -> Self {
        self.summary = Some(SummaryOption::Boolean(enabled));
        self
    }

    /// Set custom summarization instructions
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_summary_instructions("Extract key findings and methodology");
    /// ```
    pub fn with_summary_instructions(mut self, instructions: impl Into<String>) -> Self {
        self.summary = Some(SummaryOption::Instructions(instructions.into()));
        self
    }

    /// Set a JSON schema for structured extraction
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    /// use serde_json::json;
    ///
    /// let schema = json!({
    ///     "type": "object",
    ///     "properties": {
    ///         "title": {"type": "string"},
    ///         "summary": {"type": "string"}
    ///     }
    /// });
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_summary_schema(schema);
    /// ```
    pub fn with_summary_schema(mut self, schema: serde_json::Value) -> Self {
        self.summary = Some(SummaryOption::Schema(schema));
        self
    }

    /// Set the maximum price in dollars
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::ContentsRequest;
    ///
    /// let request = ContentsRequest::new(vec!["https://example.com".to_string()])
    ///     .with_max_price_dollars(5.0);
    /// ```
    pub fn with_max_price_dollars(mut self, max_price: f64) -> Self {
        self.max_price_dollars = Some(max_price);
        self
    }
}

/// Response from the Valyu Contents API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct ContentsResponse {
    /// Whether the request was successful
    pub success: bool,

    /// Error message if the request failed
    pub error: Option<String>,

    /// Transaction ID for tracking
    pub tx_id: Option<String>,

    /// Array of processed content results
    pub results: Option<Vec<ContentResult>>,

    /// Number of URLs requested
    pub urls_requested: Option<i32>,

    /// Number of URLs successfully processed
    pub urls_processed: Option<i32>,

    /// Number of URLs that failed processing
    pub urls_failed: Option<i32>,

    /// Total cost in dollars
    pub total_cost_dollars: Option<f64>,

    /// Total number of characters in results
    pub total_characters: Option<i32>,
}

/// Individual content result from the Contents API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct ContentResult {
    /// Title of the content
    pub title: Option<String>,

    /// Source URL
    pub url: Option<String>,

    /// Extracted content (markdown or structured JSON)
    pub content: Option<serde_json::Value>,

    /// Description/summary
    pub description: Option<String>,

    /// Publication date
    pub publication_date: Option<String>,

    /// Extracted images
    pub images: Option<Vec<String>>,

    /// Cost for this URL
    pub cost_dollars: Option<f64>,

    /// Number of characters
    pub characters: Option<i32>,
}

// ========== Answer API Types ==========

/// Request parameters for the Valyu Answer API
///
/// Get AI-powered answers with automatic source retrieval.
///
/// # Example
///
/// ```
/// use valyu::AnswerRequest;
///
/// let request = AnswerRequest::new("What are the latest developments in quantum computing?")
///     .with_search_type("web")
///     .with_system_instructions("Focus on breakthroughs from 2024");
/// ```
#[derive(Debug, Clone, Serialize)]
pub struct AnswerRequest {
    /// The search query to process (required)
    pub query: String,

    /// Custom AI processing directives (max 2000 chars)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub system_instructions: Option<String>,

    /// JSON schema for structured responses
    #[serde(skip_serializing_if = "Option::is_none")]
    pub structured_output: Option<serde_json::Value>,

    /// Type of search: "all", "web", "proprietary", or "news" (default: "all")
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search_type: Option<String>,

    /// Enable fast mode for reduced latency
    #[serde(skip_serializing_if = "Option::is_none")]
    pub fast_mode: Option<bool>,

    /// Maximum CPM for search data (default: $30)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub data_max_price: Option<f64>,

    /// Specific domains/URLs/datasets to search
    #[serde(skip_serializing_if = "Option::is_none")]
    pub included_sources: Option<Vec<String>>,

    /// Sources to exclude from search
    #[serde(skip_serializing_if = "Option::is_none")]
    pub excluded_sources: Option<Vec<String>>,

    /// Start date for filtering results (YYYY-MM-DD)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start_date: Option<String>,

    /// End date for filtering results (YYYY-MM-DD)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub end_date: Option<String>,

    /// 2-letter ISO country code
    #[serde(skip_serializing_if = "Option::is_none")]
    pub country_code: Option<String>,

    /// Enable streaming responses via Server-Sent Events (default: false)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub streaming: Option<bool>,
}

impl AnswerRequest {
    /// Create a new Answer request with a query
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("What is quantum computing?");
    /// ```
    pub fn new(query: impl Into<String>) -> Self {
        Self {
            query: query.into(),
            system_instructions: None,
            structured_output: None,
            search_type: None,
            fast_mode: None,
            data_max_price: None,
            included_sources: None,
            excluded_sources: None,
            start_date: None,
            end_date: None,
            country_code: None,
            streaming: Some(false), // Explicitly disable streaming for non-streaming SDK
        }
    }

    /// Set custom system instructions for the AI
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_system_instructions("Focus on practical applications");
    /// ```
    pub fn with_system_instructions(mut self, instructions: impl Into<String>) -> Self {
        self.system_instructions = Some(instructions.into());
        self
    }

    /// Set a JSON schema for structured output
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    /// use serde_json::json;
    ///
    /// let schema = json!({
    ///     "type": "object",
    ///     "properties": {
    ///         "summary": {"type": "string"},
    ///         "key_points": {"type": "array"}
    ///     }
    /// });
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_structured_output(schema);
    /// ```
    pub fn with_structured_output(mut self, schema: serde_json::Value) -> Self {
        self.structured_output = Some(schema);
        self
    }

    /// Set the search type
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_search_type("web");
    /// ```
    pub fn with_search_type(mut self, search_type: impl Into<String>) -> Self {
        self.search_type = Some(search_type.into());
        self
    }

    /// Enable fast mode
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_fast_mode(true);
    /// ```
    pub fn with_fast_mode(mut self, enabled: bool) -> Self {
        self.fast_mode = Some(enabled);
        self
    }

    /// Set the maximum data price
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_data_max_price(20.0);
    /// ```
    pub fn with_data_max_price(mut self, price: f64) -> Self {
        self.data_max_price = Some(price);
        self
    }

    /// Set included sources
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_included_sources(vec!["arxiv.org".to_string()]);
    /// ```
    pub fn with_included_sources(mut self, sources: Vec<String>) -> Self {
        self.included_sources = Some(sources);
        self
    }

    /// Set excluded sources
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_excluded_sources(vec!["example.com".to_string()]);
    /// ```
    pub fn with_excluded_sources(mut self, sources: Vec<String>) -> Self {
        self.excluded_sources = Some(sources);
        self
    }

    /// Set date range for filtering
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_date_range("2024-01-01", "2024-12-31");
    /// ```
    pub fn with_date_range(mut self, start: impl Into<String>, end: impl Into<String>) -> Self {
        self.start_date = Some(start.into());
        self.end_date = Some(end.into());
        self
    }

    /// Set country code
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::AnswerRequest;
    ///
    /// let request = AnswerRequest::new("quantum computing")
    ///     .with_country_code("US");
    /// ```
    pub fn with_country_code(mut self, code: impl Into<String>) -> Self {
        self.country_code = Some(code.into());
        self
    }
}

/// Response from the Valyu Answer API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct AnswerResponse {
    /// Whether the request was successful
    pub success: bool,

    /// Error message if the request failed
    pub error: Option<String>,

    /// AI transaction ID
    pub ai_tx_id: Option<String>,

    /// The original query
    pub original_query: Option<String>,

    /// AI-generated response (string or structured object)
    pub contents: Option<serde_json::Value>,

    /// Data type: "unstructured" or "structured"
    pub data_type: Option<String>,

    /// Sources used for the answer
    pub search_results: Option<Vec<AnswerSearchResult>>,

    /// Search metadata
    pub search_metadata: Option<AnswerSearchMetadata>,

    /// AI usage statistics
    pub ai_usage: Option<AiUsage>,

    /// Cost breakdown
    pub cost: Option<AnswerCost>,
}

/// Search result included in Answer response
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct AnswerSearchResult {
    /// Result title
    pub title: Option<String>,

    /// Source URL
    pub url: Option<String>,

    /// Content snippet
    pub snippet: Option<String>,

    /// Publication date
    pub date: Option<String>,

    /// Content length
    pub length: Option<i32>,
}

/// Search metadata for Answer API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct AnswerSearchMetadata {
    /// Search transaction ID
    pub search_tx_id: Option<String>,

    /// Number of results found
    pub result_count: Option<i32>,

    /// Total characters retrieved
    pub total_characters: Option<i32>,
}

/// AI usage statistics
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct AiUsage {
    /// Input tokens used
    pub input_tokens: Option<i32>,

    /// Output tokens generated
    pub output_tokens: Option<i32>,
}

/// Cost breakdown for Answer API
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct AnswerCost {
    /// Total cost in dollars
    pub total_dollars: Option<f64>,

    /// Search cost in dollars
    pub search_dollars: Option<f64>,

    /// AI processing cost in dollars
    pub ai_dollars: Option<f64>,
}

// ========== DeepResearch API Types ==========

/// Research mode for DeepResearch API
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum DeepResearchMode {
    /// Fast mode - quick lookups, simple questions (1-2 min)
    Fast,
    /// Lite mode - moderate research depth (5-10 min)
    Lite,
    /// Heavy mode - comprehensive analysis (15-90 min)
    Heavy,
}

impl Default for DeepResearchMode {
    fn default() -> Self {
        DeepResearchMode::Lite
    }
}

/// Task status for DeepResearch
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum DeepResearchStatus {
    /// Task is waiting to start
    Queued,
    /// Task is actively researching
    Running,
    /// Task completed successfully
    Completed,
    /// Task failed
    Failed,
    /// Task was cancelled
    Cancelled,
}

/// File attachment for DeepResearch
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DeepResearchFileAttachment {
    /// Data URL (base64 encoded, e.g., "data:application/pdf;base64,...")
    pub data: String,
    /// Original filename
    pub filename: String,
    /// MIME type (e.g., "application/pdf", "image/png")
    #[serde(rename = "mediaType")]
    pub media_type: String,
    /// Optional context about this file
    #[serde(skip_serializing_if = "Option::is_none")]
    pub context: Option<String>,
}

/// MCP server configuration for DeepResearch
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DeepResearchMCPServerConfig {
    /// MCP server URL
    pub url: String,
    /// Server name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Custom tool prefix
    #[serde(skip_serializing_if = "Option::is_none", rename = "toolPrefix")]
    pub tool_prefix: Option<String>,
    /// Authentication configuration
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auth: Option<serde_json::Value>,
    /// Allowed tools
    #[serde(skip_serializing_if = "Option::is_none", rename = "allowedTools")]
    pub allowed_tools: Option<Vec<String>>,
}

/// Search configuration for DeepResearch
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DeepResearchSearchConfig {
    /// Type of search: "all", "web", "proprietary", or "news"
    #[serde(skip_serializing_if = "Option::is_none", rename = "searchType")]
    pub search_type: Option<String>,
    /// Sources to include in search
    #[serde(skip_serializing_if = "Option::is_none", rename = "includedSources")]
    pub included_sources: Option<Vec<String>>,
}

/// Request parameters for creating a DeepResearch task
///
/// # Example
///
/// ```
/// use valyu::{DeepResearchCreateRequest, DeepResearchMode};
///
/// let request = DeepResearchCreateRequest::new("What are the key differences between RAG and fine-tuning?")
///     .with_mode(DeepResearchMode::Lite)
///     .with_output_formats(vec!["markdown".to_string()]);
/// ```
#[derive(Debug, Clone, Serialize)]
pub struct DeepResearchCreateRequest {
    /// Research query or task description (required)
    pub input: String,

    /// Research mode: "fast", "lite", or "heavy"
    #[serde(skip_serializing_if = "Option::is_none")]
    pub model: Option<DeepResearchMode>,

    /// Output formats: ["markdown"], ["markdown", "pdf"], or JSON schema
    #[serde(skip_serializing_if = "Option::is_none", rename = "outputFormats")]
    pub output_formats: Option<Vec<serde_json::Value>>,

    /// Natural language strategy instructions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub strategy: Option<String>,

    /// Search configuration
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search: Option<DeepResearchSearchConfig>,

    /// URLs to extract content from (max 10)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub urls: Option<Vec<String>>,

    /// File attachments (max 10)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub files: Option<Vec<DeepResearchFileAttachment>>,

    /// MCP server configurations (max 5)
    #[serde(skip_serializing_if = "Option::is_none", rename = "mcpServers")]
    pub mcp_servers: Option<Vec<DeepResearchMCPServerConfig>>,

    /// Enable/disable code execution (default: true)
    #[serde(skip_serializing_if = "Option::is_none", rename = "codeExecution")]
    pub code_execution: Option<bool>,

    /// Previous DeepResearch IDs to use as context (max 3)
    #[serde(skip_serializing_if = "Option::is_none", rename = "previousReports")]
    pub previous_reports: Option<Vec<String>>,

    /// HTTPS URL for completion notification
    #[serde(skip_serializing_if = "Option::is_none", rename = "webhookUrl")]
    pub webhook_url: Option<String>,

    /// Custom metadata
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<serde_json::Value>,
}

impl DeepResearchCreateRequest {
    /// Create a new DeepResearch request with a query
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepResearchCreateRequest;
    ///
    /// let request = DeepResearchCreateRequest::new("Research market trends in AI");
    /// ```
    pub fn new(input: impl Into<String>) -> Self {
        Self {
            input: input.into(),
            model: None,
            output_formats: None,
            strategy: None,
            search: None,
            urls: None,
            files: None,
            mcp_servers: None,
            code_execution: None,
            previous_reports: None,
            webhook_url: None,
            metadata: None,
        }
    }

    /// Set the research mode
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::{DeepResearchCreateRequest, DeepResearchMode};
    ///
    /// let request = DeepResearchCreateRequest::new("AI research")
    ///     .with_mode(DeepResearchMode::Heavy);
    /// ```
    pub fn with_mode(mut self, mode: DeepResearchMode) -> Self {
        self.model = Some(mode);
        self
    }

    /// Set output formats (e.g., ["markdown"], ["markdown", "pdf"])
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepResearchCreateRequest;
    ///
    /// let request = DeepResearchCreateRequest::new("AI research")
    ///     .with_output_formats(vec!["markdown".to_string(), "pdf".to_string()]);
    /// ```
    pub fn with_output_formats(mut self, formats: Vec<String>) -> Self {
        self.output_formats = Some(formats.into_iter().map(serde_json::Value::String).collect());
        self
    }

    /// Set a JSON schema for structured output
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepResearchCreateRequest;
    /// use serde_json::json;
    ///
    /// let schema = json!({
    ///     "type": "object",
    ///     "properties": {
    ///         "summary": {"type": "string"},
    ///         "key_points": {"type": "array", "items": {"type": "string"}}
    ///     }
    /// });
    ///
    /// let request = DeepResearchCreateRequest::new("AI research")
    ///     .with_structured_output(schema);
    /// ```
    pub fn with_structured_output(mut self, schema: serde_json::Value) -> Self {
        self.output_formats = Some(vec![schema]);
        self
    }

    /// Set natural language strategy instructions
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepResearchCreateRequest;
    ///
    /// let request = DeepResearchCreateRequest::new("AI research")
    ///     .with_strategy("Focus on peer-reviewed sources and recent publications");
    /// ```
    pub fn with_strategy(mut self, strategy: impl Into<String>) -> Self {
        self.strategy = Some(strategy.into());
        self
    }

    /// Set search configuration
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::{DeepResearchCreateRequest, DeepResearchSearchConfig};
    ///
    /// let request = DeepResearchCreateRequest::new("AI research")
    ///     .with_search(DeepResearchSearchConfig {
    ///         search_type: Some("web".to_string()),
    ///         included_sources: Some(vec!["arxiv.org".to_string()]),
    ///     });
    /// ```
    pub fn with_search(mut self, search: DeepResearchSearchConfig) -> Self {
        self.search = Some(search);
        self
    }

    /// Set URLs to extract content from
    ///
    /// # Example
    ///
    /// ```
    /// use valyu::DeepResearchCreateRequest;
    ///
    /// let request = DeepResearchCreateRequest::new("Compare these articles")
    ///     .with_urls(vec!["https://example.com/article1".to_string()]);
    /// ```
    pub fn with_urls(mut self, urls: Vec<String>) -> Self {
        self.urls = Some(urls);
        self
    }

    /// Set file attachments
    pub fn with_files(mut self, files: Vec<DeepResearchFileAttachment>) -> Self {
        self.files = Some(files);
        self
    }

    /// Set MCP server configurations
    pub fn with_mcp_servers(mut self, servers: Vec<DeepResearchMCPServerConfig>) -> Self {
        self.mcp_servers = Some(servers);
        self
    }

    /// Enable or disable code execution
    pub fn with_code_execution(mut self, enabled: bool) -> Self {
        self.code_execution = Some(enabled);
        self
    }

    /// Set previous report IDs for context
    pub fn with_previous_reports(mut self, report_ids: Vec<String>) -> Self {
        self.previous_reports = Some(report_ids);
        self
    }

    /// Set webhook URL for completion notification
    pub fn with_webhook_url(mut self, url: impl Into<String>) -> Self {
        self.webhook_url = Some(url.into());
        self
    }

    /// Set custom metadata
    pub fn with_metadata(mut self, metadata: serde_json::Value) -> Self {
        self.metadata = Some(metadata);
        self
    }
}

/// Response from creating a DeepResearch task
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchCreateResponse {
    /// Whether the request was successful
    pub success: bool,

    /// Unique task identifier
    pub deepresearch_id: Option<String>,

    /// Current task status
    pub status: Option<DeepResearchStatus>,

    /// Research mode used
    pub model: Option<DeepResearchMode>,

    /// Task creation timestamp
    pub created_at: Option<String>,

    /// Custom metadata
    pub metadata: Option<serde_json::Value>,

    /// Whether the task is publicly accessible
    pub public: Option<bool>,

    /// Webhook secret for signature verification (only returned once)
    pub webhook_secret: Option<String>,

    /// Additional status message
    pub message: Option<String>,

    /// Error message if failed
    pub error: Option<String>,
}

/// Progress information for a running task
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchProgress {
    /// Current step number
    pub current_step: i32,
    /// Total number of steps
    pub total_steps: i32,
}

/// Source information from research
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchSource {
    /// Source title
    pub title: String,
    /// Source URL
    pub url: String,
    /// Content snippet
    pub snippet: Option<String>,
    /// Description
    pub description: Option<String>,
    /// Source type (web, pubmed, etc.)
    pub source: Option<String>,
    /// Organization ID
    pub org_id: Option<String>,
    /// Price/cost
    pub price: Option<f64>,
    /// Document ID
    pub id: Option<String>,
    /// DOI for academic papers
    pub doi: Option<String>,
    /// Document category
    pub category: Option<String>,
    /// Word count
    pub word_count: Option<i32>,
}

/// Image metadata from research
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchImage {
    /// Unique image identifier
    pub image_id: String,
    /// Image type: "chart" or "ai_generated"
    pub image_type: String,
    /// Associated DeepResearch ID
    pub deepresearch_id: String,
    /// Image title
    pub title: String,
    /// Image description
    pub description: Option<String>,
    /// Image URL
    pub image_url: String,
    /// S3 key
    pub s3_key: String,
    /// Creation timestamp
    pub created_at: i64,
    /// Chart type (if applicable)
    pub chart_type: Option<String>,
}

/// Usage and cost breakdown
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchUsage {
    /// Search cost in dollars
    pub search_cost: f64,
    /// Contents extraction cost in dollars
    pub contents_cost: f64,
    /// AI processing cost in dollars
    pub ai_cost: f64,
    /// Compute cost in dollars
    pub compute_cost: f64,
    /// Total cost in dollars
    pub total_cost: f64,
}

/// Response from getting task status
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchStatusResponse {
    /// Whether the request was successful
    pub success: bool,

    /// Unique task identifier
    pub deepresearch_id: Option<String>,

    /// Current task status
    pub status: Option<DeepResearchStatus>,

    /// Original research query
    pub query: Option<String>,

    /// Research mode used
    pub mode: Option<DeepResearchMode>,

    /// Requested output formats
    pub output_formats: Option<Vec<serde_json::Value>>,

    /// Task creation timestamp (Unix)
    pub created_at: Option<i64>,

    /// Whether the task is publicly accessible
    pub public: Option<bool>,

    /// Progress information (when running)
    pub progress: Option<DeepResearchProgress>,

    /// Conversation messages
    pub messages: Option<Vec<serde_json::Value>>,

    /// Completion timestamp (Unix)
    pub completed_at: Option<i64>,

    /// Research output (markdown string or JSON object)
    pub output: Option<serde_json::Value>,

    /// Output type: "markdown" or "json"
    pub output_type: Option<String>,

    /// PDF download URL (if requested)
    pub pdf_url: Option<String>,

    /// Generated images
    pub images: Option<Vec<DeepResearchImage>>,

    /// Sources used in research
    pub sources: Option<Vec<DeepResearchSource>>,

    /// Usage and cost breakdown
    pub usage: Option<DeepResearchUsage>,

    /// Error message if failed
    pub error: Option<String>,
}

/// Response from listing tasks
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchListResponse {
    /// Whether the request was successful
    pub success: bool,

    /// List of tasks
    pub data: Option<Vec<DeepResearchTaskListItem>>,

    /// Error message if failed
    pub error: Option<String>,
}

/// Minimal task info for list view
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchTaskListItem {
    /// Unique task identifier
    pub deepresearch_id: String,
    /// Research query
    pub query: String,
    /// Current status
    pub status: DeepResearchStatus,
    /// Creation timestamp (Unix)
    pub created_at: i64,
    /// Whether publicly accessible
    pub public: Option<bool>,
}

/// Response from update/cancel/delete operations
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DeepResearchOperationResponse {
    /// Whether the request was successful
    pub success: bool,

    /// Status message
    pub message: Option<String>,

    /// Task identifier
    pub deepresearch_id: Option<String>,

    /// Error message if failed
    pub error: Option<String>,
}

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

    #[test]
    fn test_request_builder() {
        let request = DeepSearchRequest::new("quantum computing")
            .with_max_results(10)
            .with_search_type("web")
            .with_fast_mode(true);

        assert_eq!(request.query, "quantum computing");
        assert_eq!(request.max_num_results, Some(10));
        assert_eq!(request.search_type, Some("web".to_string()));
        assert_eq!(request.fast_mode, Some(true));
    }

    #[test]
    fn test_request_serialization() {
        let request = DeepSearchRequest::new("test query")
            .with_max_results(5);

        let json = serde_json::to_string(&request).unwrap();
        assert!(json.contains("test query"));
        assert!(json.contains("max_num_results"));
    }
}