pdd-cli 0.0.37__py3-none-any.whl → 0.0.39__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.

Potentially problematic release.


This version of pdd-cli might be problematic. Click here for more details.

Files changed (49) hide show
  1. pdd/__init__.py +1 -1
  2. pdd/auto_deps_main.py +4 -1
  3. pdd/auto_include.py +8 -1
  4. pdd/auto_update.py +2 -2
  5. pdd/bug_main.py +5 -2
  6. pdd/bug_to_unit_test.py +9 -2
  7. pdd/change.py +32 -22
  8. pdd/change_main.py +14 -10
  9. pdd/cli.py +11 -1
  10. pdd/cmd_test_main.py +3 -0
  11. pdd/code_generator.py +7 -1
  12. pdd/code_generator_main.py +9 -3
  13. pdd/conflicts_in_prompts.py +7 -2
  14. pdd/conflicts_main.py +6 -2
  15. pdd/context_generator.py +20 -3
  16. pdd/context_generator_main.py +2 -0
  17. pdd/continue_generation.py +8 -2
  18. pdd/crash_main.py +51 -31
  19. pdd/detect_change.py +8 -4
  20. pdd/detect_change_main.py +3 -0
  21. pdd/fix_code_loop.py +7 -2
  22. pdd/fix_code_module_errors.py +5 -2
  23. pdd/fix_error_loop.py +6 -2
  24. pdd/fix_errors_from_unit_tests.py +11 -6
  25. pdd/fix_main.py +4 -0
  26. pdd/fix_verification_errors.py +8 -3
  27. pdd/fix_verification_errors_loop.py +9 -3
  28. pdd/fix_verification_main.py +37 -31
  29. pdd/generate_test.py +10 -4
  30. pdd/git_update.py +5 -3
  31. pdd/increase_tests.py +5 -2
  32. pdd/insert_includes.py +8 -2
  33. pdd/preprocess_main.py +10 -3
  34. pdd/process_csv_change.py +8 -2
  35. pdd/split.py +15 -7
  36. pdd/split_main.py +2 -0
  37. pdd/summarize_directory.py +4 -0
  38. pdd/trace.py +9 -5
  39. pdd/trace_main.py +5 -4
  40. pdd/unfinished_prompt.py +6 -1
  41. pdd/update_main.py +6 -3
  42. pdd/update_prompt.py +8 -4
  43. pdd/xml_tagger.py +10 -5
  44. {pdd_cli-0.0.37.dist-info → pdd_cli-0.0.39.dist-info}/METADATA +4 -4
  45. {pdd_cli-0.0.37.dist-info → pdd_cli-0.0.39.dist-info}/RECORD +49 -49
  46. {pdd_cli-0.0.37.dist-info → pdd_cli-0.0.39.dist-info}/WHEEL +0 -0
  47. {pdd_cli-0.0.37.dist-info → pdd_cli-0.0.39.dist-info}/entry_points.txt +0 -0
  48. {pdd_cli-0.0.37.dist-info → pdd_cli-0.0.39.dist-info}/licenses/LICENSE +0 -0
  49. {pdd_cli-0.0.37.dist-info → pdd_cli-0.0.39.dist-info}/top_level.txt +0 -0
pdd/xml_tagger.py CHANGED
@@ -5,7 +5,7 @@ from pydantic import BaseModel, Field
5
5
  from .load_prompt_template import load_prompt_template
6
6
  from .llm_invoke import llm_invoke
7
7
  from . import EXTRACTION_STRENGTH
8
-
8
+ from . import DEFAULT_TIME
9
9
  class XMLOutput(BaseModel):
10
10
  xml_tagged: str = Field(description="The XML-tagged version of the prompt")
11
11
 
@@ -13,7 +13,8 @@ def xml_tagger(
13
13
  raw_prompt: str,
14
14
  strength: float,
15
15
  temperature: float,
16
- verbose: bool = False
16
+ verbose: bool = False,
17
+ time: float = DEFAULT_TIME
17
18
  ) -> Tuple[str, float, str]:
18
19
  """
19
20
  Enhance a given LLM prompt by adding XML tags to improve its structure and readability.
@@ -23,6 +24,7 @@ def xml_tagger(
23
24
  strength (float): The strength parameter for the LLM model (0-1)
24
25
  temperature (float): The temperature parameter for the LLM model (0-1)
25
26
  verbose (bool): Whether to print detailed information
27
+ time (float): The time allocation for the LLM calls
26
28
 
27
29
  Returns:
28
30
  Tuple[str, float, str]: (xml_tagged, total_cost, model_name)
@@ -55,7 +57,8 @@ def xml_tagger(
55
57
  input_json={"raw_prompt": raw_prompt},
56
58
  strength=strength,
57
59
  temperature=temperature,
58
- verbose=verbose
60
+ verbose=verbose,
61
+ time=time
59
62
  )
60
63
 
61
64
  xml_generated_analysis = conversion_response.get('result', '')
@@ -76,7 +79,8 @@ def xml_tagger(
76
79
  strength=EXTRACTION_STRENGTH, # Fixed strength for extraction
77
80
  temperature=temperature,
78
81
  verbose=verbose,
79
- output_pydantic=XMLOutput
82
+ output_pydantic=XMLOutput,
83
+ time=time
80
84
  )
81
85
 
82
86
  result: XMLOutput = extraction_response.get('result')
@@ -109,7 +113,8 @@ def main():
109
113
  raw_prompt=sample_prompt,
110
114
  strength=0.7,
111
115
  temperature=0.8,
112
- verbose=True
116
+ verbose=True,
117
+ time=0.5
113
118
  )
114
119
 
115
120
  rprint("[blue]XML Tagging Complete[/blue]")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pdd-cli
3
- Version: 0.0.37
3
+ Version: 0.0.39
4
4
  Summary: PDD (Prompt-Driven Development) Command Line Interface
5
5
  Author: Greg Tanaka
6
6
  Author-email: glt@alumni.caltech.edu
@@ -35,18 +35,18 @@ Requires-Dist: litellm
35
35
  Requires-Dist: rich==14.0.0
36
36
  Requires-Dist: semver==3.0.2
37
37
  Requires-Dist: setuptools
38
+ Requires-Dist: pytest
38
39
  Requires-Dist: boto3==1.35.99
39
40
  Requires-Dist: python-Levenshtein
40
41
  Provides-Extra: dev
41
42
  Requires-Dist: commitizen; extra == "dev"
42
- Requires-Dist: pytest; extra == "dev"
43
43
  Requires-Dist: pytest-cov; extra == "dev"
44
44
  Requires-Dist: pytest-mock; extra == "dev"
45
45
  Requires-Dist: pytest-asyncio; extra == "dev"
46
46
  Requires-Dist: z3-solver; extra == "dev"
47
47
  Dynamic: license-file
48
48
 
49
- .. image:: https://img.shields.io/badge/pdd--cli-v0.0.37-blue
49
+ .. image:: https://img.shields.io/badge/pdd--cli-v0.0.39-blue
50
50
  :alt: PDD-CLI Version
51
51
 
52
52
  .. image:: https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord&logoColor=white&link=https://discord.gg/Yp4RTh8bG7
@@ -134,7 +134,7 @@ After installation, verify:
134
134
 
135
135
  pdd --version
136
136
 
137
- You'll see the current PDD version (e.g., 0.0.37).
137
+ You'll see the current PDD version (e.g., 0.0.39).
138
138
 
139
139
  Advanced Installation Tips
140
140
  --------------------------
@@ -1,45 +1,45 @@
1
- pdd/__init__.py,sha256=SF226kyTtJXKuftw9NX2JtjQuRIakMH0qQ5bw0S3-WU,632
2
- pdd/auto_deps_main.py,sha256=NVLqL5FHxe2eorViXTuh8z2zH9Sb-b6MNN9aZ1hqevY,3552
3
- pdd/auto_include.py,sha256=aCa2QXDlOdKbh4vS3uDjWptkHB_Qv3QBNCbZe6mGWoo,6074
4
- pdd/auto_update.py,sha256=oxessVoa9IHPhFF9TP-A6y3r_OZobeu047BRjNWwi3c,5937
5
- pdd/bug_main.py,sha256=cSGBnHmFIA8WrkGiohJFVRuM2086v-wlPvTJqTv00WQ,4631
6
- pdd/bug_to_unit_test.py,sha256=oejqoKomLseKknYDFlQKQ04TNT3soqOjMPghxty8Guo,6311
7
- pdd/change.py,sha256=EKmv7WvXNX24rjLCnrcaoo4xOVkNhCa9HLRbpMAxQSw,5036
8
- pdd/change_main.py,sha256=Tk0aHY8Z2d-d0m7lLfc_HqgOqs4x_dJD1IrVZSxuxIM,25580
9
- pdd/cli.py,sha256=xXj88OFD74T6Cb8ySHXwwVnFNl-oD0YNi02geyCTjf4,39072
10
- pdd/cmd_test_main.py,sha256=aSCxRnSurg15AvPcJDAPp9xy8p_qqnjU1oV14Hi2R54,5301
11
- pdd/code_generator.py,sha256=DqQNN6jCNjSJvHi0IFyqkSfak6LeDG-yQHPYnvd4AJQ,4424
12
- pdd/code_generator_main.py,sha256=oCI35RqQ7gBov8mncVg1mhdDNX-0jTsoIeSzrz7WpAk,25109
1
+ pdd/__init__.py,sha256=_OCYtG2pcjLP95d4ahQTKkbHYYvI3aNkxYds-La2vwM,632
2
+ pdd/auto_deps_main.py,sha256=XqjH0LB_5l6n4Oidn343uKwovwjw_d6ot13t4YLlSfU,3696
3
+ pdd/auto_include.py,sha256=smvA1PrK_NpMJ7nwF7ghGclkij5RBoRvr6IUxHX3-bo,6316
4
+ pdd/auto_update.py,sha256=sZp41L_-EfoTzGM0olB30rh6QJBP_U-goCwCDj1HKlI,5959
5
+ pdd/bug_main.py,sha256=--LsMu5pkPbuj2aacTyOe9e8hwNLl8DGmrvXo9Ao5Ws,4770
6
+ pdd/bug_to_unit_test.py,sha256=38ov-xy5dxgClx4WpuzF7kF9yyljkDwcBUiMbCK0YmM,6569
7
+ pdd/change.py,sha256=Gn-JpkzUB-0n-sxvZCarbi020v2iC8M1iXSBnZ5z3Zc,5681
8
+ pdd/change_main.py,sha256=NvncNg0xfkW084U3BqZ0aMDpw_kT3gtK4zmYie9cnyg,25670
9
+ pdd/cli.py,sha256=AyDFfsN6lJ9T39Mb6r-drFfU3REnxryYmDVvYiEiW-U,39454
10
+ pdd/cmd_test_main.py,sha256=pmenK3_S6rUVZsN-G3rDQ7YlF2Kas799-RL88ws9nA0,5386
11
+ pdd/code_generator.py,sha256=KwbLgMfEER-qebGJdk5i25Qj3XdnHkVttjBlEeDasHs,4651
12
+ pdd/code_generator_main.py,sha256=Uo__Rs6JDJx0NR02VmTFlW5_lpEYHcFpN1f2isLqfEc,25300
13
13
  pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
14
- pdd/conflicts_in_prompts.py,sha256=XaEm9jIMcbENTyhphD8NXs2EmRxuPu1EI8GHrsiRwq0,4687
15
- pdd/conflicts_main.py,sha256=O87s9baSa9DJMndxPIdsnYO_spoajcv9jii3XYt_-fM,3473
14
+ pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
15
+ pdd/conflicts_main.py,sha256=l8aio0Yp-EYU8dGaSdBv1qR9WKIq_uV7VUZ6IT33EDc,3633
16
16
  pdd/construct_paths.py,sha256=hu1LFDnFfUcYyGz20Lgk_4jf40GcNOJAxWVIDUEAsz8,21046
17
- pdd/context_generator.py,sha256=KQAaJRwVpsPOF4y5lhP3DpIrlxhR39C0hNyTAi1Kx2U,5618
18
- pdd/context_generator_main.py,sha256=WSS7uRkS2wi8HCixDA3_xzFuPqFRF_X2tGe6K3loUZc,2773
19
- pdd/continue_generation.py,sha256=upZw77fKqHZ5IS8Ful7eioTi9VTqeuY1V9vzIwHeOJQ,5419
20
- pdd/crash_main.py,sha256=yveWWJWxCOzRLxPk1m1rgm4tNwpAk5jYRvYyItAaU2w,7262
21
- pdd/detect_change.py,sha256=t70NAgakVc2u7XiI-lZjuR2RZ8Mrd3lJwRPu8I8s_P4,5310
22
- pdd/detect_change_main.py,sha256=1Z4ymhjJaVr2aliGyqkqeqSmQ7QMgcl23p0wdsmBas0,3653
17
+ pdd/context_generator.py,sha256=e5ey0i7wWnxAUiwiw1gkB1_t9OFjKU2lxYKpb_eVSio,6036
18
+ pdd/context_generator_main.py,sha256=MKg5aqN_8ONgotNmvhqRwvnUAcLRjit0hAVoG1E6XNs,2831
19
+ pdd/continue_generation.py,sha256=6W2LQuQHWHSByv6zMMAVlGOCC1zEF_BAXwLPugMaC7M,5637
20
+ pdd/crash_main.py,sha256=sqGRbnzqglicpYY3y6O6dtDzRzGXli-GO61KWp5G2nA,8677
21
+ pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
22
+ pdd/detect_change_main.py,sha256=DJNuY66Drf25-2EKbzz7vPMTDf0Kbb4THYbGmxsBbI4,3761
23
23
  pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
24
24
  pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
25
- pdd/fix_code_loop.py,sha256=aXUAv73mNLiv-3OiHXXeftclOBQklp06FbE-YMN_XdI,24307
26
- pdd/fix_code_module_errors.py,sha256=O7W-jqQ7REdAY7x03tjzAC2xzxUJwl89vHCdlfPGqd0,4747
27
- pdd/fix_error_loop.py,sha256=BdoI08HD30BHCjjfvpH7zamdjv6sMqi70li_oRu_-P0,24004
28
- pdd/fix_errors_from_unit_tests.py,sha256=SdL4wgo6ARgIClTTYlHuNu12t1cE4YohpGqo4Mcj1P8,9192
29
- pdd/fix_main.py,sha256=q2FDggCGXSbrMlb6OaxCmpJ5v02W8tmRU8IKmHdYYbQ,13799
30
- pdd/fix_verification_errors.py,sha256=_ToACv9z10YIoUUbwQSS41dXKsQ_lJi2FHy1qBYHMpY,16566
31
- pdd/fix_verification_errors_loop.py,sha256=CVkskhxXu7su95HXQkOCmU2yJgY6zf0vMbGDxxNmuh4,54754
32
- pdd/fix_verification_main.py,sha256=ydMfUn0USemh_lmxhKV2vZv75impgLsPbnoZio-G7K0,21792
25
+ pdd/fix_code_loop.py,sha256=FxQvFTmBGitNSJg-nIFjx2bWKqjtELSlu9GxkqHGo8g,24448
26
+ pdd/fix_code_module_errors.py,sha256=MrA-zL3Ia1VQBYBAISewwK3qCBQEAb7ariO9d0cj2jY,4876
27
+ pdd/fix_error_loop.py,sha256=urBH9CXxAZqC227jXBGcdZvXZX6SyL_u1B69pg419UE,24219
28
+ pdd/fix_errors_from_unit_tests.py,sha256=fIqEfVIEx8PPSAzWu5nhin_remKu4c0_o51AN3g_x6s,9398
29
+ pdd/fix_main.py,sha256=1DGXgAQv_lkWu-D673FeWEGrGxP8MJrUQKqgqzcnzpA,13985
30
+ pdd/fix_verification_errors.py,sha256=BWEEvtQgOof6IJ_MgiX2yvg9tTOqPDZZydCZw_QAZLk,16797
31
+ pdd/fix_verification_errors_loop.py,sha256=Q9hOvgBUpfl7BeL8WUPR6OaJXwYIhEuG2E3RsPiddxQ,55034
32
+ pdd/fix_verification_main.py,sha256=gCCfdSEFFK3SJ4j-XFjg7v5zWJcRyW0bl7mRnVJbSHc,22769
33
33
  pdd/generate_output_paths.py,sha256=o8Sjx0zLeBXXxEirGewcla40RinjTfnkrxBldRQ6HvI,20237
34
- pdd/generate_test.py,sha256=6wNICtDP-_sWaura0PrrTrCRqjUbgzpTRMk0mTxupL4,4845
34
+ pdd/generate_test.py,sha256=2tmCQcvWa_hCXDmfjRrk0IDX2SIevAu8dEL9SPnM2ew,5122
35
35
  pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
36
36
  pdd/get_extension.py,sha256=ZSsbi7n-tFw-7RQX7c3pV1qWsRt72qS_3AlAYjV53jA,2393
37
37
  pdd/get_jwt_token.py,sha256=BGxqMh7qf2mG-TFw7JlV941O9XtrW22L_dRoS_UZNjM,11560
38
38
  pdd/get_language.py,sha256=yxyQqVEb5H3ep3Hc6XgAl3vMLTHD5OIs8ZSekB493GA,1438
39
- pdd/git_update.py,sha256=Ya7eI7YFtGIpT7FdziFJfnFkiZlj8I9Lh98lqtXfClc,2855
40
- pdd/increase_tests.py,sha256=dlYd9PosV3g8kpDlQh6gd8WUauClvs_-Z8ERRD-kZk4,3456
39
+ pdd/git_update.py,sha256=ZpU_uqUx1Or_zmqP307y_6EMk4ruqpDcXumDX_KHQZU,2936
40
+ pdd/increase_tests.py,sha256=XNXWH-7CgF90YhmQ2wj0JDDhPKmMNkqRXwtvmPQttL0,3632
41
41
  pdd/incremental_code_generator.py,sha256=cWo3DJ0PybnrepFEAMibGjTVY3T8mLVvPt5W8cNhuxU,9402
42
- pdd/insert_includes.py,sha256=UASoq_46UNL6l7VGB7DW2jb4kcWlP6Hbj2EWuh7210Q,5310
42
+ pdd/insert_includes.py,sha256=hNn8muRULiq3YMNI4W4pEPeM1ckiZ-EgR9WtCyWQ1eQ,5533
43
43
  pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
44
44
  pdd/llm_invoke.py,sha256=457rD3f7KQHJ3BtI4boxTurArCww2zWAl4X77TxVROs,65788
45
45
  pdd/load_prompt_template.py,sha256=4NH8_t5eon_vcyTznqtemJ_yAPkTJm_hSdTRgzj3qEQ,1907
@@ -50,20 +50,20 @@ pdd/pdd_completion.zsh,sha256=WPcz7BzvjDRmcEZfL-kFvhYmUtz2BHxJK_r3_cPa478,14966
50
50
  pdd/postprocess.py,sha256=jWJSUPP7bDChyTEek35UOdy6fhU6c5EoDSoMypGwIdE,4402
51
51
  pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
52
52
  pdd/preprocess.py,sha256=UB1rqSNscUC-JHujvGb11LJ5OadZ3GVD1Qeq1dI6HMc,9508
53
- pdd/preprocess_main.py,sha256=dAgFGmjuJB1taZl31c1sY2jMGtQgjnWLbpeB7EFtojY,2977
54
- pdd/process_csv_change.py,sha256=GYb9UGmZ-E355JjMGNTrjzH1n-wc2vrx3Vef3e1DdL4,27550
53
+ pdd/preprocess_main.py,sha256=Bm3qtcfL-hmSGGiMknA-6KHye6TNd1cuwf180Yi5cw8,3192
54
+ pdd/process_csv_change.py,sha256=CqG00HhDQf69wMCkJab6KVVEEl9xoWxAsTkWg863vSw,27921
55
55
  pdd/pytest_output.py,sha256=kmKiMHaQItrDVi_hTCtM5pfCgBuyZVEVRbxdchpS5CY,4796
56
- pdd/split.py,sha256=eTt22hytmrpzfSD9QEFiBOf4w38ueX5R-0SWTuCgJ9I,4941
57
- pdd/split_main.py,sha256=x84NU7D_NxeQBJb-co2UmLII2z3mvt0pA8Zgq9DvOs4,4716
58
- pdd/summarize_directory.py,sha256=3KUOP30RgkBXpz0_btmpubnO1vWAQ3tKyVI84Zp-E9Q,9041
59
- pdd/trace.py,sha256=DMgL8cEk8gwdpyOumEi3am8wTq68e4OJzoc61H0vLAA,5011
60
- pdd/trace_main.py,sha256=yb8aM9Wkq1vem-xRQb-TvAEr2HruLUgbj3RaTg3H76E,4770
56
+ pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
57
+ pdd/split_main.py,sha256=HjJn4SDKos7bwFsjPkv-O0GyNYgw5XjPhx_CMDzbA90,4774
58
+ pdd/summarize_directory.py,sha256=FUgeVtB8oFn7Y6yI5dskNT5ieMoG95B6kRsVhKXPpSU,9184
59
+ pdd/trace.py,sha256=oXHbOMfxeso7m81N5V2ixS_l6BPAlZrH6vifn0IgWbo,5225
60
+ pdd/trace_main.py,sha256=JJx6PXgvZWlRNn4_FW_52KM8gd4luRTwgAOI_OL8HE0,4885
61
61
  pdd/track_cost.py,sha256=VIrHYh4i2G5T5Dq1plxwuzsG4OrHQgO0GPgFckgsQ_4,3266
62
- pdd/unfinished_prompt.py,sha256=Oql2c4EgdOe7BVofM0gVs8aN5EQnLuoO-FLibjamE3A,4076
63
- pdd/update_main.py,sha256=5a4nsOOaAXULdk0BS9pj4blZ_QHBFeET37uaAqoJI2g,3912
62
+ pdd/unfinished_prompt.py,sha256=aoyWPubtR36RFt1f2aqaTZVfSrqxzzbeKezTeHaDIGw,4305
63
+ pdd/update_main.py,sha256=G-sBZiPG3nP0sPs9th2nXcCCPUQJZsjugJcfr4Iwm3w,4041
64
64
  pdd/update_model_costs.py,sha256=zfGqWoVIjBppKUt1Naq2ZsIdiucwfH6at2DflcwkJf8,22998
65
- pdd/update_prompt.py,sha256=OdPRIAMu7OBx7E4SOU95hWgdtBY4oO8XOe1dvPChMlU,4351
66
- pdd/xml_tagger.py,sha256=5AWzOboNuXMJmmIpi1hhPPAB6nxbBOkRqgoPLpoGYT8,4292
65
+ pdd/update_prompt.py,sha256=zc-HiI1cwGBkJHVmNDyoSZa13lZH90VdB9l8ajdj6Kk,4543
66
+ pdd/xml_tagger.py,sha256=T5gI2e2G0BcdIPTqn3CU1x3M11VeSdA_kG9VYHZVm18,4478
67
67
  pdd/data/language_format.csv,sha256=X7jj_clC6dA93ij0TUPNd9oJ2tHyKUKXlWo1XVhP6zo,901
68
68
  pdd/data/llm_model.csv,sha256=BZioMyxUlDuJdcxFCDV2BTw1ssiHKZBf4OxELIy4JGY,1487
69
69
  pdd/prompts/auto_include_LLM.prompt,sha256=0t-Jmm5o6vVTmqsISTUiewqPT8bB389UZnJoHZvgtu4,13967
@@ -101,9 +101,9 @@ pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3
101
101
  pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
102
102
  pdd/prompts/update_prompt_LLM.prompt,sha256=prIc8uLp2jqnLTHt6JvWDZGanPZipivhhYeXe0lVaYw,1328
103
103
  pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
104
- pdd_cli-0.0.37.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
105
- pdd_cli-0.0.37.dist-info/METADATA,sha256=YBPsENcssihJwWqrs5s3dfkAkdpsKoNlcPhkwJSt2_o,7984
106
- pdd_cli-0.0.37.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
107
- pdd_cli-0.0.37.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
108
- pdd_cli-0.0.37.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
109
- pdd_cli-0.0.37.dist-info/RECORD,,
104
+ pdd_cli-0.0.39.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
105
+ pdd_cli-0.0.39.dist-info/METADATA,sha256=yKQv6yy-o81o4SIcONu4luRhzT1ReCvojtwz4J_yyUs,7968
106
+ pdd_cli-0.0.39.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
107
+ pdd_cli-0.0.39.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
108
+ pdd_cli-0.0.39.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
109
+ pdd_cli-0.0.39.dist-info/RECORD,,