local-deep-research 0.2.3__py3-none-any.whl → 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. local_deep_research/__init__.py +1 -1
  2. local_deep_research/__version__.py +1 -0
  3. local_deep_research/advanced_search_system/filters/cross_engine_filter.py +5 -1
  4. local_deep_research/advanced_search_system/strategies/base_strategy.py +5 -2
  5. local_deep_research/advanced_search_system/strategies/iterdrag_strategy.py +23 -16
  6. local_deep_research/advanced_search_system/strategies/parallel_search_strategy.py +13 -6
  7. local_deep_research/advanced_search_system/strategies/rapid_search_strategy.py +4 -3
  8. local_deep_research/advanced_search_system/strategies/source_based_strategy.py +57 -62
  9. local_deep_research/advanced_search_system/strategies/standard_strategy.py +8 -4
  10. local_deep_research/api/research_functions.py +0 -46
  11. local_deep_research/citation_handler.py +2 -5
  12. local_deep_research/config/llm_config.py +25 -68
  13. local_deep_research/config/search_config.py +8 -21
  14. local_deep_research/defaults/default_settings.json +3996 -0
  15. local_deep_research/search_system.py +34 -31
  16. local_deep_research/utilities/db_utils.py +22 -3
  17. local_deep_research/utilities/search_utilities.py +10 -7
  18. local_deep_research/web/app.py +3 -23
  19. local_deep_research/web/app_factory.py +1 -25
  20. local_deep_research/web/database/migrations.py +20 -418
  21. local_deep_research/web/routes/settings_routes.py +75 -364
  22. local_deep_research/web/services/research_service.py +43 -43
  23. local_deep_research/web/services/settings_manager.py +108 -315
  24. local_deep_research/web/services/settings_service.py +3 -56
  25. local_deep_research/web/static/js/components/research.js +1 -1
  26. local_deep_research/web/static/js/components/settings.js +16 -4
  27. local_deep_research/web/static/js/research_form.js +106 -0
  28. local_deep_research/web/templates/pages/research.html +3 -2
  29. local_deep_research/web_search_engines/engines/meta_search_engine.py +56 -21
  30. local_deep_research/web_search_engines/engines/search_engine_local.py +11 -2
  31. local_deep_research/web_search_engines/engines/search_engine_local_all.py +7 -11
  32. local_deep_research/web_search_engines/search_engine_factory.py +12 -64
  33. local_deep_research/web_search_engines/search_engines_config.py +123 -64
  34. {local_deep_research-0.2.3.dist-info → local_deep_research-0.3.1.dist-info}/METADATA +16 -1
  35. {local_deep_research-0.2.3.dist-info → local_deep_research-0.3.1.dist-info}/RECORD +38 -39
  36. local_deep_research/config/config_files.py +0 -245
  37. local_deep_research/defaults/local_collections.toml +0 -53
  38. local_deep_research/defaults/main.toml +0 -80
  39. local_deep_research/defaults/search_engines.toml +0 -291
  40. {local_deep_research-0.2.3.dist-info → local_deep_research-0.3.1.dist-info}/WHEEL +0 -0
  41. {local_deep_research-0.2.3.dist-info → local_deep_research-0.3.1.dist-info}/entry_points.txt +0 -0
  42. {local_deep_research-0.2.3.dist-info → local_deep_research-0.3.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,3996 @@
1
+ {
2
+ "app.version": {
3
+ "category": null,
4
+ "description": "Version of the app this database is associated with.",
5
+ "editable": false,
6
+ "max_value": null,
7
+ "min_value": null,
8
+ "name": "App Version",
9
+ "options": null,
10
+ "step": null,
11
+ "type": "APP",
12
+ "ui_element": "text",
13
+ "value": "0.3.0",
14
+ "visible": false
15
+ },
16
+ "app.debug": {
17
+ "category": "app_interface",
18
+ "description": "Enable debug mode for the web application",
19
+ "editable": true,
20
+ "max_value": null,
21
+ "min_value": null,
22
+ "name": "Debug Mode",
23
+ "options": null,
24
+ "step": null,
25
+ "type": "APP",
26
+ "ui_element": "checkbox",
27
+ "value": true,
28
+ "visible": true
29
+ },
30
+ "app.enable_notifications": {
31
+ "category": "app_interface",
32
+ "description": "Enable browser notifications for research events",
33
+ "editable": true,
34
+ "max_value": null,
35
+ "min_value": null,
36
+ "name": "Enable Notifications",
37
+ "options": null,
38
+ "step": null,
39
+ "type": "APP",
40
+ "ui_element": "checkbox",
41
+ "value": true,
42
+ "visible": true
43
+ },
44
+ "app.enable_web": {
45
+ "category": "app_interface",
46
+ "description": "Enable the web server",
47
+ "editable": true,
48
+ "max_value": null,
49
+ "min_value": null,
50
+ "name": "Enable Web Server",
51
+ "options": null,
52
+ "step": null,
53
+ "type": "APP",
54
+ "ui_element": "checkbox",
55
+ "value": true,
56
+ "visible": true
57
+ },
58
+ "app.host": {
59
+ "category": "app_interface",
60
+ "description": "Host address to bind the web server",
61
+ "editable": true,
62
+ "max_value": null,
63
+ "min_value": null,
64
+ "name": "Web Host",
65
+ "options": null,
66
+ "step": null,
67
+ "type": "APP",
68
+ "ui_element": "text",
69
+ "value": "0.0.0.0",
70
+ "visible": true
71
+ },
72
+ "app.port": {
73
+ "category": "app_interface",
74
+ "description": "Port for the web server",
75
+ "editable": true,
76
+ "max_value": 65535.0,
77
+ "min_value": 1.0,
78
+ "name": "Web Port",
79
+ "options": null,
80
+ "step": null,
81
+ "type": "APP",
82
+ "ui_element": "number",
83
+ "value": 5000,
84
+ "visible": true
85
+ },
86
+ "app.theme": {
87
+ "category": "app_interface",
88
+ "description": "User interface theme",
89
+ "editable": true,
90
+ "max_value": null,
91
+ "min_value": null,
92
+ "name": "UI Theme",
93
+ "options": [
94
+ {
95
+ "label": "Dark",
96
+ "value": "dark"
97
+ },
98
+ {
99
+ "label": "Light",
100
+ "value": "light"
101
+ },
102
+ {
103
+ "label": "System Default",
104
+ "value": "system"
105
+ }
106
+ ],
107
+ "step": null,
108
+ "type": "APP",
109
+ "ui_element": "select",
110
+ "value": "dark",
111
+ "visible": true
112
+ },
113
+ "app.web_interface": {
114
+ "category": "app_interface",
115
+ "description": "Enable the web interface",
116
+ "editable": true,
117
+ "max_value": null,
118
+ "min_value": null,
119
+ "name": "Web Interface",
120
+ "options": null,
121
+ "step": null,
122
+ "type": "APP",
123
+ "ui_element": "checkbox",
124
+ "value": true,
125
+ "visible": true
126
+ },
127
+ "llm.llamacpp_f16_kv": {
128
+ "category": null,
129
+ "description": "Setting for llm.llamacpp_f16_kv",
130
+ "editable": true,
131
+ "max_value": null,
132
+ "min_value": null,
133
+ "name": "Llamacpp F16 Kv",
134
+ "options": null,
135
+ "step": null,
136
+ "type": "LLM",
137
+ "ui_element": "checkbox",
138
+ "value": true,
139
+ "visible": true
140
+ },
141
+ "llm.llamacpp_model_path": {
142
+ "category": null,
143
+ "description": "Setting for llm.llamacpp_model_path",
144
+ "editable": true,
145
+ "max_value": null,
146
+ "min_value": null,
147
+ "name": "Llamacpp Model Path",
148
+ "options": null,
149
+ "step": null,
150
+ "type": "LLM",
151
+ "ui_element": "text",
152
+ "value": "",
153
+ "visible": true
154
+ },
155
+ "llm.llamacpp_n_batch": {
156
+ "category": null,
157
+ "description": "Setting for llm.llamacpp_n_batch",
158
+ "editable": true,
159
+ "max_value": null,
160
+ "min_value": 1,
161
+ "name": "Llamacpp N Batch",
162
+ "options": null,
163
+ "step": null,
164
+ "type": "LLM",
165
+ "ui_element": "number",
166
+ "value": 512,
167
+ "visible": true
168
+ },
169
+ "llm.llamacpp_n_gpu_layers": {
170
+ "category": null,
171
+ "description": "Setting for llm.llamacpp_n_gpu_layers",
172
+ "editable": true,
173
+ "max_value": null,
174
+ "min_value": 0,
175
+ "name": "Llamacpp N Gpu Layers",
176
+ "options": null,
177
+ "step": null,
178
+ "type": "LLM",
179
+ "ui_element": "number",
180
+ "value": 1,
181
+ "visible": true
182
+ },
183
+ "llm.lmstudio.url": {
184
+ "category": null,
185
+ "description": "URL of the LMStudio endpoint.",
186
+ "editable": true,
187
+ "max_value": null,
188
+ "min_value": null,
189
+ "name": "Lmstudio Url",
190
+ "options": null,
191
+ "step": null,
192
+ "type": "LLM",
193
+ "ui_element": "text",
194
+ "value": "http://localhost:1234",
195
+ "visible": true
196
+ },
197
+ "llm.max_tokens": {
198
+ "category": "llm_parameters",
199
+ "description": "Maximum number of tokens in model responses",
200
+ "editable": true,
201
+ "max_value": 4096.0,
202
+ "min_value": 100.0,
203
+ "name": "Max Tokens",
204
+ "options": null,
205
+ "step": null,
206
+ "type": "LLM",
207
+ "ui_element": "number",
208
+ "value": 30000,
209
+ "visible": true
210
+ },
211
+ "llm.supports_max_tokens": {
212
+ "category": "llm_parameters",
213
+ "description": "Whether the LLM API supports the 'max_tokens' option.",
214
+ "editable": true,
215
+ "max_value": null,
216
+ "min_value": null,
217
+ "name": "Supports 'Max Tokens'",
218
+ "options": null,
219
+ "step": null,
220
+ "type": "LLM",
221
+ "ui_element": "checkbox",
222
+ "value": true,
223
+ "visible": true
224
+ },
225
+ "llm.model": {
226
+ "category": "llm_general",
227
+ "description": "Language model to use for research and analysis",
228
+ "editable": true,
229
+ "max_value": null,
230
+ "min_value": null,
231
+ "name": "LLM Model",
232
+ "options": [
233
+ {
234
+ "label": "GPT-4o (OpenAI)",
235
+ "value": "gpt-4o"
236
+ },
237
+ {
238
+ "label": "GPT-3.5 Turbo (OpenAI)",
239
+ "value": "gpt-3.5-turbo"
240
+ },
241
+ {
242
+ "label": "Claude 3.5 Sonnet (Anthropic)",
243
+ "value": "claude-3-5-sonnet-latest"
244
+ },
245
+ {
246
+ "label": "Claude 3 Opus (Anthropic)",
247
+ "value": "claude-3-opus-20240229"
248
+ },
249
+ {
250
+ "label": "Llama 3 (Meta)",
251
+ "value": "llama3"
252
+ },
253
+ {
254
+ "label": "Mistral (Mistral AI)",
255
+ "value": "mistral"
256
+ },
257
+ {
258
+ "label": "Mixtral (Mistral AI)",
259
+ "value": "mixtral"
260
+ }
261
+ ],
262
+ "step": null,
263
+ "type": "LLM",
264
+ "ui_element": "select",
265
+ "value": "gemma3:12b",
266
+ "visible": true
267
+ },
268
+ "llm.openai_endpoint.url": {
269
+ "category": null,
270
+ "description": "URL of the OpenAI-compatible endpoint.",
271
+ "editable": true,
272
+ "max_value": null,
273
+ "min_value": null,
274
+ "name": "Openai Endpoint Url",
275
+ "options": null,
276
+ "step": null,
277
+ "type": "LLM",
278
+ "ui_element": "text",
279
+ "value": "https://openrouter.ai/api/v1",
280
+ "visible": true
281
+ },
282
+ "llm.ollama.url": {
283
+ "category": null,
284
+ "description": "URL of the Ollama endpoint.",
285
+ "editable": true,
286
+ "max_value": null,
287
+ "min_value": null,
288
+ "name": "Ollama Endpoint Url",
289
+ "options": null,
290
+ "step": null,
291
+ "type": "LLM",
292
+ "ui_element": "text",
293
+ "value": "http://localhost:11434",
294
+ "visible": true
295
+ },
296
+ "llm.provider": {
297
+ "category": "llm_general",
298
+ "description": "Service provider for the language model",
299
+ "editable": true,
300
+ "max_value": null,
301
+ "min_value": null,
302
+ "name": "LLM Provider",
303
+ "options": [
304
+ {
305
+ "label": "OpenAI API",
306
+ "value": "openai"
307
+ },
308
+ {
309
+ "label": "Anthropic API",
310
+ "value": "anthropic"
311
+ },
312
+ {
313
+ "label": "Ollama (Local)",
314
+ "value": "ollama"
315
+ },
316
+ {
317
+ "label": "LM Studio (Local)",
318
+ "value": "lmstudio"
319
+ },
320
+ {
321
+ "label": "vLLM (Local)",
322
+ "value": "vllm"
323
+ },
324
+ {
325
+ "label": "Custom OpenAI-compatible API",
326
+ "value": "openai_endpoint"
327
+ }
328
+ ],
329
+ "step": null,
330
+ "type": "LLM",
331
+ "ui_element": "select",
332
+ "value": "OLLAMA",
333
+ "visible": true
334
+ },
335
+ "llm.temperature": {
336
+ "category": "llm_parameters",
337
+ "description": "Controls randomness in model outputs (0.0 - 1.0)",
338
+ "editable": true,
339
+ "max_value": 1.0,
340
+ "min_value": 0.0,
341
+ "name": "Temperature",
342
+ "options": null,
343
+ "step": 0.05,
344
+ "type": "LLM",
345
+ "ui_element": "slider",
346
+ "value": 0.7,
347
+ "visible": true
348
+ },
349
+ "llm.anthropic.api_key": {
350
+ "category": "llm_general",
351
+ "description": "API key to use for the Anthropic provider.",
352
+ "editable": true,
353
+ "max_value": null,
354
+ "min_value": null,
355
+ "name": "Anthropic API Key",
356
+ "options": null,
357
+ "step": null,
358
+ "type": "SEARCH",
359
+ "ui_element": "password",
360
+ "value": "ANTHROPIC_API_KEY",
361
+ "visible": true
362
+ },
363
+ "llm.openai.api_key": {
364
+ "category": "llm_general",
365
+ "description": "API key to use for the OpenAI provider.",
366
+ "editable": true,
367
+ "max_value": null,
368
+ "min_value": null,
369
+ "name": "OpenAI API Key",
370
+ "options": null,
371
+ "step": null,
372
+ "type": "SEARCH",
373
+ "ui_element": "password",
374
+ "value": "OPENAI_API_KEY",
375
+ "visible": true
376
+ },
377
+ "llm.openai_endpoint.api_key": {
378
+ "category": "llm_general",
379
+ "description": "API key to use for the OpenAI-compatible endpoint provider.",
380
+ "editable": true,
381
+ "max_value": null,
382
+ "min_value": null,
383
+ "name": "OpenAI Endpoint API Key",
384
+ "options": null,
385
+ "step": null,
386
+ "type": "SEARCH",
387
+ "ui_element": "password",
388
+ "value": "OPENAI_ENDPOINT_API_KEY",
389
+ "visible": true
390
+ },
391
+ "report.detailed_citations": {
392
+ "category": "report_parameters",
393
+ "description": "Include detailed citations in reports",
394
+ "editable": true,
395
+ "max_value": null,
396
+ "min_value": null,
397
+ "name": "Detailed Citations",
398
+ "options": null,
399
+ "step": null,
400
+ "type": "REPORT",
401
+ "ui_element": "checkbox",
402
+ "value": true,
403
+ "visible": true
404
+ },
405
+ "report.enable_fact_checking": {
406
+ "category": "report_parameters",
407
+ "description": "Enable fact checking for report contents",
408
+ "editable": true,
409
+ "max_value": null,
410
+ "min_value": null,
411
+ "name": "Enable Fact Checking",
412
+ "options": null,
413
+ "step": null,
414
+ "type": "REPORT",
415
+ "ui_element": "checkbox",
416
+ "value": true,
417
+ "visible": true
418
+ },
419
+ "report.searches_per_section": {
420
+ "category": "report_parameters",
421
+ "description": "Number of searches to run per report section",
422
+ "editable": true,
423
+ "max_value": 5.0,
424
+ "min_value": 1.0,
425
+ "name": "Searches Per Section",
426
+ "options": null,
427
+ "step": null,
428
+ "type": "REPORT",
429
+ "ui_element": "number",
430
+ "value": 2,
431
+ "visible": true
432
+ },
433
+ "search.iterations": {
434
+ "category": null,
435
+ "description": "Setting for search.iterations",
436
+ "editable": true,
437
+ "max_value": null,
438
+ "min_value": 1,
439
+ "name": "Search Iterations",
440
+ "options": null,
441
+ "step": null,
442
+ "type": "SEARCH",
443
+ "ui_element": "number",
444
+ "value": 2,
445
+ "visible": true
446
+ },
447
+ "search.max_filtered_results": {
448
+ "category": "search_parameters",
449
+ "description": "Maximum number of search results to display after relevance filtering",
450
+ "editable": true,
451
+ "max_value": 100,
452
+ "min_value": 1,
453
+ "name": "Max Filtered Results",
454
+ "options": null,
455
+ "step": 1,
456
+ "type": "SEARCH",
457
+ "ui_element": "number",
458
+ "value": 20,
459
+ "visible": true
460
+ },
461
+ "search.max_results": {
462
+ "category": "search_parameters",
463
+ "description": "Maximum number of search results to retrieve",
464
+ "editable": true,
465
+ "max_value": 50.0,
466
+ "min_value": 1,
467
+ "name": "Max Results",
468
+ "options": null,
469
+ "step": 1,
470
+ "type": "SEARCH",
471
+ "ui_element": "number",
472
+ "value": 50,
473
+ "visible": true
474
+ },
475
+ "search.final_max_results": {
476
+ "category": "search_parameters",
477
+ "description": "Maximum number of search results to include in the final report.",
478
+ "editable": true,
479
+ "max_value": 200.0,
480
+ "min_value": 1,
481
+ "name": "Final Max Results",
482
+ "options": null,
483
+ "step": 1,
484
+ "type": "SEARCH",
485
+ "ui_element": "number",
486
+ "value": 100,
487
+ "visible": true
488
+ },
489
+ "search.quality_check_urls": {
490
+ "category": null,
491
+ "description": "Setting for search.quality_check_urls",
492
+ "editable": true,
493
+ "max_value": null,
494
+ "min_value": null,
495
+ "name": "Quality Check Urls",
496
+ "options": null,
497
+ "step": null,
498
+ "type": "SEARCH",
499
+ "ui_element": "checkbox",
500
+ "value": true,
501
+ "visible": true
502
+ },
503
+ "search.questions_per_iteration": {
504
+ "category": "search_parameters",
505
+ "description": "Number of questions to generate per research cycle",
506
+ "editable": true,
507
+ "max_value": 10.0,
508
+ "min_value": 1.0,
509
+ "name": "Questions Per Iteration",
510
+ "options": null,
511
+ "step": null,
512
+ "type": "SEARCH",
513
+ "ui_element": "number",
514
+ "value": 2,
515
+ "visible": true
516
+ },
517
+ "search.region": {
518
+ "category": "search_parameters",
519
+ "description": "Geographic region for search results",
520
+ "editable": true,
521
+ "max_value": null,
522
+ "min_value": null,
523
+ "name": "Search Region",
524
+ "options": [
525
+ {
526
+ "label": "United States",
527
+ "value": "us"
528
+ },
529
+ {
530
+ "label": "United Kingdom",
531
+ "value": "uk"
532
+ },
533
+ {
534
+ "label": "France",
535
+ "value": "fr"
536
+ },
537
+ {
538
+ "label": "Germany",
539
+ "value": "de"
540
+ },
541
+ {
542
+ "label": "Japan",
543
+ "value": "jp"
544
+ },
545
+ {
546
+ "label": "No Region (Worldwide)",
547
+ "value": "wt-wt"
548
+ }
549
+ ],
550
+ "step": null,
551
+ "type": "SEARCH",
552
+ "ui_element": "select",
553
+ "value": "us",
554
+ "visible": true
555
+ },
556
+ "search.safe_search": {
557
+ "category": "search_parameters",
558
+ "description": "Enable safe search filtering",
559
+ "editable": true,
560
+ "max_value": null,
561
+ "min_value": null,
562
+ "name": "Safe Search",
563
+ "options": null,
564
+ "step": null,
565
+ "type": "SEARCH",
566
+ "ui_element": "checkbox",
567
+ "value": true,
568
+ "visible": true
569
+ },
570
+ "search.search_language": {
571
+ "category": "search_parameters",
572
+ "description": "Language for search results",
573
+ "editable": true,
574
+ "max_value": null,
575
+ "min_value": null,
576
+ "name": "Search Language",
577
+ "options": [
578
+ {
579
+ "label": "English",
580
+ "value": "English"
581
+ },
582
+ {
583
+ "label": "French",
584
+ "value": "French"
585
+ },
586
+ {
587
+ "label": "German",
588
+ "value": "German"
589
+ },
590
+ {
591
+ "label": "Spanish",
592
+ "value": "Spanish"
593
+ },
594
+ {
595
+ "label": "Italian",
596
+ "value": "Italian"
597
+ },
598
+ {
599
+ "label": "Japanese",
600
+ "value": "Japanese"
601
+ },
602
+ {
603
+ "label": "Chinese",
604
+ "value": "Chinese"
605
+ }
606
+ ],
607
+ "step": null,
608
+ "type": "SEARCH",
609
+ "ui_element": "select",
610
+ "value": "English",
611
+ "visible": true
612
+ },
613
+ "search.searches_per_section": {
614
+ "category": "search_parameters",
615
+ "description": "Number of searches to run per report section",
616
+ "editable": true,
617
+ "max_value": 5.0,
618
+ "min_value": 1.0,
619
+ "name": "Searches Per Section",
620
+ "options": null,
621
+ "step": null,
622
+ "type": "SEARCH",
623
+ "ui_element": "number",
624
+ "value": 2,
625
+ "visible": true
626
+ },
627
+ "search.skip_relevance_filter": {
628
+ "category": "search_parameters",
629
+ "description": "Skip filtering search results for relevance",
630
+ "editable": true,
631
+ "max_value": null,
632
+ "min_value": null,
633
+ "name": "Skip Relevance Filter",
634
+ "options": null,
635
+ "step": null,
636
+ "type": "SEARCH",
637
+ "ui_element": "checkbox",
638
+ "value": false,
639
+ "visible": true
640
+ },
641
+ "search.snippets_only": {
642
+ "category": "search_parameters",
643
+ "description": "Only retrieve snippets instead of full search results",
644
+ "editable": true,
645
+ "max_value": null,
646
+ "min_value": null,
647
+ "name": "Snippets Only",
648
+ "options": null,
649
+ "step": null,
650
+ "type": "SEARCH",
651
+ "ui_element": "checkbox",
652
+ "value": true,
653
+ "visible": true
654
+ },
655
+ "search.time_period": {
656
+ "category": "search_parameters",
657
+ "description": "Time period for search results",
658
+ "editable": true,
659
+ "max_value": null,
660
+ "min_value": null,
661
+ "name": "Time Period",
662
+ "options": [
663
+ {
664
+ "label": "Past 24 hours",
665
+ "value": "d"
666
+ },
667
+ {
668
+ "label": "Past week",
669
+ "value": "w"
670
+ },
671
+ {
672
+ "label": "Past month",
673
+ "value": "m"
674
+ },
675
+ {
676
+ "label": "Past year",
677
+ "value": "y"
678
+ },
679
+ {
680
+ "label": "All time",
681
+ "value": "all"
682
+ }
683
+ ],
684
+ "step": null,
685
+ "type": "SEARCH",
686
+ "ui_element": "select",
687
+ "value": "y",
688
+ "visible": true
689
+ },
690
+ "search.tool": {
691
+ "category": "search_general",
692
+ "description": "Web search engine to use for research",
693
+ "editable": true,
694
+ "max_value": null,
695
+ "min_value": null,
696
+ "name": "Search Engine",
697
+ "options": [
698
+ {
699
+ "label": "Auto (Default)",
700
+ "value": "auto"
701
+ },
702
+ {
703
+ "label": "Arxiv",
704
+ "value": "arxiv"
705
+ },
706
+ {
707
+ "label": "Wikipedia",
708
+ "value": "wikipedia"
709
+ },
710
+ {
711
+ "label": "Pubmed",
712
+ "value": "pubmed"
713
+ },
714
+ {
715
+ "label": "Github",
716
+ "value": "github"
717
+ },
718
+ {
719
+ "label": "SerpAPI (Google)",
720
+ "value": "serpapi"
721
+ },
722
+ {
723
+ "label": "SearXNG (Self-hosted)",
724
+ "value": "searxng"
725
+ },
726
+ {
727
+ "label": "Google Programmable Search Engine",
728
+ "value": "google_pse"
729
+ },
730
+ {
731
+ "label": "DuckDuckGo",
732
+ "value": "duckduckgo"
733
+ },
734
+ {
735
+ "label": "Brave",
736
+ "value": "brave"
737
+ },
738
+ {
739
+ "label": "Wayback",
740
+ "value": "wayback"
741
+ },
742
+ {
743
+ "label": "Local All",
744
+ "value": "local_all"
745
+ }
746
+ ],
747
+ "step": null,
748
+ "type": "SEARCH",
749
+ "ui_element": "select",
750
+ "value": "auto",
751
+ "visible": true
752
+ },
753
+ "search.engine.web.arxiv.display_name": {
754
+ "category": "arxiv",
755
+ "description": "Display name to use in the U.I. for this search engine.",
756
+ "editable": false,
757
+ "max_value": null,
758
+ "min_value": null,
759
+ "name": "Display Name",
760
+ "options": null,
761
+ "step": null,
762
+ "type": "SEARCH",
763
+ "ui_element": "text",
764
+ "value": "ArXiv",
765
+ "visible": false
766
+ },
767
+ "search.engine.web.arxiv.description": {
768
+ "category": "arxiv",
769
+ "description": "Human-readable description of the search engine.",
770
+ "editable": false,
771
+ "max_value": null,
772
+ "min_value": null,
773
+ "name": "Description",
774
+ "options": null,
775
+ "step": null,
776
+ "type": "SEARCH",
777
+ "ui_element": "text",
778
+ "value": "Search papers uploaded to ArXiv.",
779
+ "visible": false
780
+ },
781
+ "search.engine.web.arxiv.class_name": {
782
+ "category": "arxiv",
783
+ "description": "Setting for arxiv.class_name",
784
+ "editable": true,
785
+ "max_value": null,
786
+ "min_value": null,
787
+ "name": "Class Name",
788
+ "options": null,
789
+ "step": null,
790
+ "type": "SEARCH",
791
+ "ui_element": "text",
792
+ "value": "ArXivSearchEngine",
793
+ "visible": true
794
+ },
795
+ "search.engine.web.arxiv.default_params.max_results": {
796
+ "category": "arxiv",
797
+ "description": "Setting for arxiv.default_params.max_results",
798
+ "editable": true,
799
+ "max_value": null,
800
+ "min_value": 1,
801
+ "name": "Max Results",
802
+ "options": null,
803
+ "step": 1,
804
+ "type": "SEARCH",
805
+ "ui_element": "number",
806
+ "value": 20,
807
+ "visible": true
808
+ },
809
+ "search.engine.web.arxiv.default_params.sort_by": {
810
+ "category": "arxiv",
811
+ "description": "Setting for arxiv.default_params.sort_by",
812
+ "editable": true,
813
+ "max_value": null,
814
+ "min_value": null,
815
+ "name": "Sort By",
816
+ "options": [
817
+ {
818
+ "label": "Relevance",
819
+ "value": "relevance"
820
+ },
821
+ {
822
+ "label": "Last Updated Date",
823
+ "value": "lastUpdatedDate"
824
+ },
825
+ {
826
+ "label": "Submitted Date",
827
+ "value": "submittedDate"
828
+ }
829
+ ],
830
+ "step": null,
831
+ "type": "SEARCH",
832
+ "ui_element": "select",
833
+ "value": "relevance",
834
+ "visible": true
835
+ },
836
+ "search.engine.web.arxiv.default_params.sort_order": {
837
+ "category": "arxiv",
838
+ "description": "Setting for arxiv.default_params.sort_order",
839
+ "editable": true,
840
+ "max_value": null,
841
+ "min_value": null,
842
+ "name": "Sort Order",
843
+ "options": [
844
+ {
845
+ "label": "Ascending",
846
+ "value": "ascending"
847
+ },
848
+ {
849
+ "label": "Descending",
850
+ "value": "descending"
851
+ }
852
+ ],
853
+ "step": null,
854
+ "type": "SEARCH",
855
+ "ui_element": "select",
856
+ "value": "descending",
857
+ "visible": true
858
+ },
859
+ "search.engine.web.arxiv.module_path": {
860
+ "category": "arxiv",
861
+ "description": "Setting for arxiv.module_path",
862
+ "editable": true,
863
+ "max_value": null,
864
+ "min_value": null,
865
+ "name": "Module Path",
866
+ "options": null,
867
+ "step": null,
868
+ "type": "SEARCH",
869
+ "ui_element": "text",
870
+ "value": ".engines.search_engine_arxiv",
871
+ "visible": true
872
+ },
873
+ "search.engine.web.arxiv.reliability": {
874
+ "category": "arxiv",
875
+ "description": "Setting for arxiv.reliability",
876
+ "editable": true,
877
+ "max_value": 1.0,
878
+ "min_value": 0.0,
879
+ "name": "Reliability",
880
+ "options": null,
881
+ "step": 0.05,
882
+ "type": "SEARCH",
883
+ "ui_element": "range",
884
+ "value": 0.9,
885
+ "visible": true
886
+ },
887
+ "search.engine.web.arxiv.requires_api_key": {
888
+ "category": "arxiv",
889
+ "description": "Setting for arxiv.requires_api_key",
890
+ "editable": true,
891
+ "max_value": null,
892
+ "min_value": null,
893
+ "name": "Requires Api Key",
894
+ "options": null,
895
+ "step": null,
896
+ "type": "SEARCH",
897
+ "ui_element": "checkbox",
898
+ "value": false,
899
+ "visible": true
900
+ },
901
+ "search.engine.web.arxiv.strengths": {
902
+ "category": "arxiv",
903
+ "description": "Setting for arxiv.strengths",
904
+ "editable": true,
905
+ "max_value": null,
906
+ "min_value": null,
907
+ "name": "Strengths",
908
+ "options": null,
909
+ "step": null,
910
+ "type": "SEARCH",
911
+ "ui_element": "text",
912
+ "value": [
913
+ "scientific papers",
914
+ "academic research",
915
+ "physics",
916
+ "computer science",
917
+ "mathematics",
918
+ "statistics",
919
+ "machine learning",
920
+ "preprints"
921
+ ],
922
+ "visible": true
923
+ },
924
+ "search.engine.web.arxiv.weaknesses": {
925
+ "category": "arxiv",
926
+ "description": "Setting for arxiv.weaknesses",
927
+ "editable": true,
928
+ "max_value": null,
929
+ "min_value": null,
930
+ "name": "Weaknesses",
931
+ "options": null,
932
+ "step": null,
933
+ "type": "SEARCH",
934
+ "ui_element": "text",
935
+ "value": [
936
+ "non-academic topics",
937
+ "consumer products",
938
+ "news",
939
+ "general information"
940
+ ],
941
+ "visible": true
942
+ },
943
+ "search.engine.auto.display_name": {
944
+ "category": "auto",
945
+ "description": "Display name to use in the U.I. for this search engine.",
946
+ "editable": false,
947
+ "max_value": null,
948
+ "min_value": null,
949
+ "name": "Display Name",
950
+ "options": null,
951
+ "step": null,
952
+ "type": "SEARCH",
953
+ "ui_element": "text",
954
+ "value": "Auto",
955
+ "visible": false
956
+ },
957
+ "search.engine.auto.description": {
958
+ "category": "auto",
959
+ "description": "Human-readable description of the search engine.",
960
+ "editable": false,
961
+ "max_value": null,
962
+ "min_value": null,
963
+ "name": "Description",
964
+ "options": null,
965
+ "step": null,
966
+ "type": "SEARCH",
967
+ "ui_element": "text",
968
+ "value": "Attempt to choose the best combination of search engines automatically.",
969
+ "visible": false
970
+ },
971
+ "search.engine.auto.class_name": {
972
+ "category": "auto",
973
+ "description": "Setting for auto.class_name",
974
+ "editable": true,
975
+ "max_value": null,
976
+ "min_value": null,
977
+ "name": "Class Name",
978
+ "options": null,
979
+ "step": null,
980
+ "type": "SEARCH",
981
+ "ui_element": "text",
982
+ "value": "MetaSearchEngine",
983
+ "visible": true
984
+ },
985
+ "search.engine.auto.default_params.max_engines_to_try": {
986
+ "category": "auto",
987
+ "description": "Setting for auto.default_params.max_engines_to_try",
988
+ "editable": true,
989
+ "max_value": null,
990
+ "min_value": 1,
991
+ "name": "Max Engines To Try",
992
+ "options": null,
993
+ "step": null,
994
+ "type": "SEARCH",
995
+ "ui_element": "number",
996
+ "value": 3,
997
+ "visible": true
998
+ },
999
+ "search.engine.auto.default_params.use_api_key_services": {
1000
+ "category": "auto",
1001
+ "description": "Setting for auto.default_params.use_api_key_services",
1002
+ "editable": true,
1003
+ "max_value": null,
1004
+ "min_value": null,
1005
+ "name": "Use Api Key Services",
1006
+ "options": null,
1007
+ "step": null,
1008
+ "type": "SEARCH",
1009
+ "ui_element": "checkbox",
1010
+ "value": true,
1011
+ "visible": true
1012
+ },
1013
+ "search.engine.auto.module_path": {
1014
+ "category": "auto",
1015
+ "description": "Setting for auto.module_path",
1016
+ "editable": true,
1017
+ "max_value": null,
1018
+ "min_value": null,
1019
+ "name": "Module Path",
1020
+ "options": null,
1021
+ "step": null,
1022
+ "type": "SEARCH",
1023
+ "ui_element": "text",
1024
+ "value": ".engines.meta_search_engine",
1025
+ "visible": true
1026
+ },
1027
+ "search.engine.auto.reliability": {
1028
+ "category": "auto",
1029
+ "description": "Setting for auto.reliability",
1030
+ "editable": true,
1031
+ "max_value": 1.0,
1032
+ "min_value": 0.0,
1033
+ "name": "Reliability",
1034
+ "options": null,
1035
+ "step": 0.05,
1036
+ "type": "SEARCH",
1037
+ "ui_element": "range",
1038
+ "value": 0.85,
1039
+ "visible": true
1040
+ },
1041
+ "search.engine.auto.requires_api_key": {
1042
+ "category": "auto",
1043
+ "description": "Setting for auto.requires_api_key",
1044
+ "editable": true,
1045
+ "max_value": null,
1046
+ "min_value": null,
1047
+ "name": "Requires Api Key",
1048
+ "options": null,
1049
+ "step": null,
1050
+ "type": "SEARCH",
1051
+ "ui_element": "checkbox",
1052
+ "value": false,
1053
+ "visible": true
1054
+ },
1055
+ "search.engine.auto.requires_llm": {
1056
+ "category": "auto",
1057
+ "description": "Setting for auto.requires_llm",
1058
+ "editable": true,
1059
+ "max_value": null,
1060
+ "min_value": null,
1061
+ "name": "Requires Llm",
1062
+ "options": null,
1063
+ "step": null,
1064
+ "type": "SEARCH",
1065
+ "ui_element": "checkbox",
1066
+ "value": true,
1067
+ "visible": true
1068
+ },
1069
+ "search.engine.auto.strengths": {
1070
+ "category": "auto",
1071
+ "description": "Setting for auto.strengths",
1072
+ "editable": true,
1073
+ "max_value": null,
1074
+ "min_value": null,
1075
+ "name": "Strengths",
1076
+ "options": null,
1077
+ "step": null,
1078
+ "type": "SEARCH",
1079
+ "ui_element": "text",
1080
+ "value": [
1081
+ "intelligent engine selection",
1082
+ "adaptable to query type",
1083
+ "fallback capabilities"
1084
+ ],
1085
+ "visible": true
1086
+ },
1087
+ "search.engine.auto.weaknesses": {
1088
+ "category": "auto",
1089
+ "description": "Setting for auto.weaknesses",
1090
+ "editable": true,
1091
+ "max_value": null,
1092
+ "min_value": null,
1093
+ "name": "Weaknesses",
1094
+ "options": null,
1095
+ "step": null,
1096
+ "type": "SEARCH",
1097
+ "ui_element": "text",
1098
+ "value": [
1099
+ "slightly slower due to LLM analysis"
1100
+ ],
1101
+ "visible": true
1102
+ },
1103
+ "search.engine.web.brave.display_name": {
1104
+ "category": "brave",
1105
+ "description": "Display name to use in the U.I. for this search engine.",
1106
+ "editable": false,
1107
+ "max_value": null,
1108
+ "min_value": null,
1109
+ "name": "Display Name",
1110
+ "options": null,
1111
+ "step": null,
1112
+ "type": "SEARCH",
1113
+ "ui_element": "text",
1114
+ "value": "Brave",
1115
+ "visible": false
1116
+ },
1117
+ "search.engine.web.brave.description": {
1118
+ "category": "brave",
1119
+ "description": "Human-readable description of the search engine.",
1120
+ "editable": false,
1121
+ "max_value": null,
1122
+ "min_value": null,
1123
+ "name": "Description",
1124
+ "options": null,
1125
+ "step": null,
1126
+ "type": "SEARCH",
1127
+ "ui_element": "text",
1128
+ "value": "Search the web using the Brave search engine.",
1129
+ "visible": false
1130
+ },
1131
+ "search.engine.web.brave.api_key": {
1132
+ "category": "brave",
1133
+ "description": "The Brave API key to use.",
1134
+ "editable": true,
1135
+ "max_value": null,
1136
+ "min_value": null,
1137
+ "name": "Api Key",
1138
+ "options": null,
1139
+ "step": null,
1140
+ "type": "SEARCH",
1141
+ "ui_element": "password",
1142
+ "value": "BRAVE_API_KEY",
1143
+ "visible": true
1144
+ },
1145
+ "search.engine.web.brave.class_name": {
1146
+ "category": "brave",
1147
+ "description": "Setting for brave.class_name",
1148
+ "editable": true,
1149
+ "max_value": null,
1150
+ "min_value": null,
1151
+ "name": "Class Name",
1152
+ "options": null,
1153
+ "step": null,
1154
+ "type": "SEARCH",
1155
+ "ui_element": "text",
1156
+ "value": "BraveSearchEngine",
1157
+ "visible": true
1158
+ },
1159
+ "search.engine.web.brave.default_params.region": {
1160
+ "category": "brave",
1161
+ "description": "Setting for brave.default_params.region",
1162
+ "editable": true,
1163
+ "max_value": null,
1164
+ "min_value": null,
1165
+ "name": "Region",
1166
+ "options": null,
1167
+ "step": null,
1168
+ "type": "SEARCH",
1169
+ "ui_element": "text",
1170
+ "value": "US",
1171
+ "visible": true
1172
+ },
1173
+ "search.engine.web.brave.default_params.safe_search": {
1174
+ "category": "brave",
1175
+ "description": "Setting for brave.default_params.safe_search",
1176
+ "editable": true,
1177
+ "max_value": null,
1178
+ "min_value": null,
1179
+ "name": "Safe Search",
1180
+ "options": null,
1181
+ "step": null,
1182
+ "type": "SEARCH",
1183
+ "ui_element": "checkbox",
1184
+ "value": true,
1185
+ "visible": true
1186
+ },
1187
+ "search.engine.web.brave.default_params.search_language": {
1188
+ "category": "brave",
1189
+ "description": "Setting for brave.default_params.search_language",
1190
+ "editable": true,
1191
+ "max_value": null,
1192
+ "min_value": null,
1193
+ "name": "Search Language",
1194
+ "options": null,
1195
+ "step": null,
1196
+ "type": "SEARCH",
1197
+ "ui_element": "text",
1198
+ "value": "English",
1199
+ "visible": true
1200
+ },
1201
+ "search.engine.web.brave.default_params.time_period": {
1202
+ "category": "brave",
1203
+ "description": "Setting for brave.default_params.time_period",
1204
+ "editable": true,
1205
+ "max_value": null,
1206
+ "min_value": null,
1207
+ "name": "Time Period",
1208
+ "options": null,
1209
+ "step": null,
1210
+ "type": "SEARCH",
1211
+ "ui_element": "text",
1212
+ "value": "y",
1213
+ "visible": true
1214
+ },
1215
+ "search.engine.web.brave.full_search_class": {
1216
+ "category": "brave",
1217
+ "description": "Setting for brave.full_search_class",
1218
+ "editable": true,
1219
+ "max_value": null,
1220
+ "min_value": null,
1221
+ "name": "Full Search Class",
1222
+ "options": null,
1223
+ "step": null,
1224
+ "type": "SEARCH",
1225
+ "ui_element": "text",
1226
+ "value": "FullSearchResults",
1227
+ "visible": true
1228
+ },
1229
+ "search.engine.web.brave.full_search_module": {
1230
+ "category": "brave",
1231
+ "description": "Setting for brave.full_search_module",
1232
+ "editable": true,
1233
+ "max_value": null,
1234
+ "min_value": null,
1235
+ "name": "Full Search Module",
1236
+ "options": null,
1237
+ "step": null,
1238
+ "type": "SEARCH",
1239
+ "ui_element": "text",
1240
+ "value": "local_deep_research.web_search_engines.engines.full_search",
1241
+ "visible": true
1242
+ },
1243
+ "search.engine.web.brave.module_path": {
1244
+ "category": "brave",
1245
+ "description": "Setting for brave.module_path",
1246
+ "editable": true,
1247
+ "max_value": null,
1248
+ "min_value": null,
1249
+ "name": "Module Path",
1250
+ "options": null,
1251
+ "step": null,
1252
+ "type": "SEARCH",
1253
+ "ui_element": "text",
1254
+ "value": ".engines.search_engine_brave",
1255
+ "visible": true
1256
+ },
1257
+ "search.engine.web.brave.reliability": {
1258
+ "category": "brave",
1259
+ "description": "Setting for brave.reliability",
1260
+ "editable": true,
1261
+ "max_value": 1.0,
1262
+ "min_value": 0.0,
1263
+ "name": "Reliability",
1264
+ "options": null,
1265
+ "step": 0.05,
1266
+ "type": "SEARCH",
1267
+ "ui_element": "range",
1268
+ "value": 0.7,
1269
+ "visible": true
1270
+ },
1271
+ "search.engine.web.brave.requires_api_key": {
1272
+ "category": "brave",
1273
+ "description": "Setting for brave.requires_api_key",
1274
+ "editable": true,
1275
+ "max_value": null,
1276
+ "min_value": null,
1277
+ "name": "Requires Api Key",
1278
+ "options": null,
1279
+ "step": null,
1280
+ "type": "SEARCH",
1281
+ "ui_element": "checkbox",
1282
+ "value": true,
1283
+ "visible": true
1284
+ },
1285
+ "search.engine.web.brave.strengths": {
1286
+ "category": "brave",
1287
+ "description": "Setting for brave.strengths",
1288
+ "editable": true,
1289
+ "max_value": null,
1290
+ "min_value": null,
1291
+ "name": "Strengths",
1292
+ "options": null,
1293
+ "step": null,
1294
+ "type": "SEARCH",
1295
+ "ui_element": "text",
1296
+ "value": [
1297
+ "privacy-focused web search",
1298
+ "product information",
1299
+ "reviews",
1300
+ "recent content",
1301
+ "news",
1302
+ "broad coverage"
1303
+ ],
1304
+ "visible": true
1305
+ },
1306
+ "search.engine.web.brave.supports_full_search": {
1307
+ "category": "brave",
1308
+ "description": "Setting for brave.supports_full_search",
1309
+ "editable": true,
1310
+ "max_value": null,
1311
+ "min_value": null,
1312
+ "name": "Supports Full Search",
1313
+ "options": null,
1314
+ "step": null,
1315
+ "type": "SEARCH",
1316
+ "ui_element": "checkbox",
1317
+ "value": true,
1318
+ "visible": true
1319
+ },
1320
+ "search.engine.web.brave.weaknesses": {
1321
+ "category": "brave",
1322
+ "description": "Setting for brave.weaknesses",
1323
+ "editable": true,
1324
+ "max_value": null,
1325
+ "min_value": null,
1326
+ "name": "Weaknesses",
1327
+ "options": null,
1328
+ "step": null,
1329
+ "type": "SEARCH",
1330
+ "ui_element": "text",
1331
+ "value": [
1332
+ "requires API key with usage limits",
1333
+ "smaller index than Google"
1334
+ ],
1335
+ "visible": true
1336
+ },
1337
+ "general.enable_fact_checking": {
1338
+ "category": null,
1339
+ "description": "Setting for general.enable_fact_checking",
1340
+ "editable": true,
1341
+ "max_value": null,
1342
+ "min_value": null,
1343
+ "name": "Enable Fact Checking",
1344
+ "options": null,
1345
+ "step": null,
1346
+ "type": "APP",
1347
+ "ui_element": "text",
1348
+ "value": false,
1349
+ "visible": true
1350
+ },
1351
+ "general.knowledge_accumulation": {
1352
+ "category": null,
1353
+ "description": "Setting for general.knowledge_accumulation",
1354
+ "editable": true,
1355
+ "max_value": null,
1356
+ "min_value": null,
1357
+ "name": "Knowledge Accumulation",
1358
+ "options": null,
1359
+ "step": null,
1360
+ "type": "APP",
1361
+ "ui_element": "text",
1362
+ "value": "ITERATION",
1363
+ "visible": true
1364
+ },
1365
+ "general.knowledge_accumulation_context_limit": {
1366
+ "category": null,
1367
+ "description": "Setting for general.knowledge_accumulation_context_limit",
1368
+ "editable": true,
1369
+ "max_value": null,
1370
+ "min_value": null,
1371
+ "name": "Knowledge Accumulation Context Limit",
1372
+ "options": null,
1373
+ "step": null,
1374
+ "type": "APP",
1375
+ "ui_element": "text",
1376
+ "value": 2000000,
1377
+ "visible": true
1378
+ },
1379
+ "general.output_dir": {
1380
+ "category": null,
1381
+ "description": "Setting for general.output_dir",
1382
+ "editable": true,
1383
+ "max_value": null,
1384
+ "min_value": null,
1385
+ "name": "Output Dir",
1386
+ "options": null,
1387
+ "step": null,
1388
+ "type": "APP",
1389
+ "ui_element": "text",
1390
+ "value": "research_outputs",
1391
+ "visible": true
1392
+ },
1393
+ "search.engine.web.github.display_name": {
1394
+ "category": "github",
1395
+ "description": "Display name to use in the U.I. for this search engine.",
1396
+ "editable": false,
1397
+ "max_value": null,
1398
+ "min_value": null,
1399
+ "name": "Display Name",
1400
+ "options": null,
1401
+ "step": null,
1402
+ "type": "SEARCH",
1403
+ "ui_element": "text",
1404
+ "value": "Github",
1405
+ "visible": false
1406
+ },
1407
+ "search.engine.web.github.description": {
1408
+ "category": "github",
1409
+ "description": "Human-readable description of the search engine.",
1410
+ "editable": false,
1411
+ "max_value": null,
1412
+ "min_value": null,
1413
+ "name": "Description",
1414
+ "options": null,
1415
+ "step": null,
1416
+ "type": "SEARCH",
1417
+ "ui_element": "text",
1418
+ "value": "Search projects on Github.",
1419
+ "visible": false
1420
+ },
1421
+ "search.engine.web.github.class_name": {
1422
+ "category": "github",
1423
+ "description": "Setting for github.class_name",
1424
+ "editable": true,
1425
+ "max_value": null,
1426
+ "min_value": null,
1427
+ "name": "Class Name",
1428
+ "options": null,
1429
+ "step": null,
1430
+ "type": "SEARCH",
1431
+ "ui_element": "text",
1432
+ "value": "GitHubSearchEngine",
1433
+ "visible": true
1434
+ },
1435
+ "search.engine.web.github.default_params.include_issues": {
1436
+ "category": "github",
1437
+ "description": "Setting for github.default_params.include_issues",
1438
+ "editable": true,
1439
+ "max_value": null,
1440
+ "min_value": null,
1441
+ "name": "Include Issues",
1442
+ "options": null,
1443
+ "step": null,
1444
+ "type": "SEARCH",
1445
+ "ui_element": "checkbox",
1446
+ "value": false,
1447
+ "visible": true
1448
+ },
1449
+ "search.engine.web.github.default_params.include_readme": {
1450
+ "category": "github",
1451
+ "description": "Setting for github.default_params.include_readme",
1452
+ "editable": true,
1453
+ "max_value": null,
1454
+ "min_value": null,
1455
+ "name": "Include Readme",
1456
+ "options": null,
1457
+ "step": null,
1458
+ "type": "SEARCH",
1459
+ "ui_element": "checkbox",
1460
+ "value": true,
1461
+ "visible": true
1462
+ },
1463
+ "search.engine.web.github.default_params.max_results": {
1464
+ "category": "github",
1465
+ "description": "Setting for github.default_params.max_results",
1466
+ "editable": true,
1467
+ "max_value": null,
1468
+ "min_value": 1,
1469
+ "name": "Max Results",
1470
+ "options": null,
1471
+ "step": 1,
1472
+ "type": "SEARCH",
1473
+ "ui_element": "number",
1474
+ "value": 15,
1475
+ "visible": true
1476
+ },
1477
+ "search.engine.web.github.default_params.search_type": {
1478
+ "category": "github",
1479
+ "description": "Setting for github.default_params.search_type",
1480
+ "editable": true,
1481
+ "max_value": null,
1482
+ "min_value": null,
1483
+ "name": "Search Type",
1484
+ "options": [
1485
+ {
1486
+ "label": "Repositories",
1487
+ "value": "repositories"
1488
+ },
1489
+ {
1490
+ "label": "Code",
1491
+ "value": "code"
1492
+ },
1493
+ {
1494
+ "label": "Issues",
1495
+ "value": "issues"
1496
+ },
1497
+ {
1498
+ "label": "Users",
1499
+ "value": "users"
1500
+ }
1501
+ ],
1502
+ "step": null,
1503
+ "type": "SEARCH",
1504
+ "ui_element": "select",
1505
+ "value": "repositories",
1506
+ "visible": true
1507
+ },
1508
+ "search.engine.web.github.module_path": {
1509
+ "category": "github",
1510
+ "description": "Setting for github.module_path",
1511
+ "editable": true,
1512
+ "max_value": null,
1513
+ "min_value": null,
1514
+ "name": "Module Path",
1515
+ "options": null,
1516
+ "step": null,
1517
+ "type": "SEARCH",
1518
+ "ui_element": "text",
1519
+ "value": ".engines.search_engine_github",
1520
+ "visible": true
1521
+ },
1522
+ "search.engine.web.github.reliability": {
1523
+ "category": "github",
1524
+ "description": "Setting for github.reliability",
1525
+ "editable": true,
1526
+ "max_value": 1.0,
1527
+ "min_value": 0.0,
1528
+ "name": "Reliability",
1529
+ "options": null,
1530
+ "step": 0.05,
1531
+ "type": "SEARCH",
1532
+ "ui_element": "range",
1533
+ "value": 0.99,
1534
+ "visible": true
1535
+ },
1536
+ "search.engine.web.github.requires_api_key": {
1537
+ "category": "github",
1538
+ "description": "Setting for github.requires_api_key",
1539
+ "editable": true,
1540
+ "max_value": null,
1541
+ "min_value": null,
1542
+ "name": "Requires Api Key",
1543
+ "options": null,
1544
+ "step": null,
1545
+ "type": "SEARCH",
1546
+ "ui_element": "checkbox",
1547
+ "value": false,
1548
+ "visible": true
1549
+ },
1550
+ "search.engine.web.github.strengths": {
1551
+ "category": "github",
1552
+ "description": "Setting for github.strengths",
1553
+ "editable": true,
1554
+ "max_value": null,
1555
+ "min_value": null,
1556
+ "name": "Strengths",
1557
+ "options": null,
1558
+ "step": null,
1559
+ "type": "SEARCH",
1560
+ "ui_element": "text",
1561
+ "value": [
1562
+ "code repositories",
1563
+ "software documentation",
1564
+ "open source projects",
1565
+ "programming issues",
1566
+ "developer information",
1567
+ "technical documentation"
1568
+ ],
1569
+ "visible": true
1570
+ },
1571
+ "search.engine.web.github.supports_full_search": {
1572
+ "category": "github",
1573
+ "description": "Setting for github.supports_full_search",
1574
+ "editable": true,
1575
+ "max_value": null,
1576
+ "min_value": null,
1577
+ "name": "Supports Full Search",
1578
+ "options": null,
1579
+ "step": null,
1580
+ "type": "SEARCH",
1581
+ "ui_element": "checkbox",
1582
+ "value": true,
1583
+ "visible": true
1584
+ },
1585
+ "search.engine.web.github.weaknesses": {
1586
+ "category": "github",
1587
+ "description": "Setting for github.weaknesses",
1588
+ "editable": true,
1589
+ "max_value": null,
1590
+ "min_value": null,
1591
+ "name": "Weaknesses",
1592
+ "options": null,
1593
+ "step": null,
1594
+ "type": "SEARCH",
1595
+ "ui_element": "text",
1596
+ "value": [
1597
+ "non-technical content",
1598
+ "content outside GitHub",
1599
+ "rate limits without API key"
1600
+ ],
1601
+ "visible": true
1602
+ },
1603
+ "search.engine.web.google_pse.display_name": {
1604
+ "category": "google_pse",
1605
+ "description": "Display name to use in the U.I. for this search engine.",
1606
+ "editable": false,
1607
+ "max_value": null,
1608
+ "min_value": null,
1609
+ "name": "Display Name",
1610
+ "options": null,
1611
+ "step": null,
1612
+ "type": "SEARCH",
1613
+ "ui_element": "text",
1614
+ "value": "Google PSE",
1615
+ "visible": false
1616
+ },
1617
+ "search.engine.web.google_pse.description": {
1618
+ "category": "google_pse",
1619
+ "description": "Human-readable description of the search engine.",
1620
+ "editable": false,
1621
+ "max_value": null,
1622
+ "min_value": null,
1623
+ "name": "Description",
1624
+ "options": null,
1625
+ "step": null,
1626
+ "type": "SEARCH",
1627
+ "ui_element": "text",
1628
+ "value": "Search the web using Google's Programmable Search Engine API.",
1629
+ "visible": false
1630
+ },
1631
+ "search.engine.web.google_pse.api_key": {
1632
+ "category": "google_pse",
1633
+ "description": "The Google PSE API key to use.",
1634
+ "editable": true,
1635
+ "max_value": null,
1636
+ "min_value": null,
1637
+ "name": "Api Key",
1638
+ "options": null,
1639
+ "step": null,
1640
+ "type": "SEARCH",
1641
+ "ui_element": "password",
1642
+ "value": "GOOGLE_PSE_API_KEY",
1643
+ "visible": true
1644
+ },
1645
+ "search.engine.web.google_pse.class_name": {
1646
+ "category": "google_pse",
1647
+ "description": "Setting for google_pse.class_name",
1648
+ "editable": true,
1649
+ "max_value": null,
1650
+ "min_value": null,
1651
+ "name": "Class Name",
1652
+ "options": null,
1653
+ "step": null,
1654
+ "type": "SEARCH",
1655
+ "ui_element": "text",
1656
+ "value": "GooglePSESearchEngine",
1657
+ "visible": true
1658
+ },
1659
+ "search.engine.web.google_pse.default_params.region": {
1660
+ "category": "google_pse",
1661
+ "description": "Setting for google_pse.default_params.region",
1662
+ "editable": true,
1663
+ "max_value": null,
1664
+ "min_value": null,
1665
+ "name": "Region",
1666
+ "options": null,
1667
+ "step": null,
1668
+ "type": "SEARCH",
1669
+ "ui_element": "text",
1670
+ "value": "us",
1671
+ "visible": true
1672
+ },
1673
+ "search.engine.web.google_pse.default_params.safe_search": {
1674
+ "category": "google_pse",
1675
+ "description": "Setting for google_pse.default_params.safe_search",
1676
+ "editable": true,
1677
+ "max_value": null,
1678
+ "min_value": null,
1679
+ "name": "Safe Search",
1680
+ "options": null,
1681
+ "step": null,
1682
+ "type": "SEARCH",
1683
+ "ui_element": "checkbox",
1684
+ "value": true,
1685
+ "visible": true
1686
+ },
1687
+ "search.engine.web.google_pse.default_params.search_language": {
1688
+ "category": "google_pse",
1689
+ "description": "Setting for google_pse.default_params.search_language",
1690
+ "editable": true,
1691
+ "max_value": null,
1692
+ "min_value": null,
1693
+ "name": "Search Language",
1694
+ "options": null,
1695
+ "step": null,
1696
+ "type": "SEARCH",
1697
+ "ui_element": "text",
1698
+ "value": "English",
1699
+ "visible": true
1700
+ },
1701
+ "search.engine.web.google_pse.full_search_class": {
1702
+ "category": "google_pse",
1703
+ "description": "Setting for google_pse.full_search_class",
1704
+ "editable": true,
1705
+ "max_value": null,
1706
+ "min_value": null,
1707
+ "name": "Full Search Class",
1708
+ "options": null,
1709
+ "step": null,
1710
+ "type": "SEARCH",
1711
+ "ui_element": "text",
1712
+ "value": "FullSearchResults",
1713
+ "visible": true
1714
+ },
1715
+ "search.engine.web.google_pse.full_search_module": {
1716
+ "category": "google_pse",
1717
+ "description": "Setting for google_pse.full_search_module",
1718
+ "editable": true,
1719
+ "max_value": null,
1720
+ "min_value": null,
1721
+ "name": "Full Search Module",
1722
+ "options": null,
1723
+ "step": null,
1724
+ "type": "SEARCH",
1725
+ "ui_element": "text",
1726
+ "value": ".engines.full_search",
1727
+ "visible": true
1728
+ },
1729
+ "search.engine.web.google_pse.module_path": {
1730
+ "category": "google_pse",
1731
+ "description": "Setting for google_pse.module_path",
1732
+ "editable": true,
1733
+ "max_value": null,
1734
+ "min_value": null,
1735
+ "name": "Module Path",
1736
+ "options": null,
1737
+ "step": null,
1738
+ "type": "SEARCH",
1739
+ "ui_element": "text",
1740
+ "value": ".engines.search_engine_google_pse",
1741
+ "visible": true
1742
+ },
1743
+ "search.engine.web.google_pse.reliability": {
1744
+ "category": "google_pse",
1745
+ "description": "Setting for google_pse.reliability",
1746
+ "editable": true,
1747
+ "max_value": 1.0,
1748
+ "min_value": 0.0,
1749
+ "name": "Reliability",
1750
+ "options": null,
1751
+ "step": 0.05,
1752
+ "type": "SEARCH",
1753
+ "ui_element": "range",
1754
+ "value": 0.9,
1755
+ "visible": true
1756
+ },
1757
+ "search.engine.web.google_pse.requires_api_key": {
1758
+ "category": "google_pse",
1759
+ "description": "Setting for google_pse.requires_api_key",
1760
+ "editable": true,
1761
+ "max_value": null,
1762
+ "min_value": null,
1763
+ "name": "Requires Api Key",
1764
+ "options": null,
1765
+ "step": null,
1766
+ "type": "SEARCH",
1767
+ "ui_element": "checkbox",
1768
+ "value": true,
1769
+ "visible": true
1770
+ },
1771
+ "search.engine.web.google_pse.strengths": {
1772
+ "category": "google_pse",
1773
+ "description": "Setting for google_pse.strengths",
1774
+ "editable": true,
1775
+ "max_value": null,
1776
+ "min_value": null,
1777
+ "name": "Strengths",
1778
+ "options": null,
1779
+ "step": null,
1780
+ "type": "SEARCH",
1781
+ "ui_element": "text",
1782
+ "value": [
1783
+ "custom search scope",
1784
+ "high-quality results",
1785
+ "domain-specific search",
1786
+ "configurable search experience",
1787
+ "control over search index"
1788
+ ],
1789
+ "visible": true
1790
+ },
1791
+ "search.engine.web.google_pse.supports_full_search": {
1792
+ "category": "google_pse",
1793
+ "description": "Setting for google_pse.supports_full_search",
1794
+ "editable": true,
1795
+ "max_value": null,
1796
+ "min_value": null,
1797
+ "name": "Supports Full Search",
1798
+ "options": null,
1799
+ "step": null,
1800
+ "type": "SEARCH",
1801
+ "ui_element": "checkbox",
1802
+ "value": true,
1803
+ "visible": true
1804
+ },
1805
+ "search.engine.web.google_pse.weaknesses": {
1806
+ "category": "google_pse",
1807
+ "description": "Setting for google_pse.weaknesses",
1808
+ "editable": true,
1809
+ "max_value": null,
1810
+ "min_value": null,
1811
+ "name": "Weaknesses",
1812
+ "options": null,
1813
+ "step": null,
1814
+ "type": "SEARCH",
1815
+ "ui_element": "text",
1816
+ "value": [
1817
+ "requires API key with usage limits",
1818
+ "limited to 10,000 queries/day on free tier",
1819
+ "requires search engine configuration in Google Control Panel"
1820
+ ],
1821
+ "visible": true
1822
+ },
1823
+ "search.engine.local.local_all.display_name": {
1824
+ "category": "local_all",
1825
+ "description": "Display name to use in the U.I. for this search engine.",
1826
+ "editable": false,
1827
+ "max_value": null,
1828
+ "min_value": null,
1829
+ "name": "Display Name",
1830
+ "options": null,
1831
+ "step": null,
1832
+ "type": "SEARCH",
1833
+ "ui_element": "text",
1834
+ "value": "Local Documents",
1835
+ "visible": false
1836
+ },
1837
+ "search.engine.local.local_all.description": {
1838
+ "category": "local_all",
1839
+ "description": "Human-readable description of the search engine.",
1840
+ "editable": false,
1841
+ "max_value": null,
1842
+ "min_value": null,
1843
+ "name": "Description",
1844
+ "options": null,
1845
+ "step": null,
1846
+ "type": "SEARCH",
1847
+ "ui_element": "text",
1848
+ "value": "Search only local documents using RAG.",
1849
+ "visible": false
1850
+ },
1851
+ "search.engine.DEFAULT_SEARCH_ENGINE": {
1852
+ "category": "local_all",
1853
+ "description": "Setting for local_all.DEFAULT_SEARCH_ENGINE",
1854
+ "editable": true,
1855
+ "max_value": null,
1856
+ "min_value": null,
1857
+ "name": "Default Search Engine",
1858
+ "options": null,
1859
+ "step": null,
1860
+ "type": "SEARCH",
1861
+ "ui_element": "text",
1862
+ "value": "wikipedia",
1863
+ "visible": true
1864
+ },
1865
+ "search.engine.local.local_all.class_name": {
1866
+ "category": "local_all",
1867
+ "description": "Setting for local_all.class_name",
1868
+ "editable": true,
1869
+ "max_value": null,
1870
+ "min_value": null,
1871
+ "name": "Class Name",
1872
+ "options": null,
1873
+ "step": null,
1874
+ "type": "SEARCH",
1875
+ "ui_element": "text",
1876
+ "value": "LocalAllSearchEngine",
1877
+ "visible": true
1878
+ },
1879
+ "search.engine.local.local_all.module_path": {
1880
+ "category": "local_all",
1881
+ "description": "Setting for local_all.module_path",
1882
+ "editable": true,
1883
+ "max_value": null,
1884
+ "min_value": null,
1885
+ "name": "Module Path",
1886
+ "options": null,
1887
+ "step": null,
1888
+ "type": "SEARCH",
1889
+ "ui_element": "text",
1890
+ "value": ".engines.search_engine_local_all",
1891
+ "visible": true
1892
+ },
1893
+ "search.engine.local.local_all.reliability": {
1894
+ "category": "local_all",
1895
+ "description": "Setting for local_all.reliability",
1896
+ "editable": true,
1897
+ "max_value": 1.0,
1898
+ "min_value": 0.0,
1899
+ "name": "Reliability",
1900
+ "options": null,
1901
+ "step": 0.05,
1902
+ "type": "SEARCH",
1903
+ "ui_element": "range",
1904
+ "value": 0.85,
1905
+ "visible": true
1906
+ },
1907
+ "search.engine.local.local_all.requires_api_key": {
1908
+ "category": "local_all",
1909
+ "description": "Setting for local_all.requires_api_key",
1910
+ "editable": true,
1911
+ "max_value": null,
1912
+ "min_value": null,
1913
+ "name": "Requires Api Key",
1914
+ "options": null,
1915
+ "step": null,
1916
+ "type": "SEARCH",
1917
+ "ui_element": "checkbox",
1918
+ "value": false,
1919
+ "visible": true
1920
+ },
1921
+ "search.engine.local.local_all.requires_llm": {
1922
+ "category": "local_all",
1923
+ "description": "Setting for local_all.requires_llm",
1924
+ "editable": true,
1925
+ "max_value": null,
1926
+ "min_value": null,
1927
+ "name": "Requires Llm",
1928
+ "options": null,
1929
+ "step": null,
1930
+ "type": "SEARCH",
1931
+ "ui_element": "checkbox",
1932
+ "value": true,
1933
+ "visible": true
1934
+ },
1935
+ "search.engine.local.local_all.strengths": {
1936
+ "category": "local_all",
1937
+ "description": "Setting for local_all.strengths",
1938
+ "editable": true,
1939
+ "max_value": null,
1940
+ "min_value": null,
1941
+ "name": "Strengths",
1942
+ "options": null,
1943
+ "step": null,
1944
+ "type": "SEARCH",
1945
+ "ui_element": "text",
1946
+ "value": [
1947
+ "searches all local collections",
1948
+ "personal documents",
1949
+ "offline access"
1950
+ ],
1951
+ "visible": true
1952
+ },
1953
+ "search.engine.local.local_all.weaknesses": {
1954
+ "category": "local_all",
1955
+ "description": "Setting for local_all.weaknesses",
1956
+ "editable": true,
1957
+ "max_value": null,
1958
+ "min_value": null,
1959
+ "name": "Weaknesses",
1960
+ "options": null,
1961
+ "step": null,
1962
+ "type": "SEARCH",
1963
+ "ui_element": "text",
1964
+ "value": [
1965
+ "may return too many results",
1966
+ "requires indexing"
1967
+ ],
1968
+ "visible": true
1969
+ },
1970
+ "search.engine.local.personal_notes.cache_dir": {
1971
+ "category": "personal_notes",
1972
+ "description": "Setting for personal_notes.cache_dir",
1973
+ "editable": true,
1974
+ "max_value": null,
1975
+ "min_value": null,
1976
+ "name": "Cache Dir",
1977
+ "options": null,
1978
+ "step": null,
1979
+ "type": "SEARCH",
1980
+ "ui_element": "text",
1981
+ "value": "__CACHE_DIR__/local_search/personal_notes",
1982
+ "visible": true
1983
+ },
1984
+ "search.engine.local.personal_notes.chunk_overlap": {
1985
+ "category": "personal_notes",
1986
+ "description": "Setting for personal_notes.chunk_overlap",
1987
+ "editable": true,
1988
+ "max_value": null,
1989
+ "min_value": 0,
1990
+ "name": "Chunk Overlap",
1991
+ "options": null,
1992
+ "step": null,
1993
+ "type": "SEARCH",
1994
+ "ui_element": "number",
1995
+ "value": 100,
1996
+ "visible": true
1997
+ },
1998
+ "search.engine.local.personal_notes.chunk_size": {
1999
+ "category": "personal_notes",
2000
+ "description": "Setting for personal_notes.chunk_size",
2001
+ "editable": true,
2002
+ "max_value": null,
2003
+ "min_value": 1,
2004
+ "name": "Chunk Size",
2005
+ "options": null,
2006
+ "step": null,
2007
+ "type": "SEARCH",
2008
+ "ui_element": "number",
2009
+ "value": 500,
2010
+ "visible": true
2011
+ },
2012
+ "search.engine.local.personal_notes.description": {
2013
+ "category": "personal_notes",
2014
+ "description": "Setting for personal_notes.description",
2015
+ "editable": true,
2016
+ "max_value": null,
2017
+ "min_value": null,
2018
+ "name": "Description",
2019
+ "options": null,
2020
+ "step": null,
2021
+ "type": "SEARCH",
2022
+ "ui_element": "text",
2023
+ "value": "Personal notes and documents",
2024
+ "visible": true
2025
+ },
2026
+ "search.engine.local.personal_notes.embedding_device": {
2027
+ "category": "personal_notes",
2028
+ "description": "Setting for personal_notes.embedding_device",
2029
+ "editable": true,
2030
+ "max_value": null,
2031
+ "min_value": null,
2032
+ "name": "Embedding Device",
2033
+ "options": [
2034
+ {
2035
+ "label": "CPU",
2036
+ "value": "cpu"
2037
+ },
2038
+ {
2039
+ "label": "CUDA",
2040
+ "value": "cuda"
2041
+ }
2042
+ ],
2043
+ "step": null,
2044
+ "type": "SEARCH",
2045
+ "ui_element": "select",
2046
+ "value": "cpu",
2047
+ "visible": true
2048
+ },
2049
+ "search.engine.local.personal_notes.embedding_model": {
2050
+ "category": "personal_notes",
2051
+ "description": "Setting for personal_notes.embedding_model",
2052
+ "editable": true,
2053
+ "max_value": null,
2054
+ "min_value": null,
2055
+ "name": "Embedding Model",
2056
+ "options": null,
2057
+ "step": null,
2058
+ "type": "SEARCH",
2059
+ "ui_element": "text",
2060
+ "value": "all-MiniLM-L6-v2",
2061
+ "visible": true
2062
+ },
2063
+ "search.engine.local.personal_notes.embedding_model_type": {
2064
+ "category": "personal_notes",
2065
+ "description": "Model provider to use for generating document embeddings.",
2066
+ "editable": true,
2067
+ "max_value": null,
2068
+ "min_value": null,
2069
+ "name": "Embedding Model Type",
2070
+ "options": [
2071
+ {
2072
+ "label": "SentenceTransformers",
2073
+ "value": "sentence_transformers"
2074
+ },
2075
+ {
2076
+ "label": "Ollama",
2077
+ "value": "ollama"
2078
+ }
2079
+ ],
2080
+ "step": null,
2081
+ "type": "SEARCH",
2082
+ "ui_element": "select",
2083
+ "value": "sentence_transformers",
2084
+ "visible": true
2085
+ },
2086
+ "search.engine.local.personal_notes.enabled": {
2087
+ "category": "personal_notes",
2088
+ "description": "Setting for personal_notes.enabled",
2089
+ "editable": true,
2090
+ "max_value": null,
2091
+ "min_value": null,
2092
+ "name": "Enabled",
2093
+ "options": null,
2094
+ "step": null,
2095
+ "type": "SEARCH",
2096
+ "ui_element": "checkbox",
2097
+ "value": true,
2098
+ "visible": true
2099
+ },
2100
+ "search.engine.local.personal_notes.max_filtered_results": {
2101
+ "category": "personal_notes",
2102
+ "description": "Setting for personal_notes.max_filtered_results",
2103
+ "editable": true,
2104
+ "max_value": null,
2105
+ "min_value": null,
2106
+ "name": "Max Filtered Results",
2107
+ "options": null,
2108
+ "step": null,
2109
+ "type": "SEARCH",
2110
+ "ui_element": "text",
2111
+ "value": 10,
2112
+ "visible": true
2113
+ },
2114
+ "search.engine.local.personal_notes.max_results": {
2115
+ "category": "personal_notes",
2116
+ "description": "Setting for personal_notes.max_results",
2117
+ "editable": true,
2118
+ "max_value": null,
2119
+ "min_value": 1,
2120
+ "name": "Max Results",
2121
+ "options": null,
2122
+ "step": 1,
2123
+ "type": "SEARCH",
2124
+ "ui_element": "number",
2125
+ "value": 30,
2126
+ "visible": true
2127
+ },
2128
+ "search.engine.local.personal_notes.name": {
2129
+ "category": "personal_notes",
2130
+ "description": "Setting for personal_notes.name",
2131
+ "editable": true,
2132
+ "max_value": null,
2133
+ "min_value": null,
2134
+ "name": "Name",
2135
+ "options": null,
2136
+ "step": null,
2137
+ "type": "SEARCH",
2138
+ "ui_element": "text",
2139
+ "value": "Personal Notes",
2140
+ "visible": true
2141
+ },
2142
+ "search.engine.local.personal_notes.paths": {
2143
+ "category": "personal_notes",
2144
+ "description": "Setting for personal_notes.paths",
2145
+ "editable": true,
2146
+ "max_value": null,
2147
+ "min_value": null,
2148
+ "name": "Paths",
2149
+ "options": null,
2150
+ "step": null,
2151
+ "type": "SEARCH",
2152
+ "ui_element": "text",
2153
+ "value": [
2154
+ "@format ${DOCS_DIR}/personal_notes"
2155
+ ],
2156
+ "visible": true
2157
+ },
2158
+ "search.engine.local.personal_notes.reliability": {
2159
+ "category": "personal_notes",
2160
+ "description": "Setting for personal_notes.reliability",
2161
+ "editable": true,
2162
+ "max_value": 1.0,
2163
+ "min_value": 0.0,
2164
+ "name": "Reliability",
2165
+ "options": null,
2166
+ "step": 0.05,
2167
+ "type": "SEARCH",
2168
+ "ui_element": "range",
2169
+ "value": 0.75,
2170
+ "visible": true
2171
+ },
2172
+ "search.engine.local.personal_notes.strengths": {
2173
+ "category": "personal_notes",
2174
+ "description": "Setting for personal_notes.strengths",
2175
+ "editable": true,
2176
+ "max_value": null,
2177
+ "min_value": null,
2178
+ "name": "Strengths",
2179
+ "options": null,
2180
+ "step": null,
2181
+ "type": "SEARCH",
2182
+ "ui_element": "text",
2183
+ "value": [
2184
+ "personal knowledge",
2185
+ "notes",
2186
+ "private documents"
2187
+ ],
2188
+ "visible": true
2189
+ },
2190
+ "search.engine.local.personal_notes.weaknesses": {
2191
+ "category": "personal_notes",
2192
+ "description": "Setting for personal_notes.weaknesses",
2193
+ "editable": true,
2194
+ "max_value": null,
2195
+ "min_value": null,
2196
+ "name": "Weaknesses",
2197
+ "options": null,
2198
+ "step": null,
2199
+ "type": "SEARCH",
2200
+ "ui_element": "text",
2201
+ "value": [
2202
+ "subjective content",
2203
+ "informal information"
2204
+ ],
2205
+ "visible": true
2206
+ },
2207
+ "search.engine.local.project_docs.cache_dir": {
2208
+ "category": "project_docs",
2209
+ "description": "Setting for project_docs.cache_dir",
2210
+ "editable": true,
2211
+ "max_value": null,
2212
+ "min_value": null,
2213
+ "name": "Cache Dir",
2214
+ "options": null,
2215
+ "step": null,
2216
+ "type": "SEARCH",
2217
+ "ui_element": "text",
2218
+ "value": "__CACHE_DIR__/local_search/project_docs",
2219
+ "visible": true
2220
+ },
2221
+ "search.engine.local.project_docs.chunk_overlap": {
2222
+ "category": "project_docs",
2223
+ "description": "Setting for project_docs.chunk_overlap",
2224
+ "editable": true,
2225
+ "max_value": null,
2226
+ "min_value": 0,
2227
+ "name": "Chunk Overlap",
2228
+ "options": null,
2229
+ "step": null,
2230
+ "type": "SEARCH",
2231
+ "ui_element": "number",
2232
+ "value": 200,
2233
+ "visible": true
2234
+ },
2235
+ "search.engine.local.project_docs.chunk_size": {
2236
+ "category": "project_docs",
2237
+ "description": "Setting for project_docs.chunk_size",
2238
+ "editable": true,
2239
+ "max_value": null,
2240
+ "min_value": 1,
2241
+ "name": "Chunk Size",
2242
+ "options": null,
2243
+ "step": null,
2244
+ "type": "SEARCH",
2245
+ "ui_element": "number",
2246
+ "value": 1000,
2247
+ "visible": true
2248
+ },
2249
+ "search.engine.local.project_docs.description": {
2250
+ "category": "project_docs",
2251
+ "description": "Setting for project_docs.description",
2252
+ "editable": true,
2253
+ "max_value": null,
2254
+ "min_value": null,
2255
+ "name": "Description",
2256
+ "options": null,
2257
+ "step": null,
2258
+ "type": "SEARCH",
2259
+ "ui_element": "text",
2260
+ "value": "Project documentation and specifications",
2261
+ "visible": true
2262
+ },
2263
+ "search.engine.local.project_docs.embedding_device": {
2264
+ "category": "project_docs",
2265
+ "description": "Setting for project_docs.embedding_device",
2266
+ "editable": true,
2267
+ "max_value": null,
2268
+ "min_value": null,
2269
+ "name": "Embedding Device",
2270
+ "options": [
2271
+ {
2272
+ "label": "CPU",
2273
+ "value": "cpu"
2274
+ },
2275
+ {
2276
+ "label": "CUDA",
2277
+ "value": "cuda"
2278
+ }
2279
+ ],
2280
+ "step": null,
2281
+ "type": "SEARCH",
2282
+ "ui_element": "select",
2283
+ "value": "cpu",
2284
+ "visible": true
2285
+ },
2286
+ "search.engine.local.project_docs.embedding_model": {
2287
+ "category": "project_docs",
2288
+ "description": "Setting for project_docs.embedding_model",
2289
+ "editable": true,
2290
+ "max_value": null,
2291
+ "min_value": null,
2292
+ "name": "Embedding Model",
2293
+ "options": null,
2294
+ "step": null,
2295
+ "type": "SEARCH",
2296
+ "ui_element": "text",
2297
+ "value": "all-MiniLM-L6-v2",
2298
+ "visible": true
2299
+ },
2300
+ "search.engine.local.project_docs.embedding_model_type": {
2301
+ "category": "project_docs",
2302
+ "description": "Model provider to use for generating document embeddings.",
2303
+ "editable": true,
2304
+ "max_value": null,
2305
+ "min_value": null,
2306
+ "name": "Embedding Model Type",
2307
+ "options": [
2308
+ {
2309
+ "label": "SentenceTransformers",
2310
+ "value": "sentence_transformers"
2311
+ },
2312
+ {
2313
+ "label": "Ollama",
2314
+ "value": "ollama"
2315
+ }
2316
+ ],
2317
+ "step": null,
2318
+ "type": "SEARCH",
2319
+ "ui_element": "select",
2320
+ "value": "sentence_transformers",
2321
+ "visible": true
2322
+ },
2323
+ "search.engine.local.project_docs.enabled": {
2324
+ "category": "project_docs",
2325
+ "description": "Setting for project_docs.enabled",
2326
+ "editable": true,
2327
+ "max_value": null,
2328
+ "min_value": null,
2329
+ "name": "Enabled",
2330
+ "options": null,
2331
+ "step": null,
2332
+ "type": "SEARCH",
2333
+ "ui_element": "checkbox",
2334
+ "value": true,
2335
+ "visible": true
2336
+ },
2337
+ "search.engine.local.project_docs.max_filtered_results": {
2338
+ "category": "project_docs",
2339
+ "description": "Setting for project_docs.max_filtered_results",
2340
+ "editable": true,
2341
+ "max_value": null,
2342
+ "min_value": null,
2343
+ "name": "Max Filtered Results",
2344
+ "options": null,
2345
+ "step": null,
2346
+ "type": "SEARCH",
2347
+ "ui_element": "text",
2348
+ "value": 5,
2349
+ "visible": true
2350
+ },
2351
+ "search.engine.local.project_docs.max_results": {
2352
+ "category": "project_docs",
2353
+ "description": "Setting for project_docs.max_results",
2354
+ "editable": true,
2355
+ "max_value": null,
2356
+ "min_value": 1,
2357
+ "name": "Max Results",
2358
+ "options": null,
2359
+ "step": 1,
2360
+ "type": "SEARCH",
2361
+ "ui_element": "number",
2362
+ "value": 20,
2363
+ "visible": true
2364
+ },
2365
+ "search.engine.local.project_docs.name": {
2366
+ "category": "project_docs",
2367
+ "description": "Setting for project_docs.name",
2368
+ "editable": true,
2369
+ "max_value": null,
2370
+ "min_value": null,
2371
+ "name": "Name",
2372
+ "options": null,
2373
+ "step": null,
2374
+ "type": "SEARCH",
2375
+ "ui_element": "text",
2376
+ "value": "Project Documents",
2377
+ "visible": true
2378
+ },
2379
+ "search.engine.local.project_docs.paths": {
2380
+ "category": "project_docs",
2381
+ "description": "Setting for project_docs.paths",
2382
+ "editable": true,
2383
+ "max_value": null,
2384
+ "min_value": null,
2385
+ "name": "Paths",
2386
+ "options": null,
2387
+ "step": null,
2388
+ "type": "SEARCH",
2389
+ "ui_element": "text",
2390
+ "value": [
2391
+ "@format ${DOCS_DIR}/project_documents"
2392
+ ],
2393
+ "visible": true
2394
+ },
2395
+ "search.engine.local.project_docs.reliability": {
2396
+ "category": "project_docs",
2397
+ "description": "Setting for project_docs.reliability",
2398
+ "editable": true,
2399
+ "max_value": 1.0,
2400
+ "min_value": 0.0,
2401
+ "name": "Reliability",
2402
+ "options": null,
2403
+ "step": 0.05,
2404
+ "type": "SEARCH",
2405
+ "ui_element": "range",
2406
+ "value": 0.9,
2407
+ "visible": true
2408
+ },
2409
+ "search.engine.local.project_docs.strengths": {
2410
+ "category": "project_docs",
2411
+ "description": "Setting for project_docs.strengths",
2412
+ "editable": true,
2413
+ "max_value": null,
2414
+ "min_value": null,
2415
+ "name": "Strengths",
2416
+ "options": null,
2417
+ "step": null,
2418
+ "type": "SEARCH",
2419
+ "ui_element": "text",
2420
+ "value": [
2421
+ "project documentation",
2422
+ "specifications",
2423
+ "internal documents"
2424
+ ],
2425
+ "visible": true
2426
+ },
2427
+ "search.engine.local.project_docs.weaknesses": {
2428
+ "category": "project_docs",
2429
+ "description": "Setting for project_docs.weaknesses",
2430
+ "editable": true,
2431
+ "max_value": null,
2432
+ "min_value": null,
2433
+ "name": "Weaknesses",
2434
+ "options": null,
2435
+ "step": null,
2436
+ "type": "SEARCH",
2437
+ "ui_element": "text",
2438
+ "value": [
2439
+ "no external information",
2440
+ "limited to organizational knowledge"
2441
+ ],
2442
+ "visible": true
2443
+ },
2444
+ "search.engine.web.pubmed.display_name": {
2445
+ "category": "pubmed",
2446
+ "description": "Display name to use in the U.I. for this search engine.",
2447
+ "editable": false,
2448
+ "max_value": null,
2449
+ "min_value": null,
2450
+ "name": "Display Name",
2451
+ "options": null,
2452
+ "step": null,
2453
+ "type": "SEARCH",
2454
+ "ui_element": "text",
2455
+ "value": "PubMed",
2456
+ "visible": false
2457
+ },
2458
+ "search.engine.web.pubmed.description": {
2459
+ "category": "pubmed",
2460
+ "description": "Human-readable description of the search engine.",
2461
+ "editable": false,
2462
+ "max_value": null,
2463
+ "min_value": null,
2464
+ "name": "Description",
2465
+ "options": null,
2466
+ "step": null,
2467
+ "type": "SEARCH",
2468
+ "ui_element": "text",
2469
+ "value": "Search papers indexed by PubMed.",
2470
+ "visible": false
2471
+ },
2472
+ "search.engine.web.pubmed.api_key": {
2473
+ "category": "pubmed",
2474
+ "description": "The PubMed API key to use.",
2475
+ "editable": true,
2476
+ "max_value": null,
2477
+ "min_value": null,
2478
+ "name": "Api Key",
2479
+ "options": null,
2480
+ "step": null,
2481
+ "type": "SEARCH",
2482
+ "ui_element": "password",
2483
+ "value": "PUBMED_API_KEY",
2484
+ "visible": true
2485
+ },
2486
+ "search.engine.web.pubmed.class_name": {
2487
+ "category": "pubmed",
2488
+ "description": "Setting for pubmed.class_name",
2489
+ "editable": true,
2490
+ "max_value": null,
2491
+ "min_value": null,
2492
+ "name": "Class Name",
2493
+ "options": null,
2494
+ "step": null,
2495
+ "type": "SEARCH",
2496
+ "ui_element": "text",
2497
+ "value": "PubMedSearchEngine",
2498
+ "visible": true
2499
+ },
2500
+ "search.engine.web.pubmed.default_params.days_limit": {
2501
+ "category": "pubmed",
2502
+ "description": "Setting for pubmed.default_params.days_limit",
2503
+ "editable": true,
2504
+ "max_value": null,
2505
+ "min_value": 0,
2506
+ "name": "Days Limit",
2507
+ "options": null,
2508
+ "step": null,
2509
+ "type": "SEARCH",
2510
+ "ui_element": "number",
2511
+ "value": 0,
2512
+ "visible": true
2513
+ },
2514
+ "search.engine.web.pubmed.default_params.full_text_limit": {
2515
+ "category": "pubmed",
2516
+ "description": "Setting for pubmed.default_params.full_text_limit",
2517
+ "editable": true,
2518
+ "max_value": null,
2519
+ "min_value": 0,
2520
+ "name": "Full Text Limit",
2521
+ "options": null,
2522
+ "step": null,
2523
+ "type": "SEARCH",
2524
+ "ui_element": "number",
2525
+ "value": 3,
2526
+ "visible": true
2527
+ },
2528
+ "search.engine.web.pubmed.default_params.get_abstracts": {
2529
+ "category": "pubmed",
2530
+ "description": "Setting for pubmed.default_params.get_abstracts",
2531
+ "editable": true,
2532
+ "max_value": null,
2533
+ "min_value": null,
2534
+ "name": "Get Abstracts",
2535
+ "options": null,
2536
+ "step": null,
2537
+ "type": "SEARCH",
2538
+ "ui_element": "checkbox",
2539
+ "value": true,
2540
+ "visible": true
2541
+ },
2542
+ "search.engine.web.pubmed.default_params.get_full_text": {
2543
+ "category": "pubmed",
2544
+ "description": "Setting for pubmed.default_params.get_full_text",
2545
+ "editable": true,
2546
+ "max_value": null,
2547
+ "min_value": null,
2548
+ "name": "Get Full Text",
2549
+ "options": null,
2550
+ "step": null,
2551
+ "type": "SEARCH",
2552
+ "ui_element": "checkbox",
2553
+ "value": false,
2554
+ "visible": true
2555
+ },
2556
+ "search.engine.web.pubmed.default_params.max_results": {
2557
+ "category": "pubmed",
2558
+ "description": "Setting for pubmed.default_params.max_results",
2559
+ "editable": true,
2560
+ "max_value": null,
2561
+ "min_value": 1,
2562
+ "name": "Max Results",
2563
+ "options": null,
2564
+ "step": 1,
2565
+ "type": "SEARCH",
2566
+ "ui_element": "number",
2567
+ "value": 20,
2568
+ "visible": true
2569
+ },
2570
+ "search.engine.web.pubmed.default_params.optimize_queries": {
2571
+ "category": "pubmed",
2572
+ "description": "Setting for pubmed.default_params.optimize_queries",
2573
+ "editable": true,
2574
+ "max_value": null,
2575
+ "min_value": null,
2576
+ "name": "Optimize Queries",
2577
+ "options": null,
2578
+ "step": null,
2579
+ "type": "SEARCH",
2580
+ "ui_element": "checkbox",
2581
+ "value": true,
2582
+ "visible": true
2583
+ },
2584
+ "search.engine.web.pubmed.module_path": {
2585
+ "category": "pubmed",
2586
+ "description": "Setting for pubmed.module_path",
2587
+ "editable": true,
2588
+ "max_value": null,
2589
+ "min_value": null,
2590
+ "name": "Module Path",
2591
+ "options": null,
2592
+ "step": null,
2593
+ "type": "SEARCH",
2594
+ "ui_element": "text",
2595
+ "value": ".engines.search_engine_pubmed",
2596
+ "visible": true
2597
+ },
2598
+ "search.engine.web.pubmed.reliability": {
2599
+ "category": "pubmed",
2600
+ "description": "Setting for pubmed.reliability",
2601
+ "editable": true,
2602
+ "max_value": 1.0,
2603
+ "min_value": 0.0,
2604
+ "name": "Reliability",
2605
+ "options": null,
2606
+ "step": 0.05,
2607
+ "type": "SEARCH",
2608
+ "ui_element": "range",
2609
+ "value": 0.98,
2610
+ "visible": true
2611
+ },
2612
+ "search.engine.web.pubmed.requires_api_key": {
2613
+ "category": "pubmed",
2614
+ "description": "Setting for pubmed.requires_api_key",
2615
+ "editable": true,
2616
+ "max_value": null,
2617
+ "min_value": null,
2618
+ "name": "Requires Api Key",
2619
+ "options": null,
2620
+ "step": null,
2621
+ "type": "SEARCH",
2622
+ "ui_element": "checkbox",
2623
+ "value": false,
2624
+ "visible": true
2625
+ },
2626
+ "search.engine.web.pubmed.requires_llm": {
2627
+ "category": "pubmed",
2628
+ "description": "Setting for pubmed.requires_llm",
2629
+ "editable": true,
2630
+ "max_value": null,
2631
+ "min_value": null,
2632
+ "name": "Requires Llm",
2633
+ "options": null,
2634
+ "step": null,
2635
+ "type": "SEARCH",
2636
+ "ui_element": "checkbox",
2637
+ "value": true,
2638
+ "visible": true
2639
+ },
2640
+ "search.engine.web.pubmed.strengths": {
2641
+ "category": "pubmed",
2642
+ "description": "Setting for pubmed.strengths",
2643
+ "editable": true,
2644
+ "max_value": null,
2645
+ "min_value": null,
2646
+ "name": "Strengths",
2647
+ "options": null,
2648
+ "step": null,
2649
+ "type": "SEARCH",
2650
+ "ui_element": "text",
2651
+ "value": [
2652
+ "biomedical literature",
2653
+ "medical research",
2654
+ "clinical studies",
2655
+ "life sciences",
2656
+ "health information",
2657
+ "scientific papers"
2658
+ ],
2659
+ "visible": true
2660
+ },
2661
+ "search.engine.web.pubmed.weaknesses": {
2662
+ "category": "pubmed",
2663
+ "description": "Setting for pubmed.weaknesses",
2664
+ "editable": true,
2665
+ "max_value": null,
2666
+ "min_value": null,
2667
+ "name": "Weaknesses",
2668
+ "options": null,
2669
+ "step": null,
2670
+ "type": "SEARCH",
2671
+ "ui_element": "text",
2672
+ "value": [
2673
+ "non-medical topics",
2674
+ "very recent papers may be missing",
2675
+ "limited to published research"
2676
+ ],
2677
+ "visible": true
2678
+ },
2679
+ "search.engine.local.research_papers.cache_dir": {
2680
+ "category": "research_papers",
2681
+ "description": "Setting for research_papers.cache_dir",
2682
+ "editable": true,
2683
+ "max_value": null,
2684
+ "min_value": null,
2685
+ "name": "Cache Dir",
2686
+ "options": null,
2687
+ "step": null,
2688
+ "type": "SEARCH",
2689
+ "ui_element": "text",
2690
+ "value": "__CACHE_DIR__/local_search/research_papers",
2691
+ "visible": true
2692
+ },
2693
+ "search.engine.local.research_papers.chunk_overlap": {
2694
+ "category": "research_papers",
2695
+ "description": "Setting for research_papers.chunk_overlap",
2696
+ "editable": true,
2697
+ "max_value": null,
2698
+ "min_value": 0,
2699
+ "name": "Chunk Overlap",
2700
+ "options": null,
2701
+ "step": null,
2702
+ "type": "SEARCH",
2703
+ "ui_element": "number",
2704
+ "value": 150,
2705
+ "visible": true
2706
+ },
2707
+ "search.engine.local.research_papers.chunk_size": {
2708
+ "category": "research_papers",
2709
+ "description": "Setting for research_papers.chunk_size",
2710
+ "editable": true,
2711
+ "max_value": null,
2712
+ "min_value": 1,
2713
+ "name": "Chunk Size",
2714
+ "options": null,
2715
+ "step": null,
2716
+ "type": "SEARCH",
2717
+ "ui_element": "number",
2718
+ "value": 800,
2719
+ "visible": true
2720
+ },
2721
+ "search.engine.local.research_papers.description": {
2722
+ "category": "research_papers",
2723
+ "description": "Setting for research_papers.description",
2724
+ "editable": true,
2725
+ "max_value": null,
2726
+ "min_value": null,
2727
+ "name": "Description",
2728
+ "options": null,
2729
+ "step": null,
2730
+ "type": "SEARCH",
2731
+ "ui_element": "text",
2732
+ "value": "Academic research papers and articles",
2733
+ "visible": true
2734
+ },
2735
+ "search.engine.local.research_papers.embedding_device": {
2736
+ "category": "research_papers",
2737
+ "description": "Setting for research_papers.embedding_device",
2738
+ "editable": true,
2739
+ "max_value": null,
2740
+ "min_value": null,
2741
+ "name": "Embedding Device",
2742
+ "options": [
2743
+ {
2744
+ "label": "CPU",
2745
+ "value": "cpu"
2746
+ },
2747
+ {
2748
+ "label": "CUDA",
2749
+ "value": "cuda"
2750
+ }
2751
+ ],
2752
+ "step": null,
2753
+ "type": "SEARCH",
2754
+ "ui_element": "select",
2755
+ "value": "cpu",
2756
+ "visible": true
2757
+ },
2758
+ "search.engine.local.research_papers.embedding_model": {
2759
+ "category": "research_papers",
2760
+ "description": "Setting for research_papers.embedding_model",
2761
+ "editable": true,
2762
+ "max_value": null,
2763
+ "min_value": null,
2764
+ "name": "Embedding Model",
2765
+ "options": null,
2766
+ "step": null,
2767
+ "type": "SEARCH",
2768
+ "ui_element": "text",
2769
+ "value": "all-MiniLM-L6-v2",
2770
+ "visible": true
2771
+ },
2772
+ "search.engine.local.research_papers.embedding_model_type": {
2773
+ "category": "research_papers",
2774
+ "description": "Model provider to use for generating document embeddings.",
2775
+ "editable": true,
2776
+ "max_value": null,
2777
+ "min_value": null,
2778
+ "name": "Embedding Model Type",
2779
+ "options": [
2780
+ {
2781
+ "label": "SentenceTransformers",
2782
+ "value": "sentence_transformers"
2783
+ },
2784
+ {
2785
+ "label": "Ollama",
2786
+ "value": "ollama"
2787
+ }
2788
+ ],
2789
+ "step": null,
2790
+ "type": "SEARCH",
2791
+ "ui_element": "select",
2792
+ "value": "sentence_transformers",
2793
+ "visible": true
2794
+ },
2795
+ "search.engine.local.research_papers.enabled": {
2796
+ "category": "research_papers",
2797
+ "description": "Setting for research_papers.enabled",
2798
+ "editable": true,
2799
+ "max_value": null,
2800
+ "min_value": null,
2801
+ "name": "Enabled",
2802
+ "options": null,
2803
+ "step": null,
2804
+ "type": "SEARCH",
2805
+ "ui_element": "checkbox",
2806
+ "value": true,
2807
+ "visible": true
2808
+ },
2809
+ "search.engine.local.research_papers.max_filtered_results": {
2810
+ "category": "research_papers",
2811
+ "description": "Setting for research_papers.max_filtered_results",
2812
+ "editable": true,
2813
+ "max_value": null,
2814
+ "min_value": null,
2815
+ "name": "Max Filtered Results",
2816
+ "options": null,
2817
+ "step": null,
2818
+ "type": "SEARCH",
2819
+ "ui_element": "text",
2820
+ "value": 5,
2821
+ "visible": true
2822
+ },
2823
+ "search.engine.local.research_papers.max_results": {
2824
+ "category": "research_papers",
2825
+ "description": "Setting for research_papers.max_results",
2826
+ "editable": true,
2827
+ "max_value": null,
2828
+ "min_value": 1,
2829
+ "name": "Max Results",
2830
+ "options": null,
2831
+ "step": 1,
2832
+ "type": "SEARCH",
2833
+ "ui_element": "number",
2834
+ "value": 20,
2835
+ "visible": true
2836
+ },
2837
+ "search.engine.local.research_papers.name": {
2838
+ "category": "research_papers",
2839
+ "description": "Setting for research_papers.name",
2840
+ "editable": true,
2841
+ "max_value": null,
2842
+ "min_value": null,
2843
+ "name": "Name",
2844
+ "options": null,
2845
+ "step": null,
2846
+ "type": "SEARCH",
2847
+ "ui_element": "text",
2848
+ "value": "Research Papers",
2849
+ "visible": true
2850
+ },
2851
+ "search.engine.local.research_papers.paths": {
2852
+ "category": "research_papers",
2853
+ "description": "Setting for research_papers.paths",
2854
+ "editable": true,
2855
+ "max_value": null,
2856
+ "min_value": null,
2857
+ "name": "Paths",
2858
+ "options": null,
2859
+ "step": null,
2860
+ "type": "SEARCH",
2861
+ "ui_element": "text",
2862
+ "value": [
2863
+ "@format ${DOCS_DIR}/research_papers"
2864
+ ],
2865
+ "visible": true
2866
+ },
2867
+ "search.engine.local.research_papers.reliability": {
2868
+ "category": "research_papers",
2869
+ "description": "Setting for research_papers.reliability",
2870
+ "editable": true,
2871
+ "max_value": 1.0,
2872
+ "min_value": 0.0,
2873
+ "name": "Reliability",
2874
+ "options": null,
2875
+ "step": 0.05,
2876
+ "type": "SEARCH",
2877
+ "ui_element": "range",
2878
+ "value": 0.85,
2879
+ "visible": true
2880
+ },
2881
+ "search.engine.local.research_papers.strengths": {
2882
+ "category": "research_papers",
2883
+ "description": "Setting for research_papers.strengths",
2884
+ "editable": true,
2885
+ "max_value": null,
2886
+ "min_value": null,
2887
+ "name": "Strengths",
2888
+ "options": null,
2889
+ "step": null,
2890
+ "type": "SEARCH",
2891
+ "ui_element": "text",
2892
+ "value": [
2893
+ "academic research",
2894
+ "scientific papers",
2895
+ "scholarly content"
2896
+ ],
2897
+ "visible": true
2898
+ },
2899
+ "search.engine.local.research_papers.weaknesses": {
2900
+ "category": "research_papers",
2901
+ "description": "Setting for research_papers.weaknesses",
2902
+ "editable": true,
2903
+ "max_value": null,
2904
+ "min_value": null,
2905
+ "name": "Weaknesses",
2906
+ "options": null,
2907
+ "step": null,
2908
+ "type": "SEARCH",
2909
+ "ui_element": "text",
2910
+ "value": [
2911
+ "potentially outdated",
2912
+ "limited to collected papers"
2913
+ ],
2914
+ "visible": true
2915
+ },
2916
+ "search.engine.web.searxng.display_name": {
2917
+ "category": "searxng",
2918
+ "description": "Display name to use in the U.I. for this search engine.",
2919
+ "editable": false,
2920
+ "max_value": null,
2921
+ "min_value": null,
2922
+ "name": "Display Name",
2923
+ "options": null,
2924
+ "step": null,
2925
+ "type": "SEARCH",
2926
+ "ui_element": "text",
2927
+ "value": "SearXNG (Locally-hosted)",
2928
+ "visible": false
2929
+ },
2930
+ "search.engine.web.searxng.description": {
2931
+ "category": "searxng",
2932
+ "description": "Human-readable description of the search engine.",
2933
+ "editable": false,
2934
+ "max_value": null,
2935
+ "min_value": null,
2936
+ "name": "Description",
2937
+ "options": null,
2938
+ "step": null,
2939
+ "type": "SEARCH",
2940
+ "ui_element": "text",
2941
+ "value": "A locally-hosted meta-search engine.",
2942
+ "visible": false
2943
+ },
2944
+ "search.engine.web.searxng.api_key": {
2945
+ "category": "searxng",
2946
+ "description": "The SearXNG API key to use.",
2947
+ "editable": true,
2948
+ "max_value": null,
2949
+ "min_value": null,
2950
+ "name": "Api Key",
2951
+ "options": null,
2952
+ "step": null,
2953
+ "type": "SEARCH",
2954
+ "ui_element": "password",
2955
+ "value": "SEARXNG_API_KEY",
2956
+ "visible": true
2957
+ },
2958
+ "search.engine.web.searxng.class_name": {
2959
+ "category": "searxng",
2960
+ "description": "Setting for searxng.class_name",
2961
+ "editable": true,
2962
+ "max_value": null,
2963
+ "min_value": null,
2964
+ "name": "Class Name",
2965
+ "options": null,
2966
+ "step": null,
2967
+ "type": "SEARCH",
2968
+ "ui_element": "text",
2969
+ "value": "SearXNGSearchEngine",
2970
+ "visible": true
2971
+ },
2972
+ "search.engine.web.searxng.default_params.categories": {
2973
+ "category": "searxng",
2974
+ "description": "Setting for searxng.default_params.categories",
2975
+ "editable": true,
2976
+ "max_value": null,
2977
+ "min_value": null,
2978
+ "name": "Categories",
2979
+ "options": null,
2980
+ "step": null,
2981
+ "type": "SEARCH",
2982
+ "ui_element": "text",
2983
+ "value": [
2984
+ "general"
2985
+ ],
2986
+ "visible": true
2987
+ },
2988
+ "search.engine.web.searxng.default_params.delay_between_requests": {
2989
+ "category": "searxng",
2990
+ "description": "Setting for searxng.default_params.delay_between_requests",
2991
+ "editable": true,
2992
+ "max_value": null,
2993
+ "min_value": 0,
2994
+ "name": "Delay Between Requests",
2995
+ "options": null,
2996
+ "step": null,
2997
+ "type": "SEARCH",
2998
+ "ui_element": "number",
2999
+ "value": 0,
3000
+ "visible": true
3001
+ },
3002
+ "search.engine.web.searxng.default_params.include_full_content": {
3003
+ "category": "searxng",
3004
+ "description": "Setting for searxng.default_params.include_full_content",
3005
+ "editable": true,
3006
+ "max_value": null,
3007
+ "min_value": null,
3008
+ "name": "Include Full Content",
3009
+ "options": null,
3010
+ "step": null,
3011
+ "type": "SEARCH",
3012
+ "ui_element": "checkbox",
3013
+ "value": true,
3014
+ "visible": true
3015
+ },
3016
+ "search.engine.web.searxng.default_params.language": {
3017
+ "category": "searxng",
3018
+ "description": "Setting for searxng.default_params.language",
3019
+ "editable": true,
3020
+ "max_value": null,
3021
+ "min_value": null,
3022
+ "name": "Language",
3023
+ "options": null,
3024
+ "step": null,
3025
+ "type": "SEARCH",
3026
+ "ui_element": "text",
3027
+ "value": "en",
3028
+ "visible": true
3029
+ },
3030
+ "search.engine.web.searxng.default_params.max_results": {
3031
+ "category": "searxng",
3032
+ "description": "Setting for searxng.default_params.max_results",
3033
+ "editable": true,
3034
+ "max_value": null,
3035
+ "min_value": 1,
3036
+ "name": "Max Results",
3037
+ "options": null,
3038
+ "step": 1,
3039
+ "type": "SEARCH",
3040
+ "ui_element": "number",
3041
+ "value": 15,
3042
+ "visible": true
3043
+ },
3044
+ "search.engine.web.searxng.default_params.safe_search": {
3045
+ "category": "searxng",
3046
+ "description": "Setting for searxng.default_params.safe_search",
3047
+ "editable": true,
3048
+ "max_value": null,
3049
+ "min_value": null,
3050
+ "name": "Safe Search",
3051
+ "options": null,
3052
+ "step": null,
3053
+ "type": "SEARCH",
3054
+ "ui_element": "checkbox",
3055
+ "value": 1,
3056
+ "visible": true
3057
+ },
3058
+ "search.engine.web.searxng.full_search_class": {
3059
+ "category": "searxng",
3060
+ "description": "Setting for searxng.full_search_class",
3061
+ "editable": true,
3062
+ "max_value": null,
3063
+ "min_value": null,
3064
+ "name": "Full Search Class",
3065
+ "options": null,
3066
+ "step": null,
3067
+ "type": "SEARCH",
3068
+ "ui_element": "text",
3069
+ "value": "FullSearchResults",
3070
+ "visible": true
3071
+ },
3072
+ "search.engine.web.searxng.full_search_module": {
3073
+ "category": "searxng",
3074
+ "description": "Setting for searxng.full_search_module",
3075
+ "editable": true,
3076
+ "max_value": null,
3077
+ "min_value": null,
3078
+ "name": "Full Search Module",
3079
+ "options": null,
3080
+ "step": null,
3081
+ "type": "SEARCH",
3082
+ "ui_element": "text",
3083
+ "value": ".engines.full_search",
3084
+ "visible": true
3085
+ },
3086
+ "search.engine.web.searxng.module_path": {
3087
+ "category": "searxng",
3088
+ "description": "Setting for searxng.module_path",
3089
+ "editable": true,
3090
+ "max_value": null,
3091
+ "min_value": null,
3092
+ "name": "Module Path",
3093
+ "options": null,
3094
+ "step": null,
3095
+ "type": "SEARCH",
3096
+ "ui_element": "text",
3097
+ "value": ".engines.search_engine_searxng",
3098
+ "visible": true
3099
+ },
3100
+ "search.engine.web.searxng.reliability": {
3101
+ "category": "searxng",
3102
+ "description": "Setting for searxng.reliability",
3103
+ "editable": true,
3104
+ "max_value": 1.0,
3105
+ "min_value": 0.0,
3106
+ "name": "Reliability",
3107
+ "options": null,
3108
+ "step": 0.05,
3109
+ "type": "SEARCH",
3110
+ "ui_element": "range",
3111
+ "value": 0.9,
3112
+ "visible": true
3113
+ },
3114
+ "search.engine.web.searxng.requires_api_key": {
3115
+ "category": "searxng",
3116
+ "description": "Setting for searxng.requires_api_key",
3117
+ "editable": true,
3118
+ "max_value": null,
3119
+ "min_value": null,
3120
+ "name": "Requires Api Key",
3121
+ "options": null,
3122
+ "step": null,
3123
+ "type": "SEARCH",
3124
+ "ui_element": "checkbox",
3125
+ "value": false,
3126
+ "visible": true
3127
+ },
3128
+ "search.engine.web.searxng.strengths": {
3129
+ "category": "searxng",
3130
+ "description": "Setting for searxng.strengths",
3131
+ "editable": true,
3132
+ "max_value": null,
3133
+ "min_value": null,
3134
+ "name": "Strengths",
3135
+ "options": null,
3136
+ "step": null,
3137
+ "type": "SEARCH",
3138
+ "ui_element": "text",
3139
+ "value": [
3140
+ "privacy-focused",
3141
+ "metasearch engine",
3142
+ "self-hosted",
3143
+ "no tracking",
3144
+ "configurable",
3145
+ "multiple engines in one"
3146
+ ],
3147
+ "visible": true
3148
+ },
3149
+ "search.engine.web.searxng.supports_full_search": {
3150
+ "category": "searxng",
3151
+ "description": "Setting for searxng.supports_full_search",
3152
+ "editable": true,
3153
+ "max_value": null,
3154
+ "min_value": null,
3155
+ "name": "Supports Full Search",
3156
+ "options": null,
3157
+ "step": null,
3158
+ "type": "SEARCH",
3159
+ "ui_element": "checkbox",
3160
+ "value": true,
3161
+ "visible": true
3162
+ },
3163
+ "search.engine.web.searxng.weaknesses": {
3164
+ "category": "searxng",
3165
+ "description": "Setting for searxng.weaknesses",
3166
+ "editable": true,
3167
+ "max_value": null,
3168
+ "min_value": null,
3169
+ "name": "Weaknesses",
3170
+ "options": null,
3171
+ "step": null,
3172
+ "type": "SEARCH",
3173
+ "ui_element": "text",
3174
+ "value": [
3175
+ "requires self-hosting",
3176
+ "depends on other search engines",
3177
+ "may be rate limited by underlying engines"
3178
+ ],
3179
+ "visible": true
3180
+ },
3181
+ "search.engine.web.serpapi.display_name": {
3182
+ "category": "serpapi",
3183
+ "description": "Display name to use in the U.I. for this search engine.",
3184
+ "editable": false,
3185
+ "max_value": null,
3186
+ "min_value": null,
3187
+ "name": "Display Name",
3188
+ "options": null,
3189
+ "step": null,
3190
+ "type": "SEARCH",
3191
+ "ui_element": "text",
3192
+ "value": "SerpApi",
3193
+ "visible": false
3194
+ },
3195
+ "search.engine.web.serpapi.description": {
3196
+ "category": "serpapi",
3197
+ "description": "Human-readable description of the search engine.",
3198
+ "editable": false,
3199
+ "max_value": null,
3200
+ "min_value": null,
3201
+ "name": "Description",
3202
+ "options": null,
3203
+ "step": null,
3204
+ "type": "SEARCH",
3205
+ "ui_element": "text",
3206
+ "value": "Search the web with Google's search API.",
3207
+ "visible": false
3208
+ },
3209
+ "search.engine.web.serpapi.api_key": {
3210
+ "category": "serpapi",
3211
+ "description": "The Serp API key to use.",
3212
+ "editable": true,
3213
+ "max_value": null,
3214
+ "min_value": null,
3215
+ "name": "API Key",
3216
+ "options": null,
3217
+ "step": null,
3218
+ "type": "SEARCH",
3219
+ "ui_element": "password",
3220
+ "value": "SERP_API_KEY",
3221
+ "visible": true
3222
+ },
3223
+ "search.engine.web.serpapi.class_name": {
3224
+ "category": "serpapi",
3225
+ "description": "Setting for serpapi.class_name",
3226
+ "editable": true,
3227
+ "max_value": null,
3228
+ "min_value": null,
3229
+ "name": "Class Name",
3230
+ "options": null,
3231
+ "step": null,
3232
+ "type": "SEARCH",
3233
+ "ui_element": "text",
3234
+ "value": "SerpAPISearchEngine",
3235
+ "visible": true
3236
+ },
3237
+ "search.engine.web.serpapi.default_params.region": {
3238
+ "category": "serpapi",
3239
+ "description": "Setting for serpapi.default_params.region",
3240
+ "editable": true,
3241
+ "max_value": null,
3242
+ "min_value": null,
3243
+ "name": "Region",
3244
+ "options": null,
3245
+ "step": null,
3246
+ "type": "SEARCH",
3247
+ "ui_element": "text",
3248
+ "value": "us",
3249
+ "visible": true
3250
+ },
3251
+ "search.engine.web.serpapi.default_params.safe_search": {
3252
+ "category": "serpapi",
3253
+ "description": "Setting for serpapi.default_params.safe_search",
3254
+ "editable": true,
3255
+ "max_value": null,
3256
+ "min_value": null,
3257
+ "name": "Safe Search",
3258
+ "options": null,
3259
+ "step": null,
3260
+ "type": "SEARCH",
3261
+ "ui_element": "checkbox",
3262
+ "value": true,
3263
+ "visible": true
3264
+ },
3265
+ "search.engine.web.serpapi.default_params.search_language": {
3266
+ "category": "serpapi",
3267
+ "description": "Setting for serpapi.default_params.search_language",
3268
+ "editable": true,
3269
+ "max_value": null,
3270
+ "min_value": null,
3271
+ "name": "Search Language",
3272
+ "options": null,
3273
+ "step": null,
3274
+ "type": "SEARCH",
3275
+ "ui_element": "text",
3276
+ "value": "English",
3277
+ "visible": true
3278
+ },
3279
+ "search.engine.web.serpapi.default_params.time_period": {
3280
+ "category": "serpapi",
3281
+ "description": "Setting for serpapi.default_params.time_period",
3282
+ "editable": true,
3283
+ "max_value": null,
3284
+ "min_value": null,
3285
+ "name": "Time Period",
3286
+ "options": null,
3287
+ "step": null,
3288
+ "type": "SEARCH",
3289
+ "ui_element": "text",
3290
+ "value": "y",
3291
+ "visible": true
3292
+ },
3293
+ "search.engine.web.serpapi.full_search_class": {
3294
+ "category": "serpapi",
3295
+ "description": "Setting for serpapi.full_search_class",
3296
+ "editable": true,
3297
+ "max_value": null,
3298
+ "min_value": null,
3299
+ "name": "Full Search Class",
3300
+ "options": null,
3301
+ "step": null,
3302
+ "type": "SEARCH",
3303
+ "ui_element": "text",
3304
+ "value": "FullSerpAPISearchResults",
3305
+ "visible": true
3306
+ },
3307
+ "search.engine.web.serpapi.full_search_module": {
3308
+ "category": "serpapi",
3309
+ "description": "Setting for serpapi.full_search_module",
3310
+ "editable": true,
3311
+ "max_value": null,
3312
+ "min_value": null,
3313
+ "name": "Full Search Module",
3314
+ "options": null,
3315
+ "step": null,
3316
+ "type": "SEARCH",
3317
+ "ui_element": "text",
3318
+ "value": "local_deep_research.web_search_engines.engines.full_serp_search_results_old",
3319
+ "visible": true
3320
+ },
3321
+ "search.engine.web.serpapi.module_path": {
3322
+ "category": "serpapi",
3323
+ "description": "Setting for serpapi.module_path",
3324
+ "editable": true,
3325
+ "max_value": null,
3326
+ "min_value": null,
3327
+ "name": "Module Path",
3328
+ "options": null,
3329
+ "step": null,
3330
+ "type": "SEARCH",
3331
+ "ui_element": "text",
3332
+ "value": ".engines.search_engine_serpapi",
3333
+ "visible": true
3334
+ },
3335
+ "search.engine.web.serpapi.reliability": {
3336
+ "category": "serpapi",
3337
+ "description": "Setting for serpapi.reliability",
3338
+ "editable": true,
3339
+ "max_value": 1.0,
3340
+ "min_value": 0.0,
3341
+ "name": "Reliability",
3342
+ "options": null,
3343
+ "step": 0.05,
3344
+ "type": "SEARCH",
3345
+ "ui_element": "range",
3346
+ "value": 0.6,
3347
+ "visible": true
3348
+ },
3349
+ "search.engine.web.serpapi.requires_api_key": {
3350
+ "category": "serpapi",
3351
+ "description": "Setting for serpapi.requires_api_key",
3352
+ "editable": true,
3353
+ "max_value": null,
3354
+ "min_value": null,
3355
+ "name": "Requires Api Key",
3356
+ "options": null,
3357
+ "step": null,
3358
+ "type": "SEARCH",
3359
+ "ui_element": "checkbox",
3360
+ "value": true,
3361
+ "visible": true
3362
+ },
3363
+ "search.engine.web.serpapi.strengths": {
3364
+ "category": "serpapi",
3365
+ "description": "Setting for serpapi.strengths",
3366
+ "editable": true,
3367
+ "max_value": null,
3368
+ "min_value": null,
3369
+ "name": "Strengths",
3370
+ "options": null,
3371
+ "step": null,
3372
+ "type": "SEARCH",
3373
+ "ui_element": "text",
3374
+ "value": [
3375
+ "comprehensive web search",
3376
+ "product information",
3377
+ "reviews",
3378
+ "recent content",
3379
+ "news",
3380
+ "broad coverage"
3381
+ ],
3382
+ "visible": true
3383
+ },
3384
+ "search.engine.web.serpapi.supports_full_search": {
3385
+ "category": "serpapi",
3386
+ "description": "Setting for serpapi.supports_full_search",
3387
+ "editable": true,
3388
+ "max_value": null,
3389
+ "min_value": null,
3390
+ "name": "Supports Full Search",
3391
+ "options": null,
3392
+ "step": null,
3393
+ "type": "SEARCH",
3394
+ "ui_element": "checkbox",
3395
+ "value": true,
3396
+ "visible": true
3397
+ },
3398
+ "search.engine.web.serpapi.weaknesses": {
3399
+ "category": "serpapi",
3400
+ "description": "Setting for serpapi.weaknesses",
3401
+ "editable": true,
3402
+ "max_value": null,
3403
+ "min_value": null,
3404
+ "name": "Weaknesses",
3405
+ "options": null,
3406
+ "step": null,
3407
+ "type": "SEARCH",
3408
+ "ui_element": "text",
3409
+ "value": [
3410
+ "requires API key with usage limits",
3411
+ "not specialized for academic content"
3412
+ ],
3413
+ "visible": true
3414
+ },
3415
+ "search.engine.web.wayback.display_name": {
3416
+ "category": "wayback",
3417
+ "description": "Display name to use in the U.I. for this search engine.",
3418
+ "editable": false,
3419
+ "max_value": null,
3420
+ "min_value": null,
3421
+ "name": "Display Name",
3422
+ "options": null,
3423
+ "step": null,
3424
+ "type": "SEARCH",
3425
+ "ui_element": "text",
3426
+ "value": "Wayback",
3427
+ "visible": false
3428
+ },
3429
+ "search.engine.web.wayback.description": {
3430
+ "category": "wayback",
3431
+ "description": "Human-readable description of the search engine.",
3432
+ "editable": false,
3433
+ "max_value": null,
3434
+ "min_value": null,
3435
+ "name": "Description",
3436
+ "options": null,
3437
+ "step": null,
3438
+ "type": "SEARCH",
3439
+ "ui_element": "text",
3440
+ "value": "Search the Internet Archive's Wayback Machine.",
3441
+ "visible": false
3442
+ },
3443
+ "search.engine.web.wayback.class_name": {
3444
+ "category": "wayback",
3445
+ "description": "Setting for wayback.class_name",
3446
+ "editable": true,
3447
+ "max_value": null,
3448
+ "min_value": null,
3449
+ "name": "Class Name",
3450
+ "options": null,
3451
+ "step": null,
3452
+ "type": "SEARCH",
3453
+ "ui_element": "text",
3454
+ "value": "WaybackSearchEngine",
3455
+ "visible": true
3456
+ },
3457
+ "search.engine.web.wayback.default_params.closest_only": {
3458
+ "category": "wayback",
3459
+ "description": "Setting for wayback.default_params.closest_only",
3460
+ "editable": true,
3461
+ "max_value": null,
3462
+ "min_value": null,
3463
+ "name": "Closest Only",
3464
+ "options": null,
3465
+ "step": null,
3466
+ "type": "SEARCH",
3467
+ "ui_element": "checkbox",
3468
+ "value": false,
3469
+ "visible": true
3470
+ },
3471
+ "search.engine.web.wayback.default_params.language": {
3472
+ "category": "wayback",
3473
+ "description": "Setting for wayback.default_params.language",
3474
+ "editable": true,
3475
+ "max_value": null,
3476
+ "min_value": null,
3477
+ "name": "Language",
3478
+ "options": null,
3479
+ "step": null,
3480
+ "type": "SEARCH",
3481
+ "ui_element": "text",
3482
+ "value": "English",
3483
+ "visible": true
3484
+ },
3485
+ "search.engine.web.wayback.default_params.max_results": {
3486
+ "category": "wayback",
3487
+ "description": "Setting for wayback.default_params.max_results",
3488
+ "editable": true,
3489
+ "max_value": null,
3490
+ "min_value": 1,
3491
+ "name": "Max Results",
3492
+ "options": null,
3493
+ "step": 1,
3494
+ "type": "SEARCH",
3495
+ "ui_element": "number",
3496
+ "value": 15,
3497
+ "visible": true
3498
+ },
3499
+ "search.engine.web.wayback.default_params.max_snapshots_per_url": {
3500
+ "category": "wayback",
3501
+ "description": "Setting for wayback.default_params.max_snapshots_per_url",
3502
+ "editable": true,
3503
+ "max_value": null,
3504
+ "min_value": 1,
3505
+ "name": "Max Snapshots Per Url",
3506
+ "options": null,
3507
+ "step": null,
3508
+ "type": "SEARCH",
3509
+ "ui_element": "number",
3510
+ "value": 3,
3511
+ "visible": true
3512
+ },
3513
+ "search.engine.web.wayback.module_path": {
3514
+ "category": "wayback",
3515
+ "description": "Setting for wayback.module_path",
3516
+ "editable": true,
3517
+ "max_value": null,
3518
+ "min_value": null,
3519
+ "name": "Module Path",
3520
+ "options": null,
3521
+ "step": null,
3522
+ "type": "SEARCH",
3523
+ "ui_element": "text",
3524
+ "value": ".engines.search_engine_wayback",
3525
+ "visible": true
3526
+ },
3527
+ "search.engine.web.wayback.reliability": {
3528
+ "category": "wayback",
3529
+ "description": "Setting for wayback.reliability",
3530
+ "editable": true,
3531
+ "max_value": 1.0,
3532
+ "min_value": 0.0,
3533
+ "name": "Reliability",
3534
+ "options": null,
3535
+ "step": 0.05,
3536
+ "type": "SEARCH",
3537
+ "ui_element": "range",
3538
+ "value": 0.5,
3539
+ "visible": true
3540
+ },
3541
+ "search.engine.web.wayback.requires_api_key": {
3542
+ "category": "wayback",
3543
+ "description": "Setting for wayback.requires_api_key",
3544
+ "editable": true,
3545
+ "max_value": null,
3546
+ "min_value": null,
3547
+ "name": "Requires Api Key",
3548
+ "options": null,
3549
+ "step": null,
3550
+ "type": "SEARCH",
3551
+ "ui_element": "checkbox",
3552
+ "value": false,
3553
+ "visible": true
3554
+ },
3555
+ "search.engine.web.wayback.strengths": {
3556
+ "category": "wayback",
3557
+ "description": "Setting for wayback.strengths",
3558
+ "editable": true,
3559
+ "max_value": null,
3560
+ "min_value": null,
3561
+ "name": "Strengths",
3562
+ "options": null,
3563
+ "step": null,
3564
+ "type": "SEARCH",
3565
+ "ui_element": "text",
3566
+ "value": [
3567
+ "historical web content",
3568
+ "archived websites",
3569
+ "content verification",
3570
+ "deleted or changed web pages",
3571
+ "website evolution tracking"
3572
+ ],
3573
+ "visible": true
3574
+ },
3575
+ "search.engine.web.wayback.supports_full_search": {
3576
+ "category": "wayback",
3577
+ "description": "Setting for wayback.supports_full_search",
3578
+ "editable": true,
3579
+ "max_value": null,
3580
+ "min_value": null,
3581
+ "name": "Supports Full Search",
3582
+ "options": null,
3583
+ "step": null,
3584
+ "type": "SEARCH",
3585
+ "ui_element": "checkbox",
3586
+ "value": true,
3587
+ "visible": true
3588
+ },
3589
+ "search.engine.web.wayback.weaknesses": {
3590
+ "category": "wayback",
3591
+ "description": "Setting for wayback.weaknesses",
3592
+ "editable": true,
3593
+ "max_value": null,
3594
+ "min_value": null,
3595
+ "name": "Weaknesses",
3596
+ "options": null,
3597
+ "step": null,
3598
+ "type": "SEARCH",
3599
+ "ui_element": "text",
3600
+ "value": [
3601
+ "limited to previously archived content",
3602
+ "may miss recent changes",
3603
+ "archiving quality varies"
3604
+ ],
3605
+ "visible": true
3606
+ },
3607
+ "web.debug": {
3608
+ "category": null,
3609
+ "description": "Setting for web.debug",
3610
+ "editable": true,
3611
+ "max_value": null,
3612
+ "min_value": null,
3613
+ "name": "Debug",
3614
+ "options": null,
3615
+ "step": null,
3616
+ "type": "SEARCH",
3617
+ "ui_element": "text",
3618
+ "value": true,
3619
+ "visible": true
3620
+ },
3621
+ "web.host": {
3622
+ "category": null,
3623
+ "description": "Setting for web.host",
3624
+ "editable": true,
3625
+ "max_value": null,
3626
+ "min_value": null,
3627
+ "name": "Host",
3628
+ "options": null,
3629
+ "step": null,
3630
+ "type": "SEARCH",
3631
+ "ui_element": "text",
3632
+ "value": "0.0.0.0",
3633
+ "visible": true
3634
+ },
3635
+ "web.port": {
3636
+ "category": null,
3637
+ "description": "Setting for web.port",
3638
+ "editable": true,
3639
+ "max_value": null,
3640
+ "min_value": null,
3641
+ "name": "Port",
3642
+ "options": null,
3643
+ "step": null,
3644
+ "type": "SEARCH",
3645
+ "ui_element": "text",
3646
+ "value": 5000,
3647
+ "visible": true
3648
+ },
3649
+ "search.engine.web.wikipedia.display_name": {
3650
+ "category": "wikipedia",
3651
+ "description": "Display name to use in the U.I. for this search engine.",
3652
+ "editable": false,
3653
+ "max_value": null,
3654
+ "min_value": null,
3655
+ "name": "Display Name",
3656
+ "options": null,
3657
+ "step": null,
3658
+ "type": "SEARCH",
3659
+ "ui_element": "text",
3660
+ "value": "Wikipedia",
3661
+ "visible": false
3662
+ },
3663
+ "search.engine.web.wikipedia.description": {
3664
+ "category": "wikipedia",
3665
+ "description": "Human-readable description of the search engine.",
3666
+ "editable": false,
3667
+ "max_value": null,
3668
+ "min_value": null,
3669
+ "name": "Description",
3670
+ "options": null,
3671
+ "step": null,
3672
+ "type": "SEARCH",
3673
+ "ui_element": "text",
3674
+ "value": "Search Wikipedia articles",
3675
+ "visible": false
3676
+ },
3677
+ "search.engine.web.wikipedia.class_name": {
3678
+ "category": "wikipedia",
3679
+ "description": "Setting for wikipedia.class_name",
3680
+ "editable": true,
3681
+ "max_value": null,
3682
+ "min_value": null,
3683
+ "name": "Class Name",
3684
+ "options": null,
3685
+ "step": null,
3686
+ "type": "SEARCH",
3687
+ "ui_element": "text",
3688
+ "value": "WikipediaSearchEngine",
3689
+ "visible": true
3690
+ },
3691
+ "search.engine.web.wikipedia.default_params.include_content": {
3692
+ "category": "wikipedia",
3693
+ "description": "Setting for wikipedia.default_params.include_content",
3694
+ "editable": true,
3695
+ "max_value": null,
3696
+ "min_value": null,
3697
+ "name": "Include Content",
3698
+ "options": null,
3699
+ "step": null,
3700
+ "type": "SEARCH",
3701
+ "ui_element": "checkbox",
3702
+ "value": true,
3703
+ "visible": true
3704
+ },
3705
+ "search.engine.web.wikipedia.default_params.max_results": {
3706
+ "category": "wikipedia",
3707
+ "description": "Setting for wikipedia.default_params.max_results",
3708
+ "editable": true,
3709
+ "max_value": null,
3710
+ "min_value": 1,
3711
+ "name": "Max Results",
3712
+ "options": null,
3713
+ "step": 1,
3714
+ "type": "SEARCH",
3715
+ "ui_element": "number",
3716
+ "value": 20,
3717
+ "visible": true
3718
+ },
3719
+ "search.engine.web.wikipedia.module_path": {
3720
+ "category": "wikipedia",
3721
+ "description": "Setting for wikipedia.module_path",
3722
+ "editable": true,
3723
+ "max_value": null,
3724
+ "min_value": null,
3725
+ "name": "Module Path",
3726
+ "options": null,
3727
+ "step": null,
3728
+ "type": "SEARCH",
3729
+ "ui_element": "text",
3730
+ "value": ".engines.search_engine_wikipedia",
3731
+ "visible": true
3732
+ },
3733
+ "search.engine.web.wikipedia.reliability": {
3734
+ "category": "wikipedia",
3735
+ "description": "Setting for wikipedia.reliability",
3736
+ "editable": true,
3737
+ "max_value": 1.0,
3738
+ "min_value": 0.0,
3739
+ "name": "Reliability",
3740
+ "options": null,
3741
+ "step": 0.05,
3742
+ "type": "SEARCH",
3743
+ "ui_element": "range",
3744
+ "value": 0.95,
3745
+ "visible": true
3746
+ },
3747
+ "search.engine.web.wikipedia.requires_api_key": {
3748
+ "category": "wikipedia",
3749
+ "description": "Setting for wikipedia.requires_api_key",
3750
+ "editable": true,
3751
+ "max_value": null,
3752
+ "min_value": null,
3753
+ "name": "Requires Api Key",
3754
+ "options": null,
3755
+ "step": null,
3756
+ "type": "SEARCH",
3757
+ "ui_element": "checkbox",
3758
+ "value": false,
3759
+ "visible": true
3760
+ },
3761
+ "search.engine.web.wikipedia.strengths": {
3762
+ "category": "wikipedia",
3763
+ "description": "Setting for wikipedia.strengths",
3764
+ "editable": true,
3765
+ "max_value": null,
3766
+ "min_value": null,
3767
+ "name": "Strengths",
3768
+ "options": null,
3769
+ "step": null,
3770
+ "type": "SEARCH",
3771
+ "ui_element": "text",
3772
+ "value": [
3773
+ "factual information",
3774
+ "general knowledge",
3775
+ "definitions",
3776
+ "historical facts",
3777
+ "biographies",
3778
+ "overview information"
3779
+ ],
3780
+ "visible": true
3781
+ },
3782
+ "search.engine.web.wikipedia.weaknesses": {
3783
+ "category": "wikipedia",
3784
+ "description": "Setting for wikipedia.weaknesses",
3785
+ "editable": true,
3786
+ "max_value": null,
3787
+ "min_value": null,
3788
+ "name": "Weaknesses",
3789
+ "options": null,
3790
+ "step": null,
3791
+ "type": "SEARCH",
3792
+ "ui_element": "text",
3793
+ "value": [
3794
+ "recent events",
3795
+ "specialized academic topics",
3796
+ "product comparisons"
3797
+ ],
3798
+ "visible": true
3799
+ },
3800
+ "search.cross_engine_max_results": {
3801
+ "category": "search_parameters",
3802
+ "description": "Maximum number of search results to keep after cross-engine filtering. When results from multiple search engines are combined, this limits how many total results are displayed. Higher values show more comprehensive results.",
3803
+ "editable": true,
3804
+ "max_value": 1000,
3805
+ "min_value": 1,
3806
+ "name": "Cross-Engine Max Results",
3807
+ "options": null,
3808
+ "step": 1,
3809
+ "type": "SEARCH",
3810
+ "ui_element": "number",
3811
+ "value": 100,
3812
+ "visible": true
3813
+ },
3814
+ "search.engine.web.pubmed.use_in_auto_search": {
3815
+ "category": "pubmed",
3816
+ "description": "Include PubMed in auto search mode",
3817
+ "editable": true,
3818
+ "max_value": null,
3819
+ "min_value": null,
3820
+ "name": "Include in Auto Search",
3821
+ "options": null,
3822
+ "step": null,
3823
+ "type": "SEARCH",
3824
+ "ui_element": "checkbox",
3825
+ "value": true,
3826
+ "visible": true
3827
+ },
3828
+ "search.engine.web.arxiv.use_in_auto_search": {
3829
+ "category": "arxiv",
3830
+ "description": "Include ArXiv in auto search mode",
3831
+ "editable": true,
3832
+ "max_value": null,
3833
+ "min_value": null,
3834
+ "name": "Include in Auto Search",
3835
+ "options": null,
3836
+ "step": null,
3837
+ "type": "SEARCH",
3838
+ "ui_element": "checkbox",
3839
+ "value": true,
3840
+ "visible": true
3841
+ },
3842
+ "search.engine.web.searxng.use_in_auto_search": {
3843
+ "category": "searxng",
3844
+ "description": "Include SearXNG in auto search mode",
3845
+ "editable": true,
3846
+ "max_value": null,
3847
+ "min_value": null,
3848
+ "name": "Include in Auto Search",
3849
+ "options": null,
3850
+ "step": null,
3851
+ "type": "SEARCH",
3852
+ "ui_element": "checkbox",
3853
+ "value": true,
3854
+ "visible": true
3855
+ },
3856
+ "search.engine.web.github.use_in_auto_search": {
3857
+ "category": "github",
3858
+ "description": "Include GitHub in auto search mode",
3859
+ "editable": true,
3860
+ "max_value": null,
3861
+ "min_value": null,
3862
+ "name": "Include in Auto Search",
3863
+ "options": null,
3864
+ "step": null,
3865
+ "type": "SEARCH",
3866
+ "ui_element": "checkbox",
3867
+ "value": true,
3868
+ "visible": true
3869
+ },
3870
+ "search.engine.web.wikipedia.use_in_auto_search": {
3871
+ "category": "wikipedia",
3872
+ "description": "Include Wikipedia in auto search mode",
3873
+ "editable": true,
3874
+ "max_value": null,
3875
+ "min_value": null,
3876
+ "name": "Include in Auto Search",
3877
+ "options": null,
3878
+ "step": null,
3879
+ "type": "SEARCH",
3880
+ "ui_element": "checkbox",
3881
+ "value": true,
3882
+ "visible": true
3883
+ },
3884
+ "search.engine.web.brave.use_in_auto_search": {
3885
+ "category": "brave",
3886
+ "description": "Include Brave search in auto search mode",
3887
+ "editable": true,
3888
+ "max_value": null,
3889
+ "min_value": null,
3890
+ "name": "Include in Auto Search",
3891
+ "options": null,
3892
+ "step": null,
3893
+ "type": "SEARCH",
3894
+ "ui_element": "checkbox",
3895
+ "value": false,
3896
+ "visible": true
3897
+ },
3898
+ "search.engine.web.google_pse.use_in_auto_search": {
3899
+ "category": "google_pse",
3900
+ "description": "Include Google PSE in auto search mode",
3901
+ "editable": true,
3902
+ "max_value": null,
3903
+ "min_value": null,
3904
+ "name": "Include in Auto Search",
3905
+ "options": null,
3906
+ "step": null,
3907
+ "type": "SEARCH",
3908
+ "ui_element": "checkbox",
3909
+ "value": false,
3910
+ "visible": true
3911
+ },
3912
+ "search.engine.web.serpapi.use_in_auto_search": {
3913
+ "category": "serpapi",
3914
+ "description": "Include SerpAPI in auto search mode",
3915
+ "editable": true,
3916
+ "max_value": null,
3917
+ "min_value": null,
3918
+ "name": "Include in Auto Search",
3919
+ "options": null,
3920
+ "step": null,
3921
+ "type": "SEARCH",
3922
+ "ui_element": "checkbox",
3923
+ "value": false,
3924
+ "visible": true
3925
+ },
3926
+ "search.engine.web.wayback.use_in_auto_search": {
3927
+ "category": "wayback",
3928
+ "description": "Include Wayback in auto search mode",
3929
+ "editable": true,
3930
+ "max_value": null,
3931
+ "min_value": null,
3932
+ "name": "Include in Auto Search",
3933
+ "options": null,
3934
+ "step": null,
3935
+ "type": "SEARCH",
3936
+ "ui_element": "checkbox",
3937
+ "value": false,
3938
+ "visible": true
3939
+ },
3940
+ "search.engine.local.local_all.use_in_auto_search": {
3941
+ "category": "local_all",
3942
+ "description": "Include local documents in auto search mode",
3943
+ "editable": true,
3944
+ "max_value": null,
3945
+ "min_value": null,
3946
+ "name": "Include in Auto Search",
3947
+ "options": null,
3948
+ "step": null,
3949
+ "type": "SEARCH",
3950
+ "ui_element": "checkbox",
3951
+ "value": true,
3952
+ "visible": true
3953
+ },
3954
+ "search.engine.local.personal_notes.use_in_auto_search": {
3955
+ "category": "personal_notes",
3956
+ "description": "Include personal notes in auto search mode",
3957
+ "editable": true,
3958
+ "max_value": null,
3959
+ "min_value": null,
3960
+ "name": "Include in Auto Search",
3961
+ "options": null,
3962
+ "step": null,
3963
+ "type": "SEARCH",
3964
+ "ui_element": "checkbox",
3965
+ "value": false,
3966
+ "visible": true
3967
+ },
3968
+ "search.engine.local.project_docs.use_in_auto_search": {
3969
+ "category": "project_docs",
3970
+ "description": "Include project documents in auto search mode",
3971
+ "editable": true,
3972
+ "max_value": null,
3973
+ "min_value": null,
3974
+ "name": "Include in Auto Search",
3975
+ "options": null,
3976
+ "step": null,
3977
+ "type": "SEARCH",
3978
+ "ui_element": "checkbox",
3979
+ "value": false,
3980
+ "visible": true
3981
+ },
3982
+ "search.engine.local.research_papers.use_in_auto_search": {
3983
+ "category": "research_papers",
3984
+ "description": "Include research papers in auto search mode",
3985
+ "editable": true,
3986
+ "max_value": null,
3987
+ "min_value": null,
3988
+ "name": "Include in Auto Search",
3989
+ "options": null,
3990
+ "step": null,
3991
+ "type": "SEARCH",
3992
+ "ui_element": "checkbox",
3993
+ "value": false,
3994
+ "visible": true
3995
+ }
3996
+ }