local-deep-research 0.5.4__py3-none-any.whl → 0.5.6__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/__version__.py +1 -1
- local_deep_research/advanced_search_system/questions/standard_question.py +1 -1
- local_deep_research/advanced_search_system/strategies/focused_iteration_strategy.py +1 -1
- local_deep_research/web/app.py +3 -3
- {local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/METADATA +1 -1
- {local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/RECORD +9 -9
- {local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/WHEEL +0 -0
- {local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/entry_points.txt +0 -0
- {local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/licenses/LICENSE +0 -0
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.5.
|
1
|
+
__version__ = "0.5.6"
|
@@ -50,7 +50,7 @@ class StandardQuestionGenerator(BaseQuestionGenerator):
|
|
50
50
|
response_text = str(response)
|
51
51
|
|
52
52
|
questions = [
|
53
|
-
q.replace("Q:", "").strip()
|
53
|
+
q.replace("Q:", "").strip()
|
54
54
|
for q in response_text.split("\n")
|
55
55
|
if q.strip().startswith("Q:")
|
56
56
|
][:questions_per_iteration]
|
@@ -55,7 +55,7 @@ class FocusedIterationStrategy(BaseSearchStrategy):
|
|
55
55
|
all_links_of_system=None,
|
56
56
|
max_iterations: int = 8, # OPTIMAL FOR SIMPLEQA: 96.51% accuracy achieved
|
57
57
|
questions_per_iteration: int = 5, # OPTIMAL FOR SIMPLEQA: proven config
|
58
|
-
use_browsecomp_optimization: bool =
|
58
|
+
use_browsecomp_optimization: bool = False, # Can be False for pure SimpleQA
|
59
59
|
):
|
60
60
|
"""Initialize with components optimized for focused iteration."""
|
61
61
|
super().__init__(all_links_of_system)
|
local_deep_research/web/app.py
CHANGED
@@ -16,9 +16,6 @@ from .models.database import (
|
|
16
16
|
# Ensure data directory exists
|
17
17
|
setup_data_dir()
|
18
18
|
|
19
|
-
# Configure logging with milestone level
|
20
|
-
config_logger("ldr_web")
|
21
|
-
|
22
19
|
# Run schema upgrades if database exists
|
23
20
|
if os.path.exists(DB_PATH):
|
24
21
|
try:
|
@@ -55,6 +52,9 @@ def main():
|
|
55
52
|
Entry point for the web application when run as a command.
|
56
53
|
This function is needed for the package's entry point to work properly.
|
57
54
|
"""
|
55
|
+
# Configure logging with milestone level
|
56
|
+
config_logger("ldr_web")
|
57
|
+
|
58
58
|
# Create the Flask app and SocketIO instance
|
59
59
|
app, socketio = create_app()
|
60
60
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: local-deep-research
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.6
|
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
|
@@ -1,9 +1,9 @@
|
|
1
|
-
local_deep_research-0.5.
|
2
|
-
local_deep_research-0.5.
|
3
|
-
local_deep_research-0.5.
|
4
|
-
local_deep_research-0.5.
|
1
|
+
local_deep_research-0.5.6.dist-info/METADATA,sha256=z4f4FzpNHmL7VxtUa1qoLxoMOtJLut99WbwJ7pQPV4o,17676
|
2
|
+
local_deep_research-0.5.6.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
3
|
+
local_deep_research-0.5.6.dist-info/entry_points.txt,sha256=GcXS501Rjh-P80S8db7hnrQ23mS_Jg27PwpVQVO77as,113
|
4
|
+
local_deep_research-0.5.6.dist-info/licenses/LICENSE,sha256=Qg2CaTdu6SWnSqk1_JtgBPp_Da-LdqJDhT1Vt1MUc5s,1072
|
5
5
|
local_deep_research/__init__.py,sha256=j1ktf_e9HeXPe86NHibY5aINtZfTSGRTvLNtz9BJZa4,1071
|
6
|
-
local_deep_research/__version__.py,sha256=
|
6
|
+
local_deep_research/__version__.py,sha256=CMH34Gt1AqO7z_TqRj94XwohGoVCf8aes0djkqm45mk,22
|
7
7
|
local_deep_research/advanced_search_system/__init__.py,sha256=sGusMj4eFIrhXR6QbOM16UDKB6aI-iS4IFivKWpMlh0,234
|
8
8
|
local_deep_research/advanced_search_system/answer_decoding/__init__.py,sha256=BmmbIPQnouYyboFD61CDq71fW5On555w7dbt42s9gV4,148
|
9
9
|
local_deep_research/advanced_search_system/answer_decoding/browsecomp_answer_decoder.py,sha256=4FDMP4n_z5DOzVIisH3_kexRqNm1AO3MDe-Md3WtgE0,12856
|
@@ -51,7 +51,7 @@ local_deep_research/advanced_search_system/questions/base_question.py,sha256=yYM
|
|
51
51
|
local_deep_research/advanced_search_system/questions/browsecomp_question.py,sha256=xgPbwWS5Lvn2CNMwYC0Fber0WQlttBjfaKLGfFu3IuQ,10646
|
52
52
|
local_deep_research/advanced_search_system/questions/decomposition_question.py,sha256=3OjLCH-k79hIoGJjyg_TYnvjldrggyBANQC8KVDVRrs,17555
|
53
53
|
local_deep_research/advanced_search_system/questions/entity_aware_question.py,sha256=_rQKkq9w-yuAHi-uVPAODhdA1_MFaPTZtWawnel02Tw,5607
|
54
|
-
local_deep_research/advanced_search_system/questions/standard_question.py,sha256=
|
54
|
+
local_deep_research/advanced_search_system/questions/standard_question.py,sha256=PMSd4XBmMsKuE8wsBVbQO-EZkLIjSbxAtpSw5pjyizc,4671
|
55
55
|
local_deep_research/advanced_search_system/repositories/__init__.py,sha256=cCjAR9Z3BFZaN6_OYN9zJPvwcxCxgfp9oOeMqUmLX2c,145
|
56
56
|
local_deep_research/advanced_search_system/search_optimization/cross_constraint_manager.py,sha256=f8NAdT6JK_J7y02Tzc7IZ84xCAU8ewioVYjiLfgusqk,20548
|
57
57
|
local_deep_research/advanced_search_system/source_management/diversity_manager.py,sha256=Tb8vQIup-3yaYKnSh9d_lGuOxktk2tKEFwLXLN67gQM,20303
|
@@ -70,7 +70,7 @@ local_deep_research/advanced_search_system/strategies/early_stop_constrained_str
|
|
70
70
|
local_deep_research/advanced_search_system/strategies/entity_aware_source_strategy.py,sha256=PMKaJHPHy0H77leqRi_g85KUY22ro2kOYLjprn_Def4,4931
|
71
71
|
local_deep_research/advanced_search_system/strategies/evidence_based_strategy.py,sha256=cj9NYf-16A9huHrnMEHDtDg6Ea2T3lrfA0ypUrQdOqg,48505
|
72
72
|
local_deep_research/advanced_search_system/strategies/evidence_based_strategy_v2.py,sha256=z2KBZIEOjg_-iREy7mLZAYklWwVTbJeFUBzApmvxmFw,50109
|
73
|
-
local_deep_research/advanced_search_system/strategies/focused_iteration_strategy.py,sha256=
|
73
|
+
local_deep_research/advanced_search_system/strategies/focused_iteration_strategy.py,sha256=hd81pISc4bIvzFmiWHGWF9lxuJ5dDvcvy7hongT_9bs,21973
|
74
74
|
local_deep_research/advanced_search_system/strategies/improved_evidence_based_strategy.py,sha256=EbAhNQg5tDWLlkruXB9zvM5avDuBQMU0GhXtmRCKCPU,29065
|
75
75
|
local_deep_research/advanced_search_system/strategies/iterative_reasoning_strategy.py,sha256=OU5i1foMXupjRJFm3AN2TpqEbGrEmTRqiDekiuw5PbM,29787
|
76
76
|
local_deep_research/advanced_search_system/strategies/iterdrag_strategy.py,sha256=nqGD1COMJXxCTyRABTjSU8bZ8yZ95vHp_91KhjQUB6E,19000
|
@@ -175,7 +175,7 @@ local_deep_research/utilities/threading_utils.py,sha256=3dwErIOazT6V4HkUFo4BvjRN
|
|
175
175
|
local_deep_research/utilities/url_utils.py,sha256=-GjOVrJCglNCDRs9rePyP1T8d6TeIGwI_nzCA5USPd4,1909
|
176
176
|
local_deep_research/web/__init__.py,sha256=CynnuRxCf9mB0AHeylhF5yVZwdj0H6bxVrZtniw3xmE,44
|
177
177
|
local_deep_research/web/api.py,sha256=jtn6ndV-ghRYqBkxDTz2hR9woQ4yIAtwa13YXa2_d7g,11260
|
178
|
-
local_deep_research/web/app.py,sha256=
|
178
|
+
local_deep_research/web/app.py,sha256=3bBUHXB35AE3-7oxSieF0ceYrQaq5LBTdJUSr8PpcCU,3376
|
179
179
|
local_deep_research/web/app_factory.py,sha256=7o5GM8PUwVzB1sz7PywXLLqw3QkzhZZ18mBPbvZXKbM,9153
|
180
180
|
local_deep_research/web/database/README.md,sha256=eEDLqLIfOBRvc0TFh3J1HrtFbZceYmVgpjS3-oyZ5nI,2861
|
181
181
|
local_deep_research/web/database/migrate_to_ldr_db.py,sha256=RRzITerhjUjlHPTf6GoNgrwa4BpKuj_RAohzcS9ttG0,9919
|
@@ -264,4 +264,4 @@ local_deep_research/web_search_engines/engines/search_engine_wikipedia.py,sha256
|
|
264
264
|
local_deep_research/web_search_engines/search_engine_base.py,sha256=sRgtszDM9RqNw_oVdmGk8CmKS_9EJYR-LyE1as53cp8,12401
|
265
265
|
local_deep_research/web_search_engines/search_engine_factory.py,sha256=eMaFup2p4u1nP4fTmjzfLUAl_mUZkoE1mUABBIvNzDM,12095
|
266
266
|
local_deep_research/web_search_engines/search_engines_config.py,sha256=oJ5GL9BhFvWFgmFtvwJ7AZ9o-uPLEfTNhJJouHF40iA,5296
|
267
|
-
local_deep_research-0.5.
|
267
|
+
local_deep_research-0.5.6.dist-info/RECORD,,
|
File without changes
|
{local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/entry_points.txt
RENAMED
File without changes
|
{local_deep_research-0.5.4.dist-info → local_deep_research-0.5.6.dist-info}/licenses/LICENSE
RENAMED
File without changes
|