local-deep-research 0.1.17__tar.gz → 0.1.18__tar.gz

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 (63) hide show
  1. {local_deep_research-0.1.17/src/local_deep_research.egg-info → local_deep_research-0.1.18}/PKG-INFO +27 -18
  2. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/README.md +27 -18
  3. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/pyproject.toml +1 -1
  4. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/static/css/styles.css +43 -0
  5. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/search_engine_factory.py +11 -2
  6. {local_deep_research-0.1.17 → local_deep_research-0.1.18/src/local_deep_research.egg-info}/PKG-INFO +27 -18
  7. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/LICENSE +0 -0
  8. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/MANIFEST.in +0 -0
  9. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/requirements.txt +0 -0
  10. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/setup.cfg +0 -0
  11. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/__init__.py +0 -0
  12. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/citation_handler.py +0 -0
  13. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/config.py +0 -0
  14. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/defaults/__init__.py +0 -0
  15. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/defaults/llm_config.py +0 -0
  16. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/defaults/local_collections.toml +0 -0
  17. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/defaults/main.toml +0 -0
  18. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/defaults/search_engines.toml +0 -0
  19. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/main.py +0 -0
  20. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/report_generator.py +0 -0
  21. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/search_system.py +0 -0
  22. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/utilties/__init__.py +0 -0
  23. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/utilties/enums.py +0 -0
  24. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/utilties/llm_utils.py +0 -0
  25. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/utilties/search_utilities.py +0 -0
  26. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/utilties/setup_utils.py +0 -0
  27. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/__init__.py +0 -0
  28. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/app.py +0 -0
  29. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/static/js/app.js +0 -0
  30. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/api_keys_config.html +0 -0
  31. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/collections_config.html +0 -0
  32. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/index.html +0 -0
  33. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/llm_config.html +0 -0
  34. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/main_config.html +0 -0
  35. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/search_engines_config.html +0 -0
  36. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/settings.html +0 -0
  37. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web/templates/settings_dashboard.html +0 -0
  38. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/__init__.py +0 -0
  39. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/__init__.py +0 -0
  40. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/full_search.py +0 -0
  41. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/meta_search_engine.py +0 -0
  42. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_arxiv.py +0 -0
  43. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_brave.py +0 -0
  44. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_ddg.py +0 -0
  45. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_github.py +0 -0
  46. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_google_pse.py +0 -0
  47. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_guardian.py +0 -0
  48. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_local.py +0 -0
  49. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_local_all.py +0 -0
  50. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_pubmed.py +0 -0
  51. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_searxng.py +0 -0
  52. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_semantic_scholar.py +0 -0
  53. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_serpapi.py +0 -0
  54. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_wayback.py +0 -0
  55. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/engines/search_engine_wikipedia.py +0 -0
  56. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/search_engine_base.py +0 -0
  57. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research/web_search_engines/search_engines_config.py +0 -0
  58. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research.egg-info/SOURCES.txt +0 -0
  59. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research.egg-info/dependency_links.txt +0 -0
  60. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research.egg-info/entry_points.txt +0 -0
  61. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research.egg-info/requires.txt +0 -0
  62. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/src/local_deep_research.egg-info/top_level.txt +0 -0
  63. {local_deep_research-0.1.17 → local_deep_research-0.1.18}/tests/test_google_pse.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: local-deep-research
3
- Version: 0.1.17
3
+ Version: 0.1.18
4
4
  Summary: AI-powered research assistant with deep, iterative analysis using LLMs and web searches
5
5
  Author-email: LearningCircuit <185559241+LearningCircuit@users.noreply.github.com>, HashedViking <6432677+HashedViking@users.noreply.github.com>
6
6
  License: MIT License
@@ -101,7 +101,7 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
101
101
 
102
102
  - 🔍 **Advanced Research Capabilities**
103
103
  - Automated deep research with intelligent follow-up questions
104
- - Citation tracking and source verification
104
+ - Proper inline citation and source verification
105
105
  - Multi-iteration analysis for comprehensive coverage
106
106
  - Full webpage content analysis (not just snippets)
107
107
 
@@ -112,8 +112,8 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
112
112
  - Configurable model selection based on needs
113
113
 
114
114
  - 📊 **Rich Output Options**
115
- - Detailed research findings with citations
116
- - Comprehensive research reports
115
+ - Detailed research findings with proper citations
116
+ - Well-structured comprehensive research reports
117
117
  - Quick summaries for rapid insights
118
118
  - Source tracking and verification
119
119
 
@@ -128,6 +128,12 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
128
128
  - **Local RAG search for private documents** - search your own documents with vector embeddings
129
129
  - Full webpage content retrieval and intelligent filtering
130
130
 
131
+ - 🎓 **Academic & Scientific Integration**
132
+ - Direct integration with PubMed, arXiv, Wikipedia, Semantic Scholar
133
+ - Properly formatted citations from academic sources
134
+ - Report structure suitable for literature reviews
135
+ - Cross-disciplinary synthesis of information
136
+
131
137
  ## Configuration System
132
138
 
133
139
  The package automatically creates and manages configuration files in your user directory:
@@ -261,20 +267,20 @@ You can use local document search in several ways:
261
267
 
262
268
  ## Available Search Engines
263
269
 
264
- | Engine | Purpose | API Key Required? |
265
- |--------|---------|-------------------|
266
- | `auto` | Intelligently selects the best engine | No |
267
- | `wikipedia` | General knowledge and facts | No |
268
- | `arxiv` | Scientific papers and research | No |
269
- | `pubmed` | Medical and biomedical research | No |
270
- | `semantic_scholar` | Academic literature across all fields | No |
271
- | `github` | Code repositories and documentation | No (but rate-limited) |
272
- | `brave` | Web search (privacy-focused) | Yes |
273
- | `serpapi` | Google search results | Yes |
274
- | `google_pse` | Custom Google search | Yes |
275
- | `wayback` | Historical web content | No |
276
- | `searxng` | Local web search engine | No (requires server) |
277
- | Any collection name | Search your local documents | No |
270
+ | Engine | Purpose | API Key Required? | Rate Limit |
271
+ |--------|---------|-------------------|------------|
272
+ | `auto` | Intelligently selects the best engine | No | Based on selected engine |
273
+ | `wikipedia` | General knowledge and facts | No | No strict limit |
274
+ | `arxiv` | Scientific papers and research | No | No strict limit |
275
+ | `pubmed` | Medical and biomedical research | No | No strict limit |
276
+ | `semantic_scholar` | Academic literature across all fields | No | 100/5min |
277
+ | `github` | Code repositories and documentation | No | 60/hour (unauthenticated) |
278
+ | `brave` | Web search (privacy-focused) | Yes | Based on plan |
279
+ | `serpapi` | Google search results | Yes | Based on plan |
280
+ | `google_pse` | Custom Google search | Yes | 100/day free tier |
281
+ | `wayback` | Historical web content | No | No strict limit |
282
+ | `searxng` | Local web search engine | No (requires local server) | No limit |
283
+ | Any collection name | Search your local documents | No | No limit |
278
284
 
279
285
  > **Support Free Knowledge:** If you frequently use the search engines in this tool, please consider making a donation to these organizations. They provide valuable services and rely on user support to maintain their operations:
280
286
  > - [Donate to Wikipedia](https://donate.wikimedia.org)
@@ -318,6 +324,9 @@ The web interface offers several features:
318
324
  - **PDF Export**: Download reports
319
325
  - **Research Management**: Terminate processes or delete records
320
326
 
327
+ ![Web Interface](./web1.png)
328
+ ![Web Interface](./web2.png)
329
+
321
330
  ## Command Line Interface
322
331
 
323
332
  The CLI version allows you to:
@@ -32,7 +32,7 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
32
32
 
33
33
  - 🔍 **Advanced Research Capabilities**
34
34
  - Automated deep research with intelligent follow-up questions
35
- - Citation tracking and source verification
35
+ - Proper inline citation and source verification
36
36
  - Multi-iteration analysis for comprehensive coverage
37
37
  - Full webpage content analysis (not just snippets)
38
38
 
@@ -43,8 +43,8 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
43
43
  - Configurable model selection based on needs
44
44
 
45
45
  - 📊 **Rich Output Options**
46
- - Detailed research findings with citations
47
- - Comprehensive research reports
46
+ - Detailed research findings with proper citations
47
+ - Well-structured comprehensive research reports
48
48
  - Quick summaries for rapid insights
49
49
  - Source tracking and verification
50
50
 
@@ -59,6 +59,12 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
59
59
  - **Local RAG search for private documents** - search your own documents with vector embeddings
60
60
  - Full webpage content retrieval and intelligent filtering
61
61
 
62
+ - 🎓 **Academic & Scientific Integration**
63
+ - Direct integration with PubMed, arXiv, Wikipedia, Semantic Scholar
64
+ - Properly formatted citations from academic sources
65
+ - Report structure suitable for literature reviews
66
+ - Cross-disciplinary synthesis of information
67
+
62
68
  ## Configuration System
63
69
 
64
70
  The package automatically creates and manages configuration files in your user directory:
@@ -192,20 +198,20 @@ You can use local document search in several ways:
192
198
 
193
199
  ## Available Search Engines
194
200
 
195
- | Engine | Purpose | API Key Required? |
196
- |--------|---------|-------------------|
197
- | `auto` | Intelligently selects the best engine | No |
198
- | `wikipedia` | General knowledge and facts | No |
199
- | `arxiv` | Scientific papers and research | No |
200
- | `pubmed` | Medical and biomedical research | No |
201
- | `semantic_scholar` | Academic literature across all fields | No |
202
- | `github` | Code repositories and documentation | No (but rate-limited) |
203
- | `brave` | Web search (privacy-focused) | Yes |
204
- | `serpapi` | Google search results | Yes |
205
- | `google_pse` | Custom Google search | Yes |
206
- | `wayback` | Historical web content | No |
207
- | `searxng` | Local web search engine | No (requires server) |
208
- | Any collection name | Search your local documents | No |
201
+ | Engine | Purpose | API Key Required? | Rate Limit |
202
+ |--------|---------|-------------------|------------|
203
+ | `auto` | Intelligently selects the best engine | No | Based on selected engine |
204
+ | `wikipedia` | General knowledge and facts | No | No strict limit |
205
+ | `arxiv` | Scientific papers and research | No | No strict limit |
206
+ | `pubmed` | Medical and biomedical research | No | No strict limit |
207
+ | `semantic_scholar` | Academic literature across all fields | No | 100/5min |
208
+ | `github` | Code repositories and documentation | No | 60/hour (unauthenticated) |
209
+ | `brave` | Web search (privacy-focused) | Yes | Based on plan |
210
+ | `serpapi` | Google search results | Yes | Based on plan |
211
+ | `google_pse` | Custom Google search | Yes | 100/day free tier |
212
+ | `wayback` | Historical web content | No | No strict limit |
213
+ | `searxng` | Local web search engine | No (requires local server) | No limit |
214
+ | Any collection name | Search your local documents | No | No limit |
209
215
 
210
216
  > **Support Free Knowledge:** If you frequently use the search engines in this tool, please consider making a donation to these organizations. They provide valuable services and rely on user support to maintain their operations:
211
217
  > - [Donate to Wikipedia](https://donate.wikimedia.org)
@@ -249,6 +255,9 @@ The web interface offers several features:
249
255
  - **PDF Export**: Download reports
250
256
  - **Research Management**: Terminate processes or delete records
251
257
 
258
+ ![Web Interface](./web1.png)
259
+ ![Web Interface](./web2.png)
260
+
252
261
  ## Command Line Interface
253
262
 
254
263
  The CLI version allows you to:
@@ -321,4 +330,4 @@ Contributions are welcome! Please feel free to submit a Pull Request.
321
330
  2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
322
331
  3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
323
332
  4. Push to the branch (`git push origin feature/AmazingFeature`)
324
- 5. Open a Pull Request
333
+ 5. Open a Pull Request
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "local-deep-research"
7
- version = "0.1.17"
7
+ version = "0.1.18"
8
8
  description = "AI-powered research assistant with deep, iterative analysis using LLMs and web searches"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -100,8 +100,18 @@ a:hover {
100
100
  transition: all 0.2s;
101
101
  }
102
102
 
103
+ .sidebar-nav li a {
104
+ color: inherit;
105
+ text-decoration: none;
106
+ width: 100%;
107
+ display: flex;
108
+ align-items: center;
109
+ gap: 0.75rem;
110
+ }
111
+
103
112
  .sidebar-nav li i {
104
113
  width: 20px;
114
+ color: inherit;
105
115
  }
106
116
 
107
117
  .sidebar-nav li:hover {
@@ -115,6 +125,11 @@ a:hover {
115
125
  border-left-color: var(--accent-primary);
116
126
  }
117
127
 
128
+ .sidebar-nav li.active i,
129
+ .sidebar-nav li.active a {
130
+ color: inherit;
131
+ }
132
+
118
133
  .sidebar-footer {
119
134
  padding: 1rem 1.5rem;
120
135
  border-top: 1px solid var(--border-color);
@@ -1270,4 +1285,32 @@ textarea:focus, input[type="text"]:focus {
1270
1285
  background-color: var(--accent-primary);
1271
1286
  color: white;
1272
1287
  border-color: var(--accent-primary);
1288
+ }
1289
+
1290
+ /* Settings card styles */
1291
+ .settings-card {
1292
+ background-color: var(--bg-secondary);
1293
+ border-radius: 12px;
1294
+ padding: 1.5rem;
1295
+ transition: all 0.2s;
1296
+ border: 1px solid var(--border-color);
1297
+ }
1298
+
1299
+ .settings-card:hover {
1300
+ background-color: var(--bg-tertiary);
1301
+ border-color: var(--accent-primary);
1302
+ transform: translateY(-2px);
1303
+ box-shadow: var(--card-shadow);
1304
+ }
1305
+
1306
+ .settings-card .btn {
1307
+ background-color: var(--bg-tertiary);
1308
+ color: var(--text-primary);
1309
+ border: 1px solid var(--border-color);
1310
+ }
1311
+
1312
+ .settings-card .btn:hover {
1313
+ background-color: var(--accent-primary);
1314
+ color: white;
1315
+ border-color: var(--accent-primary);
1273
1316
  }
@@ -6,6 +6,7 @@ from typing import Dict, List, Any, Optional
6
6
 
7
7
  from .search_engine_base import BaseSearchEngine
8
8
  from .search_engines_config import SEARCH_ENGINES, DEFAULT_SEARCH_ENGINE
9
+ from local_deep_research.config import settings
9
10
 
10
11
  # Setup logging
11
12
  logging.basicConfig(level=logging.INFO)
@@ -42,10 +43,18 @@ def create_search_engine(engine_name: str, llm=None, **kwargs) -> Optional[BaseS
42
43
  # Check for API key requirements
43
44
  if engine_config.get("requires_api_key", False):
44
45
  api_key_env = engine_config.get("api_key_env")
45
- api_key = os.getenv(api_key_env) if api_key_env else None
46
46
 
47
+ # First check environment variable
48
+ api_key = os.getenv(api_key_env)
49
+
50
+ # If not found in environment, check Dynaconf settings
51
+ if not api_key and api_key_env:
52
+ # Convert env var name to settings path (e.g., BRAVE_API_KEY -> brave_api_key)
53
+ settings_key = api_key_env.lower()
54
+ api_key = settings.get(settings_key)
55
+
47
56
  if not api_key:
48
- logger.info(f"Required API key for {engine_name} not found in environment variable: {api_key_env}")
57
+ logger.info(f"Required API key for {engine_name} not found in environment variable: {api_key_env} or settings")
49
58
  return None
50
59
 
51
60
  # Check for LLM requirements
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: local-deep-research
3
- Version: 0.1.17
3
+ Version: 0.1.18
4
4
  Summary: AI-powered research assistant with deep, iterative analysis using LLMs and web searches
5
5
  Author-email: LearningCircuit <185559241+LearningCircuit@users.noreply.github.com>, HashedViking <6432677+HashedViking@users.noreply.github.com>
6
6
  License: MIT License
@@ -101,7 +101,7 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
101
101
 
102
102
  - 🔍 **Advanced Research Capabilities**
103
103
  - Automated deep research with intelligent follow-up questions
104
- - Citation tracking and source verification
104
+ - Proper inline citation and source verification
105
105
  - Multi-iteration analysis for comprehensive coverage
106
106
  - Full webpage content analysis (not just snippets)
107
107
 
@@ -112,8 +112,8 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
112
112
  - Configurable model selection based on needs
113
113
 
114
114
  - 📊 **Rich Output Options**
115
- - Detailed research findings with citations
116
- - Comprehensive research reports
115
+ - Detailed research findings with proper citations
116
+ - Well-structured comprehensive research reports
117
117
  - Quick summaries for rapid insights
118
118
  - Source tracking and verification
119
119
 
@@ -128,6 +128,12 @@ Access the web interface at `http://127.0.0.1:5000` in your browser.
128
128
  - **Local RAG search for private documents** - search your own documents with vector embeddings
129
129
  - Full webpage content retrieval and intelligent filtering
130
130
 
131
+ - 🎓 **Academic & Scientific Integration**
132
+ - Direct integration with PubMed, arXiv, Wikipedia, Semantic Scholar
133
+ - Properly formatted citations from academic sources
134
+ - Report structure suitable for literature reviews
135
+ - Cross-disciplinary synthesis of information
136
+
131
137
  ## Configuration System
132
138
 
133
139
  The package automatically creates and manages configuration files in your user directory:
@@ -261,20 +267,20 @@ You can use local document search in several ways:
261
267
 
262
268
  ## Available Search Engines
263
269
 
264
- | Engine | Purpose | API Key Required? |
265
- |--------|---------|-------------------|
266
- | `auto` | Intelligently selects the best engine | No |
267
- | `wikipedia` | General knowledge and facts | No |
268
- | `arxiv` | Scientific papers and research | No |
269
- | `pubmed` | Medical and biomedical research | No |
270
- | `semantic_scholar` | Academic literature across all fields | No |
271
- | `github` | Code repositories and documentation | No (but rate-limited) |
272
- | `brave` | Web search (privacy-focused) | Yes |
273
- | `serpapi` | Google search results | Yes |
274
- | `google_pse` | Custom Google search | Yes |
275
- | `wayback` | Historical web content | No |
276
- | `searxng` | Local web search engine | No (requires server) |
277
- | Any collection name | Search your local documents | No |
270
+ | Engine | Purpose | API Key Required? | Rate Limit |
271
+ |--------|---------|-------------------|------------|
272
+ | `auto` | Intelligently selects the best engine | No | Based on selected engine |
273
+ | `wikipedia` | General knowledge and facts | No | No strict limit |
274
+ | `arxiv` | Scientific papers and research | No | No strict limit |
275
+ | `pubmed` | Medical and biomedical research | No | No strict limit |
276
+ | `semantic_scholar` | Academic literature across all fields | No | 100/5min |
277
+ | `github` | Code repositories and documentation | No | 60/hour (unauthenticated) |
278
+ | `brave` | Web search (privacy-focused) | Yes | Based on plan |
279
+ | `serpapi` | Google search results | Yes | Based on plan |
280
+ | `google_pse` | Custom Google search | Yes | 100/day free tier |
281
+ | `wayback` | Historical web content | No | No strict limit |
282
+ | `searxng` | Local web search engine | No (requires local server) | No limit |
283
+ | Any collection name | Search your local documents | No | No limit |
278
284
 
279
285
  > **Support Free Knowledge:** If you frequently use the search engines in this tool, please consider making a donation to these organizations. They provide valuable services and rely on user support to maintain their operations:
280
286
  > - [Donate to Wikipedia](https://donate.wikimedia.org)
@@ -318,6 +324,9 @@ The web interface offers several features:
318
324
  - **PDF Export**: Download reports
319
325
  - **Research Management**: Terminate processes or delete records
320
326
 
327
+ ![Web Interface](./web1.png)
328
+ ![Web Interface](./web2.png)
329
+
321
330
  ## Command Line Interface
322
331
 
323
332
  The CLI version allows you to: