local-deep-research 0.1.1__py3-none-any.whl → 0.1.13__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.
- local_deep_research/config.py +100 -45
- local_deep_research/search_system.py +1 -1
- local_deep_research/web/app.py +373 -64
- local_deep_research/web/static/css/styles.css +245 -6
- local_deep_research/web/static/js/app.js +1917 -675
- local_deep_research/web/templates/index.html +34 -0
- {local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info}/METADATA +9 -3
- {local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info}/RECORD +12 -12
- {local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info}/WHEEL +1 -1
- {local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info}/entry_points.txt +0 -0
- {local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info/licenses}/LICENSE +0 -0
- {local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info}/top_level.txt +0 -0
@@ -216,6 +216,31 @@
|
|
216
216
|
</div>
|
217
217
|
</div>
|
218
218
|
</div>
|
219
|
+
|
220
|
+
<!-- Collapsible Log Panel -->
|
221
|
+
<div class="collapsible-log-panel">
|
222
|
+
<div class="log-panel-header" id="log-panel-toggle">
|
223
|
+
<i class="fas fa-chevron-down toggle-icon"></i>
|
224
|
+
<span>Research Logs</span>
|
225
|
+
<span class="log-indicator" id="log-indicator">0</span>
|
226
|
+
</div>
|
227
|
+
<div class="log-panel-content" id="log-panel-content">
|
228
|
+
<div class="log-controls">
|
229
|
+
<div class="log-filter">
|
230
|
+
<div class="filter-buttons">
|
231
|
+
<button class="small-btn selected" onclick="window.filterLogsByType('all')">All</button>
|
232
|
+
<button class="small-btn" onclick="window.filterLogsByType('milestone')">Milestones</button>
|
233
|
+
<button class="small-btn" onclick="window.filterLogsByType('info')">Info</button>
|
234
|
+
<button class="small-btn" onclick="window.filterLogsByType('error')">Errors</button>
|
235
|
+
</div>
|
236
|
+
</div>
|
237
|
+
</div>
|
238
|
+
<div class="console-log" id="console-log-container">
|
239
|
+
<!-- Logs will be added here dynamically -->
|
240
|
+
<div class="empty-log-message">No logs yet. Research logs will appear here as they occur.</div>
|
241
|
+
</div>
|
242
|
+
</div>
|
243
|
+
</div>
|
219
244
|
</main>
|
220
245
|
</div>
|
221
246
|
|
@@ -310,5 +335,14 @@
|
|
310
335
|
window.html2canvas_noSandbox = true;
|
311
336
|
}
|
312
337
|
</script>
|
338
|
+
|
339
|
+
<!-- Add a template for console log entries -->
|
340
|
+
<template id="console-log-entry-template">
|
341
|
+
<div class="console-log-entry">
|
342
|
+
<span class="log-timestamp"></span>
|
343
|
+
<span class="log-badge"></span>
|
344
|
+
<span class="log-message"></span>
|
345
|
+
</div>
|
346
|
+
</template>
|
313
347
|
</body>
|
314
348
|
</html>
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: local-deep-research
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.13
|
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
|
@@ -51,7 +51,7 @@ Requires-Dist: flask-socketio>=5.1.1
|
|
51
51
|
Requires-Dist: sqlalchemy>=1.4.23
|
52
52
|
Requires-Dist: wikipedia
|
53
53
|
Requires-Dist: arxiv>=1.4.3
|
54
|
-
Requires-Dist:
|
54
|
+
Requires-Dist: pypdf
|
55
55
|
Requires-Dist: sentence-transformers
|
56
56
|
Requires-Dist: faiss-cpu
|
57
57
|
Requires-Dist: pydantic>=2.0.0
|
@@ -59,6 +59,7 @@ Requires-Dist: pydantic-settings>=2.0.0
|
|
59
59
|
Requires-Dist: toml>=0.10.2
|
60
60
|
Requires-Dist: platformdirs>=3.0.0
|
61
61
|
Requires-Dist: dynaconf
|
62
|
+
Dynamic: license-file
|
62
63
|
|
63
64
|
# Local Deep Research
|
64
65
|
|
@@ -157,6 +158,11 @@ pip install local-deep-research
|
|
157
158
|
playwright install
|
158
159
|
ollama pull mistral
|
159
160
|
```
|
161
|
+
## Community & Support
|
162
|
+
|
163
|
+
We've just launched our [Discord server](https://discord.gg/2E6gYU2Z) for this project!
|
164
|
+
|
165
|
+
Our Discord server can help to exchange ideas about research approaches, discuss advanced usage patterns, and share other ideas.
|
160
166
|
|
161
167
|
# Edit .env with your API keys (if using cloud LLMs)
|
162
168
|
ANTHROPIC_API_KEY=your-api-key-here # For Claude
|
@@ -1,10 +1,10 @@
|
|
1
1
|
local_deep_research/__init__.py,sha256=pfHzjzYc6Szo8VCNLtFZRXyAlEz7CViY7r2fH9O7yms,584
|
2
2
|
local_deep_research/citation_handler.py,sha256=1Znl5SPkVwOZ3JvFowvaW1uriaw37s1nPYhXbpa2UZ0,4423
|
3
|
-
local_deep_research/config.py,sha256=
|
3
|
+
local_deep_research/config.py,sha256=g_tRHJ0RdtWC8jXclyMiCrmQC3e3lS8mRmBM74WiNlU,8628
|
4
4
|
local_deep_research/local_collections.py,sha256=SB-fdptT7qS0klJUVx_Rs9OgDwafMUgI46984WlZGKI,6076
|
5
5
|
local_deep_research/main.py,sha256=uQXtGQ6LtZNd5Qw63D5ke4Q_LjYimouWVSUknVsk3JQ,3645
|
6
6
|
local_deep_research/report_generator.py,sha256=UOiSw_vPHgtUpI8L9_UaOlpBVBloPB-ilhAo-1d2B9M,8200
|
7
|
-
local_deep_research/search_system.py,sha256=
|
7
|
+
local_deep_research/search_system.py,sha256=K2jJDW8OD44PjFi8xnnVC5rlNGZN1SyMWiVz2KBhxGs,15099
|
8
8
|
local_deep_research/defaults/__init__.py,sha256=2Vvlkl-gmP_qPYWegE4JBgummypogl3VXrQ1XzptFDU,1381
|
9
9
|
local_deep_research/defaults/llm_config.py,sha256=88IGWPPvikSKmAqfqsGovBx2Jac5eh2sBY_LIW624Ik,7910
|
10
10
|
local_deep_research/defaults/local_collections.toml,sha256=_edVWVHrhunMfazjejhJlGPRkHKKIP51qQtNkMgNEiA,1406
|
@@ -16,12 +16,12 @@ local_deep_research/utilties/llm_utils.py,sha256=IGv-_gJWqLTpO3_op1NHIwxKaFEzmXh
|
|
16
16
|
local_deep_research/utilties/search_utilities.py,sha256=C8ycFd7blcq5vtnd6GxP8dkepZT6EEqHFtT3WYxF0Ck,4151
|
17
17
|
local_deep_research/utilties/setup_utils.py,sha256=t6GNp7lK1nLPdPNCkYUk82IATGM62vqy8UBD-KqShOs,215
|
18
18
|
local_deep_research/web/__init__.py,sha256=3oHMatNu8r24FBtpojriIVbHYOVSHj4Q-quycMKOuDk,62
|
19
|
-
local_deep_research/web/app.py,sha256=
|
20
|
-
local_deep_research/web/static/css/styles.css,sha256=
|
21
|
-
local_deep_research/web/static/js/app.js,sha256=
|
19
|
+
local_deep_research/web/app.py,sha256=h2Ic90tIHeoRjnouTCiGlyxLQW46o2TMzicZ2h_4kA8,73488
|
20
|
+
local_deep_research/web/static/css/styles.css,sha256=mW217FfZNW1pzMtlbuXE2fRBJekeIdIoy4m-yXFirj4,23782
|
21
|
+
local_deep_research/web/static/js/app.js,sha256=GPncdWpw2YNTs56JY-0tjTTr9JnX-fIZSZX0agwKZMU,172813
|
22
22
|
local_deep_research/web/templates/api_keys_config.html,sha256=jA8Y-nfUGJ1dTvbw2jK_8xPy2x6UG_5gHpbrTJAex2g,3527
|
23
23
|
local_deep_research/web/templates/collections_config.html,sha256=Dci7KumXBON8rAXRX8TVjgqS-bbht7d6aQiedDUnxQ0,3560
|
24
|
-
local_deep_research/web/templates/index.html,sha256=
|
24
|
+
local_deep_research/web/templates/index.html,sha256=IW4cU5NgXVFXF6BxMhLuFzwkte_iYmLo3DQssxuYLZw,17490
|
25
25
|
local_deep_research/web/templates/llm_config.html,sha256=23BqM2bFbb_S3xeXHhAnsw_BWIhjQto430QWL67mfaU,4169
|
26
26
|
local_deep_research/web/templates/main_config.html,sha256=xMIgqZzrMxLzeKavsDX3XY34K4aBJYB-lHeaNcE6AZc,3266
|
27
27
|
local_deep_research/web/templates/search_engines_config.html,sha256=z_krznfdhF3erWy-qsAK8mUaut9x5zZ0MrU3AciYjQc,7008
|
@@ -49,9 +49,9 @@ local_deep_research/web_search_engines/engines/search_engine_searxng.py,sha256=9
|
|
49
49
|
local_deep_research/web_search_engines/engines/search_engine_serpapi.py,sha256=0zFskxH5MDDzTpwSXjdM25J8vcJrI7xtjnQDpodRZb0,9131
|
50
50
|
local_deep_research/web_search_engines/engines/search_engine_wayback.py,sha256=BJ6MBuryJ88VVT_YtNx04ruagCx95rE9W7Af0DboAbI,18145
|
51
51
|
local_deep_research/web_search_engines/engines/search_engine_wikipedia.py,sha256=LSLOA0AuNy_Yb1-qeAEiwx_fFr2qK8FQG4pY5j-VycY,9812
|
52
|
-
local_deep_research-0.1.
|
53
|
-
local_deep_research-0.1.
|
54
|
-
local_deep_research-0.1.
|
55
|
-
local_deep_research-0.1.
|
56
|
-
local_deep_research-0.1.
|
57
|
-
local_deep_research-0.1.
|
52
|
+
local_deep_research-0.1.13.dist-info/licenses/LICENSE,sha256=Qg2CaTdu6SWnSqk1_JtgBPp_Da-LdqJDhT1Vt1MUc5s,1072
|
53
|
+
local_deep_research-0.1.13.dist-info/METADATA,sha256=Dz3RkCqRvzMLR85BI-CjWkD7NDXcDL0vF0cOaJUfllQ,15151
|
54
|
+
local_deep_research-0.1.13.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
55
|
+
local_deep_research-0.1.13.dist-info/entry_points.txt,sha256=u-Y6Z3MWtR3dmsTDFYhXyfkPv7mALUA7YAnY4Fi1XDs,97
|
56
|
+
local_deep_research-0.1.13.dist-info/top_level.txt,sha256=h6-uVE_wSuLOcoWwT9szhX23mBWufu77MqmM25UfbCY,20
|
57
|
+
local_deep_research-0.1.13.dist-info/RECORD,,
|
{local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info}/entry_points.txt
RENAMED
File without changes
|
{local_deep_research-0.1.1.dist-info → local_deep_research-0.1.13.dist-info/licenses}/LICENSE
RENAMED
File without changes
|
File without changes
|