local-deep-research 0.1.0__py3-none-any.whl → 0.1.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.
- local_deep_research/defaults/main.toml +5 -0
- local_deep_research/search_system.py +98 -38
- local_deep_research/web/app.py +360 -117
- local_deep_research/web/static/css/styles.css +28 -2
- local_deep_research/web/static/js/app.js +640 -197
- local_deep_research/web/templates/index.html +3 -1
- local_deep_research/web_search_engines/engines/search_engine_searxng.py +454 -0
- local_deep_research/web_search_engines/search_engine_factory.py +20 -1
- {local_deep_research-0.1.0.dist-info → local_deep_research-0.1.1.dist-info}/METADATA +16 -4
- {local_deep_research-0.1.0.dist-info → local_deep_research-0.1.1.dist-info}/RECORD +14 -13
- {local_deep_research-0.1.0.dist-info → local_deep_research-0.1.1.dist-info}/LICENSE +0 -0
- {local_deep_research-0.1.0.dist-info → local_deep_research-0.1.1.dist-info}/WHEEL +0 -0
- {local_deep_research-0.1.0.dist-info → local_deep_research-0.1.1.dist-info}/entry_points.txt +0 -0
- {local_deep_research-0.1.0.dist-info → local_deep_research-0.1.1.dist-info}/top_level.txt +0 -0
@@ -422,8 +422,9 @@ textarea:focus, input[type="text"]:focus {
|
|
422
422
|
}
|
423
423
|
|
424
424
|
.status-in-progress {
|
425
|
-
background-color: rgba(
|
426
|
-
color: var(--
|
425
|
+
background-color: rgba(64, 191, 255, 0.15);
|
426
|
+
color: var(--accent-tertiary);
|
427
|
+
animation: pulse 2s infinite;
|
427
428
|
}
|
428
429
|
|
429
430
|
.status-failed {
|
@@ -432,6 +433,7 @@ textarea:focus, input[type="text"]:focus {
|
|
432
433
|
}
|
433
434
|
|
434
435
|
.status-suspended {
|
436
|
+
background-color: rgba(243, 156, 18, 0.15);
|
435
437
|
color: #f39c12;
|
436
438
|
}
|
437
439
|
|
@@ -982,6 +984,7 @@ textarea:focus, input[type="text"]:focus {
|
|
982
984
|
margin-top: 1rem;
|
983
985
|
}
|
984
986
|
|
987
|
+
<<<<<<< HEAD:src/local_deep_research/web/static/css/styles.css
|
985
988
|
.file-path {
|
986
989
|
background-color: #1a1a1a;
|
987
990
|
padding: 10px;
|
@@ -1005,4 +1008,27 @@ textarea:focus, input[type="text"]:focus {
|
|
1005
1008
|
|
1006
1009
|
.mt-4 {
|
1007
1010
|
margin-top: 20px;
|
1011
|
+
=======
|
1012
|
+
#try-again-btn {
|
1013
|
+
margin-top: 15px;
|
1014
|
+
display: flex;
|
1015
|
+
align-items: center;
|
1016
|
+
justify-content: center;
|
1017
|
+
gap: 8px;
|
1018
|
+
padding: 8px 16px;
|
1019
|
+
background-color: #3498db;
|
1020
|
+
color: white;
|
1021
|
+
border: none;
|
1022
|
+
border-radius: 4px;
|
1023
|
+
cursor: pointer;
|
1024
|
+
transition: background-color 0.2s;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
#try-again-btn:hover {
|
1028
|
+
background-color: #2980b9;
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
#try-again-btn i {
|
1032
|
+
margin-right: 5px;
|
1033
|
+
>>>>>>> main:static/css/styles.css
|
1008
1034
|
}
|