deepresearch-flow 0.4.1__py3-none-any.whl → 0.5.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.
- deepresearch_flow/paper/db.py +34 -0
- deepresearch_flow/paper/db_ops.py +21 -7
- deepresearch_flow/paper/prompt_templates/deep_read_phi_system.j2 +6 -0
- deepresearch_flow/paper/prompt_templates/deep_read_phi_user.j2 +391 -0
- deepresearch_flow/paper/prompt_templates/eight_questions_phi_system.j2 +6 -0
- deepresearch_flow/paper/prompt_templates/eight_questions_phi_user.j2 +133 -0
- deepresearch_flow/paper/prompt_templates/simple_phi_system.j2 +6 -0
- deepresearch_flow/paper/prompt_templates/simple_phi_user.j2 +31 -0
- deepresearch_flow/paper/schemas/deep_read_phi_schema.json +30 -0
- deepresearch_flow/paper/template_registry.py +39 -0
- deepresearch_flow/paper/templates/deep_read_phi.md.j2 +40 -0
- deepresearch_flow/paper/web/app.py +106 -1
- deepresearch_flow/paper/web/constants.py +1 -0
- deepresearch_flow/paper/web/handlers/__init__.py +2 -1
- deepresearch_flow/paper/web/handlers/api.py +55 -0
- deepresearch_flow/paper/web/handlers/pages.py +105 -25
- deepresearch_flow/paper/web/markdown.py +230 -4
- deepresearch_flow/paper/web/pdfjs/web/viewer.html +57 -5
- deepresearch_flow/paper/web/pdfjs/web/viewer.js +5 -1
- deepresearch_flow/paper/web/static/css/main.css +8 -1
- deepresearch_flow/paper/web/static/js/detail.js +527 -124
- deepresearch_flow/paper/web/static/js/outline.js +48 -34
- deepresearch_flow/paper/web/static_assets.py +289 -0
- deepresearch_flow/paper/web/templates/detail.html +52 -66
- deepresearch_flow/paper/web/templates.py +7 -4
- deepresearch_flow/paper/web/text.py +8 -4
- deepresearch_flow/recognize/organize.py +9 -12
- deepresearch_flow/translator/fixers.py +15 -0
- {deepresearch_flow-0.4.1.dist-info → deepresearch_flow-0.5.1.dist-info}/METADATA +62 -2
- {deepresearch_flow-0.4.1.dist-info → deepresearch_flow-0.5.1.dist-info}/RECORD +34 -25
- {deepresearch_flow-0.4.1.dist-info → deepresearch_flow-0.5.1.dist-info}/WHEEL +0 -0
- {deepresearch_flow-0.4.1.dist-info → deepresearch_flow-0.5.1.dist-info}/entry_points.txt +0 -0
- {deepresearch_flow-0.4.1.dist-info → deepresearch_flow-0.5.1.dist-info}/licenses/LICENSE +0 -0
- {deepresearch_flow-0.4.1.dist-info → deepresearch_flow-0.5.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deepresearch-flow
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: Workflow tools for paper extraction, review, and research automation.
|
|
5
5
|
Author-email: DengQi <dengqi935@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -87,7 +87,7 @@ Dynamic: license-file
|
|
|
87
87
|
<a href="https://hub.docker.com/r/nerdneils/deepresearch-flow">
|
|
88
88
|
<img src="https://img.shields.io/docker/v/nerdneils/deepresearch-flow?style=flat-square" />
|
|
89
89
|
</a>
|
|
90
|
-
<a href="https://
|
|
90
|
+
<a href="https://github.com/nerdneilsfield/ai-deepresearch-flow/pkgs/container/deepresearch-flow">
|
|
91
91
|
<img src="https://img.shields.io/badge/ghcr.io-nerdneilsfield%2Fdeepresearch-flow-0f172a?style=flat-square" />
|
|
92
92
|
</a>
|
|
93
93
|
<a href="https://github.com/nerdneilsfield/ai-deepresearch-flow/blob/main/LICENSE">
|
|
@@ -216,6 +216,66 @@ uv run deepresearch-flow paper db serve \
|
|
|
216
216
|
|
|
217
217
|
---
|
|
218
218
|
|
|
219
|
+
## Deployment (Static CDN)
|
|
220
|
+
|
|
221
|
+
Use a separate static server (CDN) for PDFs/Markdown/images and keep the API/UI on another host.
|
|
222
|
+
|
|
223
|
+
### 1) Export static assets
|
|
224
|
+
|
|
225
|
+
```bash
|
|
226
|
+
uv run deepresearch-flow paper db serve \
|
|
227
|
+
--input paper_infos.json \
|
|
228
|
+
--md-root ./docs \
|
|
229
|
+
--md-translated-root ./docs \
|
|
230
|
+
--pdf-root ./pdfs \
|
|
231
|
+
--static-mode prod \
|
|
232
|
+
--static-base-url https://static.example.com \
|
|
233
|
+
--static-export-dir /data/paper-static
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
Notes:
|
|
237
|
+
- The API host must be able to read the original PDF/Markdown roots to build the index and hashes.
|
|
238
|
+
- The CDN host only needs the exported directory (e.g. `/data/paper-static`).
|
|
239
|
+
|
|
240
|
+
### 2) Serve the export directory with CORS + cache headers (Caddy example)
|
|
241
|
+
|
|
242
|
+
```caddyfile
|
|
243
|
+
:8002 {
|
|
244
|
+
root * /data/paper-static
|
|
245
|
+
encode zstd gzip
|
|
246
|
+
|
|
247
|
+
@static path /pdf/* /md/* /md_translate/* /images/*
|
|
248
|
+
header @static {
|
|
249
|
+
Access-Control-Allow-Origin *
|
|
250
|
+
Access-Control-Allow-Methods GET,HEAD,OPTIONS
|
|
251
|
+
Access-Control-Allow-Headers *
|
|
252
|
+
Cache-Control "public, max-age=31536000, immutable"
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
@options method OPTIONS
|
|
256
|
+
respond @options 204
|
|
257
|
+
|
|
258
|
+
file_server
|
|
259
|
+
}
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
### 3) Start the API/UI with static base
|
|
263
|
+
|
|
264
|
+
```bash
|
|
265
|
+
export PAPER_DB_STATIC_BASE_URL="https://static.example.com"
|
|
266
|
+
export PAPER_DB_STATIC_MODE="prod"
|
|
267
|
+
export PAPER_DB_STATIC_EXPORT_DIR="/data/paper-static"
|
|
268
|
+
export PAPER_DB_PDFJS_CDN_BASE_URL="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/4.0.379"
|
|
269
|
+
|
|
270
|
+
uv run deepresearch-flow paper db serve \
|
|
271
|
+
--input paper_infos.json \
|
|
272
|
+
--md-root ./docs \
|
|
273
|
+
--md-translated-root ./docs \
|
|
274
|
+
--pdf-root ./pdfs
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
---
|
|
278
|
+
|
|
219
279
|
## Comprehensive Guide
|
|
220
280
|
|
|
221
281
|
<details>
|
|
@@ -4,20 +4,26 @@ deepresearch_flow/cli.py,sha256=t4oowCNWldL0DrVJ4d0UlRkuGU2qHej_G0mAc_quteQ,455
|
|
|
4
4
|
deepresearch_flow/paper/__init__.py,sha256=sunaOkcgAJBrfmcaJTumcWbPGVUSGWvOv2a2Yidzy0A,43
|
|
5
5
|
deepresearch_flow/paper/cli.py,sha256=4UY3KHi6BUGztL1vB4w0cCMiIAo9KNxrfQn1GBHt6fA,11153
|
|
6
6
|
deepresearch_flow/paper/config.py,sha256=totVBGzouh0KS6mhRNPneXZYPuuw0SHiOGdO3r6HSfc,9289
|
|
7
|
-
deepresearch_flow/paper/db.py,sha256
|
|
8
|
-
deepresearch_flow/paper/db_ops.py,sha256=
|
|
7
|
+
deepresearch_flow/paper/db.py,sha256=-9Wl-ivIu0N8bC6lFGxxBKKQewD8aay7Aq-ynfhEqJg,43002
|
|
8
|
+
deepresearch_flow/paper/db_ops.py,sha256=Nwbou8y3jMNKMcvDSJfmi5NYQwEtoHk1E_7TbwDoYX8,70501
|
|
9
9
|
deepresearch_flow/paper/extract.py,sha256=ID1dd2r6LTB0kRF4qBSH6bGtBGv0znw--g_mXYBcoeU,32314
|
|
10
10
|
deepresearch_flow/paper/llm.py,sha256=mHfs5IkT3Q6BOh46MDlfUmgVTX24WRf0IKKoOnN8nV8,4007
|
|
11
11
|
deepresearch_flow/paper/prompts.py,sha256=mV7cEXw8pwukBUE4Trah0SjEPSSDgg5-RGaNaUdo4EU,519
|
|
12
12
|
deepresearch_flow/paper/render.py,sha256=KeccrRGf1_sxoaiT6SUDkFRj9sStReoEwNvlw1ir7qw,2181
|
|
13
13
|
deepresearch_flow/paper/schema.py,sha256=tQEVbj4R8NqNGBW6VYwW-xf5QJgV9qthrbZB-EmZTKA,1931
|
|
14
|
-
deepresearch_flow/paper/template_registry.py,sha256=
|
|
14
|
+
deepresearch_flow/paper/template_registry.py,sha256=OSJOLAHFOtjsGR7sNXYstL8Z6VdY5g-KvBhNMgVUNXw,7387
|
|
15
15
|
deepresearch_flow/paper/utils.py,sha256=Lbr4OLiTtGJ8qX3AXOZHJdLVPVqdVLewClQKT_2XAQA,3788
|
|
16
16
|
deepresearch_flow/paper/prompt_templates/__init__.py,sha256=b72Jin1J2Q7KS3635Te3YZm1ZXhuMIPzDVUH172Rphc,33
|
|
17
|
+
deepresearch_flow/paper/prompt_templates/deep_read_phi_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
18
|
+
deepresearch_flow/paper/prompt_templates/deep_read_phi_user.j2,sha256=UAobEe25nIyr0f7jAfL3ca5qZzHHJHKE3O-NixwBibI,17581
|
|
17
19
|
deepresearch_flow/paper/prompt_templates/deep_read_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
18
20
|
deepresearch_flow/paper/prompt_templates/deep_read_user.j2,sha256=VS_6ZkhN_h3-ur7tA4sosdPttjCg9ZwlhAn1LR4tsag,4068
|
|
21
|
+
deepresearch_flow/paper/prompt_templates/eight_questions_phi_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
22
|
+
deepresearch_flow/paper/prompt_templates/eight_questions_phi_user.j2,sha256=9q6zSLZO2OhRNvOg0tCFFYH6avUyGAf3yW6wsnRyOvQ,7866
|
|
19
23
|
deepresearch_flow/paper/prompt_templates/eight_questions_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
20
24
|
deepresearch_flow/paper/prompt_templates/eight_questions_user.j2,sha256=vyfMstnXAb5zLsxcqyYxTt5OWjpmPVoqaV-dIJshcrw,1339
|
|
25
|
+
deepresearch_flow/paper/prompt_templates/simple_phi_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
26
|
+
deepresearch_flow/paper/prompt_templates/simple_phi_user.j2,sha256=LL_h0O1wcGLZQtuhTfUUhURjAoJwH8Vrmh3XzeB9bRM,2089
|
|
21
27
|
deepresearch_flow/paper/prompt_templates/simple_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
22
28
|
deepresearch_flow/paper/prompt_templates/simple_user.j2,sha256=UX2FlsJkRdvbgPZmlCFzB7E2peGKpIjMGqkBfBQ4EHM,774
|
|
23
29
|
deepresearch_flow/paper/prompt_templates/three_pass_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
@@ -31,26 +37,29 @@ deepresearch_flow/paper/providers/gemini.py,sha256=x_JegccP4JK0pBj7slz7gVwX-6-ep
|
|
|
31
37
|
deepresearch_flow/paper/providers/ollama.py,sha256=j3vZgP6gyxu9n5VF-4v8p3nOCbetzmnlaBjZmvuYKxE,1439
|
|
32
38
|
deepresearch_flow/paper/providers/openai_compatible.py,sha256=eidpcOm5D24e0YU80ECUXcCnWgsMDv7gRXf3vnJlP4M,2077
|
|
33
39
|
deepresearch_flow/paper/schemas/__init__.py,sha256=NzRW1ugk01AZMkoDOrK-RF-fypYxYKOnyyKDzlHUQ40,29
|
|
40
|
+
deepresearch_flow/paper/schemas/deep_read_phi_schema.json,sha256=_kPHH4RKzfTlYrDW7XgNhBECAAHXlvpNnnX9EP6Wqjk,823
|
|
34
41
|
deepresearch_flow/paper/schemas/deep_read_schema.json,sha256=f9yhsisW_zSxRpjTn1D3-nsmtJMHmGJLLvRGPEmQX0s,1263
|
|
35
42
|
deepresearch_flow/paper/schemas/default_paper_schema.json,sha256=Ncz-XSOJuB5jz1k7jAG7ha819rXPL4UGew06fJHkImM,827
|
|
36
43
|
deepresearch_flow/paper/schemas/eight_questions_schema.json,sha256=3jYQeKvJWduuU_4En-M-s0gEJMOjdjYeu_ENlf8CDyw,931
|
|
37
44
|
deepresearch_flow/paper/schemas/three_pass_schema.json,sha256=8aNr4EdRiilxszIRBCC4hRNXrfIOcdnVW4Qhe6Fnh0o,689
|
|
38
45
|
deepresearch_flow/paper/templates/__init__.py,sha256=p8W6kINvrf-T2X6Ow4GMr28syVOorFuMn0pbmieVzAw,35
|
|
39
46
|
deepresearch_flow/paper/templates/deep_read.md.j2,sha256=yYe2IotBpoDnpUE8lR0OaHMzmiH8rDNRQkaaELpuhPA,4637
|
|
47
|
+
deepresearch_flow/paper/templates/deep_read_phi.md.j2,sha256=c9jBJv2L4YLQutYuzYw_6DAgJUtBeQWOphTMp94AjKs,1523
|
|
40
48
|
deepresearch_flow/paper/templates/default_paper.md.j2,sha256=3azu48534QtLtHrCwI1sXtQUSaPfpWBVFOY44s-G63Y,887
|
|
41
49
|
deepresearch_flow/paper/templates/eight_questions.md.j2,sha256=Ecz4CD3nd7jZ4Dg8himZkTwF4WDkk0ILWk8V728uOPI,3038
|
|
42
50
|
deepresearch_flow/paper/templates/three_pass.md.j2,sha256=ZRj-NkpZePnqp0gSE8OT1dN5Lr5RW4vdOYdeVejYJW0,1576
|
|
43
51
|
deepresearch_flow/paper/web/__init__.py,sha256=eQBtBjvOYsNEdivHTI0aO286SCG2c86xI02tf-0jz5I,39
|
|
44
|
-
deepresearch_flow/paper/web/app.py,sha256=
|
|
45
|
-
deepresearch_flow/paper/web/constants.py,sha256=
|
|
52
|
+
deepresearch_flow/paper/web/app.py,sha256=DxrcwrtwUKLZfjT25_ly1zfnqvgL1A8zDF6W7pCb8BY,7246
|
|
53
|
+
deepresearch_flow/paper/web/constants.py,sha256=0QZjySqVt2c6PZFoykVoeVgZAXsUahfL4ZVQlfL_qAY,1165
|
|
46
54
|
deepresearch_flow/paper/web/filters.py,sha256=OVMB4GfigP9GPD5dXytHyeLYtnVXEK-QjYfA_k7QbaA,8315
|
|
47
|
-
deepresearch_flow/paper/web/markdown.py,sha256=
|
|
55
|
+
deepresearch_flow/paper/web/markdown.py,sha256=pwVGy-7kQHsEFo15SmNcQw15-v7lJn_N3VLd827L7uk,26852
|
|
48
56
|
deepresearch_flow/paper/web/query.py,sha256=vTegfm5zGVkYCd6_K3yNrXJEmKMccUUFKG9DePPcKMw,1938
|
|
49
|
-
deepresearch_flow/paper/web/
|
|
50
|
-
deepresearch_flow/paper/web/
|
|
51
|
-
deepresearch_flow/paper/web/
|
|
52
|
-
deepresearch_flow/paper/web/handlers/
|
|
53
|
-
deepresearch_flow/paper/web/handlers/
|
|
57
|
+
deepresearch_flow/paper/web/static_assets.py,sha256=EPx5-fakGf2aqOsczaINDyfL0GcHqg7UGDHjXRILNsw,9790
|
|
58
|
+
deepresearch_flow/paper/web/templates.py,sha256=P0sp9QFrCJFIvr6hc9W_U6nWttRlob_WpemiJulmq7I,2706
|
|
59
|
+
deepresearch_flow/paper/web/text.py,sha256=lTaj2cSP_2ssW2gnmpuHM_pNliCVoc4wuDvWjumU3q8,2356
|
|
60
|
+
deepresearch_flow/paper/web/handlers/__init__.py,sha256=Cux0JyM1gGS5UubzcXFY8Em9B_sS17qj-5VZS-hjlI4,329
|
|
61
|
+
deepresearch_flow/paper/web/handlers/api.py,sha256=uZPeQeWmcXqixIPMlcCHJVC0kUkk07uAXx4oeySPubA,11545
|
|
62
|
+
deepresearch_flow/paper/web/handlers/pages.py,sha256=Wd2YFwbacwu2xEGB_eaaP5EhHNHOvTMe6AjPNOE-0Gg,15335
|
|
54
63
|
deepresearch_flow/paper/web/pdfjs/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
|
55
64
|
deepresearch_flow/paper/web/pdfjs/build/pdf.js,sha256=2Ddm8gpMMfvOWinZh4nN--94GxR0QdpFvh0Qeejg-Bw,568294
|
|
56
65
|
deepresearch_flow/paper/web/pdfjs/build/pdf.js.map,sha256=W0nwVFY4inhYxz1raDU6NZ6-rNA21FxLj13txVAqbm4,1434098
|
|
@@ -62,8 +71,8 @@ deepresearch_flow/paper/web/pdfjs/web/compressed.tracemonkey-pldi-09.pdf,sha256=
|
|
|
62
71
|
deepresearch_flow/paper/web/pdfjs/web/debugger.css,sha256=LcUKndK6qiHOLQIRb2V9MYYzjJGGsJBaSAzl2nQ1uss,2482
|
|
63
72
|
deepresearch_flow/paper/web/pdfjs/web/debugger.js,sha256=OQAJHZHOzFZiEqQIavKOWNXs7pT3VySfCmveRCuR190,17756
|
|
64
73
|
deepresearch_flow/paper/web/pdfjs/web/viewer.css,sha256=tKJ5nfe_unin4oYQBOssdn79soGQ88U_xakiY8Zmqeo,96934
|
|
65
|
-
deepresearch_flow/paper/web/pdfjs/web/viewer.html,sha256=
|
|
66
|
-
deepresearch_flow/paper/web/pdfjs/web/viewer.js,sha256=
|
|
74
|
+
deepresearch_flow/paper/web/pdfjs/web/viewer.html,sha256=K0uZFeSr83_LgOmH42Vq-QvRsTmcmj0hsQnJoviEReM,30174
|
|
75
|
+
deepresearch_flow/paper/web/pdfjs/web/viewer.js,sha256=_PCA_K-YPNFMxXz46XJZDXHcGoPdvNHbpK0DJBeqSkc,437826
|
|
67
76
|
deepresearch_flow/paper/web/pdfjs/web/viewer.js.map,sha256=BiPExGyX0J7lMmGi-7z8M1GYc5yizJ3sxCepvGv4fLo,1108728
|
|
68
77
|
deepresearch_flow/paper/web/pdfjs/web/cmaps/78-EUC-H.bcmap,sha256=2SomEzbcGLjAOkbrTUYjgtM_Qzj6GV0wMlayAxQ0yHQ,2404
|
|
69
78
|
deepresearch_flow/paper/web/pdfjs/web/cmaps/78-EUC-V.bcmap,sha256=YWcL68TkgntnIwwFT9DYINbjDDWE0C44aATmK77cAyo,173
|
|
@@ -421,13 +430,13 @@ deepresearch_flow/paper/web/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf,sha
|
|
|
421
430
|
deepresearch_flow/paper/web/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf,sha256=oiQHWsF0la0KOvO8CkGawHBKiz_RCVRWIB-5sJX8KB0,135124
|
|
422
431
|
deepresearch_flow/paper/web/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf,sha256=gytEBtvvI2KIANOqrSEEhTSshNfjrZVb6DuBcu2O9RI,162036
|
|
423
432
|
deepresearch_flow/paper/web/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf,sha256=-Kzh-JKyvZ3BeSun8Jf6dYj4T-1IMhSA4E3lOQgoIh8,139512
|
|
424
|
-
deepresearch_flow/paper/web/static/css/main.css,sha256=
|
|
425
|
-
deepresearch_flow/paper/web/static/js/detail.js,sha256=
|
|
433
|
+
deepresearch_flow/paper/web/static/css/main.css,sha256=cNn8v9zENLGCtoD9T5Zy9PMYsEBdlVoO0EWixTw04ec,15479
|
|
434
|
+
deepresearch_flow/paper/web/static/js/detail.js,sha256=8U8b9MF_1UvE37IocNPEOHEdulrqen56-Nc5Sqw592U,26430
|
|
426
435
|
deepresearch_flow/paper/web/static/js/index.js,sha256=bbQz8QAewmu3TT8ImAzUqNtTWQCMKwVOQfU0Lkw6Lv0,10460
|
|
427
|
-
deepresearch_flow/paper/web/static/js/outline.js,sha256=
|
|
436
|
+
deepresearch_flow/paper/web/static/js/outline.js,sha256=OFxw-hhe7lOr9ILslkATL2VoJJCKVWZvmdwPKcvOhE4,2306
|
|
428
437
|
deepresearch_flow/paper/web/static/js/stats.js,sha256=USGIAx9cPQTMeyFwYu_bTYPJM7OoiqimhCYuAjoP0-s,1420
|
|
429
438
|
deepresearch_flow/paper/web/templates/base.html,sha256=4gWJLvjOuDSnBYRpJqxhGKmKC6UuOl19q_Q_cOjhL-g,1806
|
|
430
|
-
deepresearch_flow/paper/web/templates/detail.html,sha256=
|
|
439
|
+
deepresearch_flow/paper/web/templates/detail.html,sha256=NvYDKajgVYrSF9ayVCpMglKwZclD-R0ArkqelAU60A4,16632
|
|
431
440
|
deepresearch_flow/paper/web/templates/index.html,sha256=qNWwyQWa3QzmHdJbohSe5PJOZS3-KxWjk0RxoQSZiys,6117
|
|
432
441
|
deepresearch_flow/paper/web/templates/stats.html,sha256=bcQBawoZ9KoRkM0NNo9WJBVeN_8O1WU2xNiye-Fugyo,671
|
|
433
442
|
deepresearch_flow/recognize/__init__.py,sha256=yMAqbdCzpdRSiwFhq9j7yx9ZWxqz_Zq3vfYlTLFCWek,33
|
|
@@ -436,19 +445,19 @@ deepresearch_flow/recognize/katex_check.js,sha256=jKFLk0Y7y_XR0fBJe2xdfQhAMMuYRX
|
|
|
436
445
|
deepresearch_flow/recognize/markdown.py,sha256=y-PMJbGqrfWCNBVGanXK1M4OuMP9e1eqh7HDYye5a7Q,8757
|
|
437
446
|
deepresearch_flow/recognize/math.py,sha256=qgI4WRsoWgLaue9OxIq1pcO18wUOlpCNBLKQgicN2hs,22623
|
|
438
447
|
deepresearch_flow/recognize/mermaid.py,sha256=O8uQoEC9mG4mSdTpr-OnmP_vrThaFdUeqt6U00m6O-0,22545
|
|
439
|
-
deepresearch_flow/recognize/organize.py,sha256
|
|
448
|
+
deepresearch_flow/recognize/organize.py,sha256=nxeWWm7PIp12WvDllYljYNnHqFSlcV7-kInMoHjdblc,5190
|
|
440
449
|
deepresearch_flow/translator/__init__.py,sha256=iaAkufvEELVKNbcs08Nh7bkTO4JlkT3rT_JIBP9jGfc,26
|
|
441
450
|
deepresearch_flow/translator/cli.py,sha256=BceOZhQuN9s5kqhpvLJuwpbB5J0MY1ucWUKw0jXWUPc,16872
|
|
442
451
|
deepresearch_flow/translator/config.py,sha256=0JI4VBLIzT039YscfEb5hqtCWCu8P2bJIgnAfIAhFmU,502
|
|
443
452
|
deepresearch_flow/translator/engine.py,sha256=dLKKUjmptkLXhIs5ZsIUonmKI9bS8Se4tOnp7fADIYU,36800
|
|
444
|
-
deepresearch_flow/translator/fixers.py,sha256=
|
|
453
|
+
deepresearch_flow/translator/fixers.py,sha256=Oe9vLhNxkmqyF6SkfTAGLDiSl7N_cCUArhO6pGpIa3Q,15667
|
|
445
454
|
deepresearch_flow/translator/placeholder.py,sha256=mEgqA-dPdOsIhno0h_hzfpXpY2asb4A7UQEYV3tcnP8,2097
|
|
446
455
|
deepresearch_flow/translator/prompts.py,sha256=kl_9O2YvmtXC1w6WLnsLuVZKz4mcOtUF887SiTaOvc0,4754
|
|
447
456
|
deepresearch_flow/translator/protector.py,sha256=sXwNJ1Y8tyPm7dgm8-7S8HkcPe23TGsBdwRxH6mKL70,11291
|
|
448
457
|
deepresearch_flow/translator/segment.py,sha256=rBFMCLTrvm2GrPc_hNFymi-8Ih2DAtUQlZHCRE9nLaM,5146
|
|
449
|
-
deepresearch_flow-0.
|
|
450
|
-
deepresearch_flow-0.
|
|
451
|
-
deepresearch_flow-0.
|
|
452
|
-
deepresearch_flow-0.
|
|
453
|
-
deepresearch_flow-0.
|
|
454
|
-
deepresearch_flow-0.
|
|
458
|
+
deepresearch_flow-0.5.1.dist-info/licenses/LICENSE,sha256=hT8F2Py1pe6flxq3Ufdm2UKFk0B8CBm0aAQfsLXfvjw,1063
|
|
459
|
+
deepresearch_flow-0.5.1.dist-info/METADATA,sha256=glpV-vtIAMg05jdBladhGqNxE2p4Dq0Ynd4O3YsmSds,14486
|
|
460
|
+
deepresearch_flow-0.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
461
|
+
deepresearch_flow-0.5.1.dist-info/entry_points.txt,sha256=1uIKscs0YRMg_mFsg9NjsaTt4CvQqQ_-zGERUKhhL_Y,65
|
|
462
|
+
deepresearch_flow-0.5.1.dist-info/top_level.txt,sha256=qBl4RvPJNJUbL8CFfMNWxY0HpQLx5RlF_ko-z_aKpm0,18
|
|
463
|
+
deepresearch_flow-0.5.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|