deepresearch-flow 0.5.1__py3-none-any.whl → 0.6.0__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/cli.py +63 -0
- deepresearch_flow/paper/config.py +87 -12
- deepresearch_flow/paper/db.py +1041 -34
- deepresearch_flow/paper/db_ops.py +124 -19
- deepresearch_flow/paper/extract.py +1546 -152
- deepresearch_flow/paper/prompt_templates/deep_read_phi_system.j2 +2 -0
- deepresearch_flow/paper/prompt_templates/deep_read_phi_user.j2 +5 -0
- deepresearch_flow/paper/prompt_templates/deep_read_system.j2 +2 -0
- deepresearch_flow/paper/prompt_templates/deep_read_user.j2 +272 -40
- deepresearch_flow/paper/prompt_templates/eight_questions_phi_system.j2 +1 -0
- deepresearch_flow/paper/prompt_templates/eight_questions_phi_user.j2 +2 -0
- deepresearch_flow/paper/prompt_templates/eight_questions_system.j2 +2 -0
- deepresearch_flow/paper/prompt_templates/eight_questions_user.j2 +4 -0
- deepresearch_flow/paper/prompt_templates/simple_phi_system.j2 +2 -0
- deepresearch_flow/paper/prompt_templates/simple_system.j2 +2 -0
- deepresearch_flow/paper/prompt_templates/simple_user.j2 +2 -0
- deepresearch_flow/paper/providers/azure_openai.py +45 -3
- deepresearch_flow/paper/providers/openai_compatible.py +45 -3
- deepresearch_flow/paper/schemas/deep_read_phi_schema.json +1 -0
- deepresearch_flow/paper/schemas/deep_read_schema.json +1 -0
- deepresearch_flow/paper/schemas/default_paper_schema.json +6 -0
- deepresearch_flow/paper/schemas/eight_questions_schema.json +1 -0
- deepresearch_flow/paper/snapshot/__init__.py +4 -0
- deepresearch_flow/paper/snapshot/api.py +941 -0
- deepresearch_flow/paper/snapshot/builder.py +965 -0
- deepresearch_flow/paper/snapshot/identity.py +239 -0
- deepresearch_flow/paper/snapshot/schema.py +245 -0
- deepresearch_flow/paper/snapshot/tests/__init__.py +2 -0
- deepresearch_flow/paper/snapshot/tests/test_identity.py +123 -0
- deepresearch_flow/paper/snapshot/text.py +154 -0
- deepresearch_flow/paper/template_registry.py +1 -0
- deepresearch_flow/paper/templates/deep_read.md.j2 +4 -0
- deepresearch_flow/paper/templates/deep_read_phi.md.j2 +4 -0
- deepresearch_flow/paper/templates/default_paper.md.j2 +4 -0
- deepresearch_flow/paper/templates/eight_questions.md.j2 +4 -0
- deepresearch_flow/paper/web/app.py +10 -3
- deepresearch_flow/recognize/cli.py +380 -103
- deepresearch_flow/recognize/markdown.py +31 -7
- deepresearch_flow/recognize/math.py +47 -12
- deepresearch_flow/recognize/mermaid.py +320 -10
- deepresearch_flow/recognize/organize.py +29 -7
- deepresearch_flow/translator/cli.py +71 -20
- deepresearch_flow/translator/engine.py +220 -81
- deepresearch_flow/translator/prompts.py +19 -2
- deepresearch_flow/translator/protector.py +15 -3
- {deepresearch_flow-0.5.1.dist-info → deepresearch_flow-0.6.0.dist-info}/METADATA +407 -33
- {deepresearch_flow-0.5.1.dist-info → deepresearch_flow-0.6.0.dist-info}/RECORD +51 -43
- {deepresearch_flow-0.5.1.dist-info → deepresearch_flow-0.6.0.dist-info}/WHEEL +1 -1
- {deepresearch_flow-0.5.1.dist-info → deepresearch_flow-0.6.0.dist-info}/entry_points.txt +0 -0
- {deepresearch_flow-0.5.1.dist-info → deepresearch_flow-0.6.0.dist-info}/licenses/LICENSE +0 -0
- {deepresearch_flow-0.5.1.dist-info → deepresearch_flow-0.6.0.dist-info}/top_level.txt +0 -0
|
@@ -2,54 +2,62 @@ deepresearch_flow/__init__.py,sha256=rjP9ES4zJCfEN_MCDYAYPL1mNJZGjojdmbRwnZ9FlEk
|
|
|
2
2
|
deepresearch_flow/__main__.py,sha256=Ceo0rMTOhHhwFPD-HyDDagenNsmWEzPmsdYLI7kwKVA,115
|
|
3
3
|
deepresearch_flow/cli.py,sha256=t4oowCNWldL0DrVJ4d0UlRkuGU2qHej_G0mAc_quteQ,455
|
|
4
4
|
deepresearch_flow/paper/__init__.py,sha256=sunaOkcgAJBrfmcaJTumcWbPGVUSGWvOv2a2Yidzy0A,43
|
|
5
|
-
deepresearch_flow/paper/cli.py,sha256=
|
|
6
|
-
deepresearch_flow/paper/config.py,sha256=
|
|
7
|
-
deepresearch_flow/paper/db.py,sha256
|
|
8
|
-
deepresearch_flow/paper/db_ops.py,sha256=
|
|
9
|
-
deepresearch_flow/paper/extract.py,sha256=
|
|
5
|
+
deepresearch_flow/paper/cli.py,sha256=68d-yccScU0yL6d7eqZVdudPO6i_in8F4v-hKDWILMo,13647
|
|
6
|
+
deepresearch_flow/paper/config.py,sha256=V7z4ApPXCV1acSl2FU3nZGq6nt8uisMhm0GtOq5zzmg,12021
|
|
7
|
+
deepresearch_flow/paper/db.py,sha256=UL2q4CFI33a3DZsZ42VOS_3FtTORnQuAogUfzPVjcO0,86579
|
|
8
|
+
deepresearch_flow/paper/db_ops.py,sha256=cb64jn2ax39i3tCS-0DYmlsJdGX3uBS2u5ncUIbUBic,73980
|
|
9
|
+
deepresearch_flow/paper/extract.py,sha256=78ASAyNLfCl1AsAk2o_v1vskZCNZuayaCHgr0S4V2Vs,87632
|
|
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=r0-uVIeeVcPKMD9TpIZ5kAi4CvMrJQoJTHBSEamA8Ko,7427
|
|
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=
|
|
18
|
-
deepresearch_flow/paper/prompt_templates/deep_read_phi_user.j2,sha256=
|
|
19
|
-
deepresearch_flow/paper/prompt_templates/deep_read_system.j2,sha256=
|
|
20
|
-
deepresearch_flow/paper/prompt_templates/deep_read_user.j2,sha256=
|
|
21
|
-
deepresearch_flow/paper/prompt_templates/eight_questions_phi_system.j2,sha256=
|
|
22
|
-
deepresearch_flow/paper/prompt_templates/eight_questions_phi_user.j2,sha256=
|
|
23
|
-
deepresearch_flow/paper/prompt_templates/eight_questions_system.j2,sha256=
|
|
24
|
-
deepresearch_flow/paper/prompt_templates/eight_questions_user.j2,sha256=
|
|
25
|
-
deepresearch_flow/paper/prompt_templates/simple_phi_system.j2,sha256=
|
|
17
|
+
deepresearch_flow/paper/prompt_templates/deep_read_phi_system.j2,sha256=_KxtVHV54VElOPm9l6P9rJmN7Sd6-JL6SDiQDd2QQCM,528
|
|
18
|
+
deepresearch_flow/paper/prompt_templates/deep_read_phi_user.j2,sha256=kI8Rsp03Fy5XBkqh8qYtsTGa6elnUNKc_Epfx42puNk,17954
|
|
19
|
+
deepresearch_flow/paper/prompt_templates/deep_read_system.j2,sha256=_KxtVHV54VElOPm9l6P9rJmN7Sd6-JL6SDiQDd2QQCM,528
|
|
20
|
+
deepresearch_flow/paper/prompt_templates/deep_read_user.j2,sha256=q9PkrO32tepg7km8mqACGWFW2mGTaYHUlVsLfEVB87g,12785
|
|
21
|
+
deepresearch_flow/paper/prompt_templates/eight_questions_phi_system.j2,sha256=eZqgnNACpCNGxqZDo_JDq9m0VNc7p0qHe3fzmYzOv3s,466
|
|
22
|
+
deepresearch_flow/paper/prompt_templates/eight_questions_phi_user.j2,sha256=sujB0jNicF9tswFzIoo97KNteY9QLBuE7oeVbnak8PM,8110
|
|
23
|
+
deepresearch_flow/paper/prompt_templates/eight_questions_system.j2,sha256=_KxtVHV54VElOPm9l6P9rJmN7Sd6-JL6SDiQDd2QQCM,528
|
|
24
|
+
deepresearch_flow/paper/prompt_templates/eight_questions_user.j2,sha256=eXSN_Cyla29m2wp6loQH4g6RU6aDxqskK9ICDSyyDho,1634
|
|
25
|
+
deepresearch_flow/paper/prompt_templates/simple_phi_system.j2,sha256=_KxtVHV54VElOPm9l6P9rJmN7Sd6-JL6SDiQDd2QQCM,528
|
|
26
26
|
deepresearch_flow/paper/prompt_templates/simple_phi_user.j2,sha256=LL_h0O1wcGLZQtuhTfUUhURjAoJwH8Vrmh3XzeB9bRM,2089
|
|
27
|
-
deepresearch_flow/paper/prompt_templates/simple_system.j2,sha256=
|
|
28
|
-
deepresearch_flow/paper/prompt_templates/simple_user.j2,sha256=
|
|
27
|
+
deepresearch_flow/paper/prompt_templates/simple_system.j2,sha256=_KxtVHV54VElOPm9l6P9rJmN7Sd6-JL6SDiQDd2QQCM,528
|
|
28
|
+
deepresearch_flow/paper/prompt_templates/simple_user.j2,sha256=f6XvUKwyi1BP6lW2XYDbEeIW4YsA2UmdrA0YdIZD750,840
|
|
29
29
|
deepresearch_flow/paper/prompt_templates/three_pass_system.j2,sha256=WR7fp9nQYmXU5COwAfzly5noXEQEoFrh2Kx4YedvMww,364
|
|
30
30
|
deepresearch_flow/paper/prompt_templates/three_pass_user.j2,sha256=R9OwcS_hmPlSRIv0-63YXqQBux_Uuv6iF7W4xy77nk8,1757
|
|
31
31
|
deepresearch_flow/paper/providers/__init__.py,sha256=OiX-WYHweZ_FCeGS_siSEJndLXfWj2h8I0Am16P7KYQ,32
|
|
32
|
-
deepresearch_flow/paper/providers/azure_openai.py,sha256=
|
|
32
|
+
deepresearch_flow/paper/providers/azure_openai.py,sha256=bejdKNAr3y5zQt33EbVao9ao3c842T-fWICVDlAy9Go,3530
|
|
33
33
|
deepresearch_flow/paper/providers/base.py,sha256=WrfOVcpXTgxAGLvRogCCc3zXd5O5v4TYeTsSWOe9muM,537
|
|
34
34
|
deepresearch_flow/paper/providers/claude.py,sha256=xFk2T2hSVb--sYBQbrvwykRSbEbEfYcoV9soRPpoTHU,2073
|
|
35
35
|
deepresearch_flow/paper/providers/dashscope.py,sha256=UDg7bQY3EIj3wG2hbl36Bhr_uNjJcn_wPZZ6zSPHDY4,1732
|
|
36
36
|
deepresearch_flow/paper/providers/gemini.py,sha256=x_JegccP4JK0pBj7slz7gVwX-6-ep8v_kl8NglqOUGg,3256
|
|
37
37
|
deepresearch_flow/paper/providers/ollama.py,sha256=j3vZgP6gyxu9n5VF-4v8p3nOCbetzmnlaBjZmvuYKxE,1439
|
|
38
|
-
deepresearch_flow/paper/providers/openai_compatible.py,sha256=
|
|
38
|
+
deepresearch_flow/paper/providers/openai_compatible.py,sha256=AfNshL08WicAEdC7sO31hQMKqbpopunk0gu3PxOZhG4,3401
|
|
39
39
|
deepresearch_flow/paper/schemas/__init__.py,sha256=NzRW1ugk01AZMkoDOrK-RF-fypYxYKOnyyKDzlHUQ40,29
|
|
40
|
-
deepresearch_flow/paper/schemas/deep_read_phi_schema.json,sha256=
|
|
41
|
-
deepresearch_flow/paper/schemas/deep_read_schema.json,sha256=
|
|
42
|
-
deepresearch_flow/paper/schemas/default_paper_schema.json,sha256=
|
|
43
|
-
deepresearch_flow/paper/schemas/eight_questions_schema.json,sha256=
|
|
40
|
+
deepresearch_flow/paper/schemas/deep_read_phi_schema.json,sha256=i6JA-kJg0BaTeOj_w0AMkS8Uj0gdB5_Y8EPWZb5hg-M,897
|
|
41
|
+
deepresearch_flow/paper/schemas/deep_read_schema.json,sha256=BqQE8T6y_gXt_on75x7MuYJOAcoeRQLw96JfRYvKNYk,1337
|
|
42
|
+
deepresearch_flow/paper/schemas/default_paper_schema.json,sha256=6h_2ayHolJj8JMnFQ6kYNC9diQr-LWuW-ineCAB5OIM,935
|
|
43
|
+
deepresearch_flow/paper/schemas/eight_questions_schema.json,sha256=VFKKpdZkgPdQkYIW5jyrZQ7c2TlQZwB4svVWfoiwxdg,1005
|
|
44
44
|
deepresearch_flow/paper/schemas/three_pass_schema.json,sha256=8aNr4EdRiilxszIRBCC4hRNXrfIOcdnVW4Qhe6Fnh0o,689
|
|
45
|
+
deepresearch_flow/paper/snapshot/__init__.py,sha256=1VLO36xxDB3J5Yoo-HH9vyI-4ev2HcivXN0sNLg8O5k,102
|
|
46
|
+
deepresearch_flow/paper/snapshot/api.py,sha256=WgkOgS7n_2Fx-Bl4KnLrh5nhRJAsWJaPjXu7vX5ubxY,36960
|
|
47
|
+
deepresearch_flow/paper/snapshot/builder.py,sha256=HbRcfNteMoP4RnQ4y2onZCm9XfnIvzXLn_EwsLZsDzY,38692
|
|
48
|
+
deepresearch_flow/paper/snapshot/identity.py,sha256=k9x1EZPFBU1qgxzkTGvwVtDjLgcosmM_udPuvRLl0uI,7748
|
|
49
|
+
deepresearch_flow/paper/snapshot/schema.py,sha256=DcVmAklLYyEeDoVV9jYw7hoMHnHd9Eziivl-LP2busY,8991
|
|
50
|
+
deepresearch_flow/paper/snapshot/text.py,sha256=0RnxLowa6AdirdLsUYym6BhWbjwiP2Qj2oZeA-pjmdE,4368
|
|
51
|
+
deepresearch_flow/paper/snapshot/tests/__init__.py,sha256=G0IowrxHjGUIaqxcw6SvlcLFAtE5ZsleG6ECgd-sIdk,52
|
|
52
|
+
deepresearch_flow/paper/snapshot/tests/test_identity.py,sha256=KDFixAUU9l68KOum7gf1IrD0Oy18dBCSXG7RbJTqflA,4520
|
|
45
53
|
deepresearch_flow/paper/templates/__init__.py,sha256=p8W6kINvrf-T2X6Ow4GMr28syVOorFuMn0pbmieVzAw,35
|
|
46
|
-
deepresearch_flow/paper/templates/deep_read.md.j2,sha256=
|
|
47
|
-
deepresearch_flow/paper/templates/deep_read_phi.md.j2,sha256=
|
|
48
|
-
deepresearch_flow/paper/templates/default_paper.md.j2,sha256=
|
|
49
|
-
deepresearch_flow/paper/templates/eight_questions.md.j2,sha256=
|
|
54
|
+
deepresearch_flow/paper/templates/deep_read.md.j2,sha256=vwVSPOzMBFIS72ez5XFBaKrDZGz0z32L3VGP6mNk434,4780
|
|
55
|
+
deepresearch_flow/paper/templates/deep_read_phi.md.j2,sha256=6Yz2Kxk0czGDPkZiWX3b87glLYHwDU1afr6CkjS-dh8,1666
|
|
56
|
+
deepresearch_flow/paper/templates/default_paper.md.j2,sha256=dMObS30OpZZ2Np0WHUgA1BBuvsRg6JsOEkeT4NO_NI4,1030
|
|
57
|
+
deepresearch_flow/paper/templates/eight_questions.md.j2,sha256=G0bJCMY4keKraofPLJ7PtS74lMYIoYYX0BMoGwDFXb0,3181
|
|
50
58
|
deepresearch_flow/paper/templates/three_pass.md.j2,sha256=ZRj-NkpZePnqp0gSE8OT1dN5Lr5RW4vdOYdeVejYJW0,1576
|
|
51
59
|
deepresearch_flow/paper/web/__init__.py,sha256=eQBtBjvOYsNEdivHTI0aO286SCG2c86xI02tf-0jz5I,39
|
|
52
|
-
deepresearch_flow/paper/web/app.py,sha256=
|
|
60
|
+
deepresearch_flow/paper/web/app.py,sha256=M1CiMkAc6Mz6Z3L-awytVY-LM-kqLbKHF7wsxNw9HYc,7502
|
|
53
61
|
deepresearch_flow/paper/web/constants.py,sha256=0QZjySqVt2c6PZFoykVoeVgZAXsUahfL4ZVQlfL_qAY,1165
|
|
54
62
|
deepresearch_flow/paper/web/filters.py,sha256=OVMB4GfigP9GPD5dXytHyeLYtnVXEK-QjYfA_k7QbaA,8315
|
|
55
63
|
deepresearch_flow/paper/web/markdown.py,sha256=pwVGy-7kQHsEFo15SmNcQw15-v7lJn_N3VLd827L7uk,26852
|
|
@@ -440,24 +448,24 @@ deepresearch_flow/paper/web/templates/detail.html,sha256=NvYDKajgVYrSF9ayVCpMglK
|
|
|
440
448
|
deepresearch_flow/paper/web/templates/index.html,sha256=qNWwyQWa3QzmHdJbohSe5PJOZS3-KxWjk0RxoQSZiys,6117
|
|
441
449
|
deepresearch_flow/paper/web/templates/stats.html,sha256=bcQBawoZ9KoRkM0NNo9WJBVeN_8O1WU2xNiye-Fugyo,671
|
|
442
450
|
deepresearch_flow/recognize/__init__.py,sha256=yMAqbdCzpdRSiwFhq9j7yx9ZWxqz_Zq3vfYlTLFCWek,33
|
|
443
|
-
deepresearch_flow/recognize/cli.py,sha256=
|
|
451
|
+
deepresearch_flow/recognize/cli.py,sha256=0YMyNfEdQB6Vz7bhaOI3o3tc5ZnoOkHwGQTNKyPjWzg,67312
|
|
444
452
|
deepresearch_flow/recognize/katex_check.js,sha256=jKFLk0Y7y_XR0fBJe2xdfQhAMMuYRXo-pSpWqcEyAH0,735
|
|
445
|
-
deepresearch_flow/recognize/markdown.py,sha256=
|
|
446
|
-
deepresearch_flow/recognize/math.py,sha256=
|
|
447
|
-
deepresearch_flow/recognize/mermaid.py,sha256=
|
|
448
|
-
deepresearch_flow/recognize/organize.py,sha256=
|
|
453
|
+
deepresearch_flow/recognize/markdown.py,sha256=8B4cR0n1gC2rXceita25Phi0Lo4uyDweYuXbRB1laH4,9472
|
|
454
|
+
deepresearch_flow/recognize/math.py,sha256=jvTkujqMob4LPuiltoKgss36GaIhCa6hQmnpraqOTiI,24073
|
|
455
|
+
deepresearch_flow/recognize/mermaid.py,sha256=rc5eTwn4i1dKZRua6igFZW08lhqXqqUcijACtCqNS1g,33819
|
|
456
|
+
deepresearch_flow/recognize/organize.py,sha256=KyhcwJ6ckWaZTCyE4M1e5k6ABRHHGWpAF9Re4LB-Sks,5883
|
|
449
457
|
deepresearch_flow/translator/__init__.py,sha256=iaAkufvEELVKNbcs08Nh7bkTO4JlkT3rT_JIBP9jGfc,26
|
|
450
|
-
deepresearch_flow/translator/cli.py,sha256=
|
|
458
|
+
deepresearch_flow/translator/cli.py,sha256=gFcLTltbGqEU8LJl8epPRLEdNrmI03IWV6pbzuW9Z_o,18942
|
|
451
459
|
deepresearch_flow/translator/config.py,sha256=0JI4VBLIzT039YscfEb5hqtCWCu8P2bJIgnAfIAhFmU,502
|
|
452
|
-
deepresearch_flow/translator/engine.py,sha256=
|
|
460
|
+
deepresearch_flow/translator/engine.py,sha256=kdr7dkkwHTVkMhN7IpcQ1qGhIIl2mYsRfVeY3FOrbrk,42084
|
|
453
461
|
deepresearch_flow/translator/fixers.py,sha256=Oe9vLhNxkmqyF6SkfTAGLDiSl7N_cCUArhO6pGpIa3Q,15667
|
|
454
462
|
deepresearch_flow/translator/placeholder.py,sha256=mEgqA-dPdOsIhno0h_hzfpXpY2asb4A7UQEYV3tcnP8,2097
|
|
455
|
-
deepresearch_flow/translator/prompts.py,sha256=
|
|
456
|
-
deepresearch_flow/translator/protector.py,sha256=
|
|
463
|
+
deepresearch_flow/translator/prompts.py,sha256=EvfBvBIpQXARDj4m87GAyFXJGL8EJeahj_rOmp9mv68,5556
|
|
464
|
+
deepresearch_flow/translator/protector.py,sha256=yUMuS2FgVofK_MRXrcauLRiwNvdCCjNAnh6CcNd686o,11777
|
|
457
465
|
deepresearch_flow/translator/segment.py,sha256=rBFMCLTrvm2GrPc_hNFymi-8Ih2DAtUQlZHCRE9nLaM,5146
|
|
458
|
-
deepresearch_flow-0.
|
|
459
|
-
deepresearch_flow-0.
|
|
460
|
-
deepresearch_flow-0.
|
|
461
|
-
deepresearch_flow-0.
|
|
462
|
-
deepresearch_flow-0.
|
|
463
|
-
deepresearch_flow-0.
|
|
466
|
+
deepresearch_flow-0.6.0.dist-info/licenses/LICENSE,sha256=hT8F2Py1pe6flxq3Ufdm2UKFk0B8CBm0aAQfsLXfvjw,1063
|
|
467
|
+
deepresearch_flow-0.6.0.dist-info/METADATA,sha256=fyynvn8LYDTZlsIaKDr3SxQbR8nqQSOk3s85ZIh1t6E,25838
|
|
468
|
+
deepresearch_flow-0.6.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
469
|
+
deepresearch_flow-0.6.0.dist-info/entry_points.txt,sha256=1uIKscs0YRMg_mFsg9NjsaTt4CvQqQ_-zGERUKhhL_Y,65
|
|
470
|
+
deepresearch_flow-0.6.0.dist-info/top_level.txt,sha256=qBl4RvPJNJUbL8CFfMNWxY0HpQLx5RlF_ko-z_aKpm0,18
|
|
471
|
+
deepresearch_flow-0.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|