pdd-cli 0.0.30__py3-none-any.whl → 0.0.32__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.
- pdd/__init__.py +10 -2
- pdd/change_main.py +2 -2
- pdd/cli.py +35 -4
- pdd/code_generator_main.py +335 -105
- pdd/data/llm_model.csv +1 -1
- pdd/fix_verification_errors_loop.py +57 -31
- pdd/fix_verification_main.py +76 -48
- pdd/incremental_code_generator.py +198 -0
- pdd/prompts/change_LLM.prompt +5 -1
- pdd/prompts/code_patcher_LLM.prompt +63 -0
- pdd/prompts/diff_analyzer_LLM.prompt +69 -0
- pdd/prompts/find_verification_errors_LLM.prompt +13 -13
- pdd/prompts/fix_verification_errors_LLM.prompt +17 -16
- {pdd_cli-0.0.30.dist-info → pdd_cli-0.0.32.dist-info}/METADATA +7 -7
- {pdd_cli-0.0.30.dist-info → pdd_cli-0.0.32.dist-info}/RECORD +19 -16
- {pdd_cli-0.0.30.dist-info → pdd_cli-0.0.32.dist-info}/WHEEL +1 -1
- {pdd_cli-0.0.30.dist-info → pdd_cli-0.0.32.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.30.dist-info → pdd_cli-0.0.32.dist-info}/licenses/LICENSE +0 -0
- {pdd_cli-0.0.30.dist-info → pdd_cli-0.0.32.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
% You are an expert code analyzer, tasked with determining if changes between two prompts are significant enough to warrant complete code regeneration.
|
|
2
|
+
|
|
3
|
+
% Given:
|
|
4
|
+
- The original prompt used to generate code
|
|
5
|
+
- A new, updated prompt
|
|
6
|
+
- The existing code generated from the original prompt
|
|
7
|
+
% Your task is to:
|
|
8
|
+
1. Analyze the differences between the original and new prompts
|
|
9
|
+
2. Evaluate how significantly these differences would impact the code implementation
|
|
10
|
+
3. Decide if the changes require completely regenerating the code or if incremental patching would be sufficient
|
|
11
|
+
4. Provide a clear description of the changes needed, which will be used for patching if applicable
|
|
12
|
+
|
|
13
|
+
% Output a JSON object with:
|
|
14
|
+
- is_big_change: boolean - true if changes are significant enough to require complete regeneration, false if incremental patching is sufficient
|
|
15
|
+
- change_description: string - detailed description of changes needed, especially helpful for incremental patching
|
|
16
|
+
|
|
17
|
+
% Guidelines for determining significant changes:
|
|
18
|
+
- Major architectural changes (significantly different data structures, algorithms, or patterns)
|
|
19
|
+
- Addition of entirely new functionalities that alter the core purpose
|
|
20
|
+
- Changes to return types or critical input parameters
|
|
21
|
+
- Major changes to the programming paradigm or approach
|
|
22
|
+
- Substantial adjustments to business logic
|
|
23
|
+
|
|
24
|
+
% Examples of changes that can be handled incrementally:
|
|
25
|
+
- Bug fixes or minor logic corrections
|
|
26
|
+
- Adding or modifying non-critical validation
|
|
27
|
+
- Adding simple helper functions
|
|
28
|
+
- Renaming variables or functions
|
|
29
|
+
- Adding documentation or comments
|
|
30
|
+
- Minor enhancements to existing functionality
|
|
31
|
+
- Small adjustments to error handling
|
|
32
|
+
|
|
33
|
+
% Be conservative in determining if a change is "big" - if there's significant uncertainty, prefer complete regeneration.
|
|
34
|
+
|
|
35
|
+
ORIGINAL_PROMPT:
|
|
36
|
+
<original_prompt>
|
|
37
|
+
{ORIGINAL_PROMPT}
|
|
38
|
+
</original_prompt>
|
|
39
|
+
|
|
40
|
+
NEW_PROMPT:
|
|
41
|
+
<new_prompt>
|
|
42
|
+
{NEW_PROMPT}
|
|
43
|
+
</new_prompt>
|
|
44
|
+
|
|
45
|
+
EXISTING_CODE:
|
|
46
|
+
<existing_code>
|
|
47
|
+
{EXISTING_CODE}
|
|
48
|
+
</existing_code>
|
|
49
|
+
|
|
50
|
+
Analyze the differences between the original and new prompts. Consider how these differences would impact the implementation of the code.
|
|
51
|
+
|
|
52
|
+
First, identify and list the specific changes between the prompts:
|
|
53
|
+
|
|
54
|
+
1. [List each significant change]
|
|
55
|
+
|
|
56
|
+
Next, evaluate if these changes fundamentally alter the approach needed in the code implementation:
|
|
57
|
+
|
|
58
|
+
2. [Your detailed analysis]
|
|
59
|
+
|
|
60
|
+
Based on your analysis, determine whether these changes require completely regenerating the code or if they can be addressed with targeted modifications to the existing code.
|
|
61
|
+
|
|
62
|
+
Output your conclusion as a JSON object with the following format:
|
|
63
|
+
<output_json_example>
|
|
64
|
+
{{
|
|
65
|
+
"analysis": "A detailed analysis of the changes needed 1 and 2 above",
|
|
66
|
+
"change_description": "A detailed description of the changes needed..."
|
|
67
|
+
"is_big_change": true/false,
|
|
68
|
+
}}
|
|
69
|
+
</output_json_example>
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
% Here is the code_module that is being used by the program: <code_module>{code}</code_module>
|
|
8
8
|
|
|
9
|
-
% Here are the output logs from the program run: <
|
|
9
|
+
% Here are the output logs from the program run: <output_logs>{output}</output_logs>
|
|
10
10
|
|
|
11
11
|
% IMPORTANT CONSIDERATIONS:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
1. The prompt may only describe part of the functionality needed by the program.
|
|
13
|
+
2. Always consider compatibility between the program and code_module as the highest priority.
|
|
14
|
+
3. Functions used by the program must exist in the code_module, even if not mentioned in the prompt.
|
|
15
|
+
4. The prompt might only request new functionality to be added to existing code.
|
|
16
16
|
|
|
17
17
|
% Follow these steps to identify any issues:
|
|
18
18
|
Step 1. First, identify all functions and features in the code_module that are used by the program, as these must be preserved.
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
|
|
29
29
|
% After your analysis, determine the number of distinct issues found. If no issues are found, the count should be 0.
|
|
30
30
|
|
|
31
|
-
% Return your response as a single, valid JSON object.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
% Ensure the "issues_count" is an integer representing the total number of distinct problems you've identified in your details.
|
|
31
|
+
% Return your response as a single, valid JSON object. The JSON object must conform to the following structure:
|
|
32
|
+
<example_output>
|
|
33
|
+
{{
|
|
34
|
+
"details": "A detailed explanation of all steps taken during your analysis, including any discrepancies, bugs, or potential issues identified. If no issues are found, this can be a brief confirmation.",
|
|
35
|
+
"issues_count": <integer_count_of_issues_found>
|
|
36
|
+
}}
|
|
37
|
+
</example_output>
|
|
38
|
+
% Ensure the "details" field contains your complete textual analysis from Steps 1-7 and ensure the "issues_count" is an integer representing the total number of distinct problems you've identified in your details.
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
% Here are the potential issues that need to be fixed: <issues>{issues}</issues>
|
|
12
12
|
|
|
13
13
|
% CRITICAL INSTRUCTIONS:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
14
|
+
1. IMPORTANT: Ensure your fixes maintain backward compatibility with the original program's function calls. If the program calls a function not mentioned in the prompt, preserve that function in your fixed code.
|
|
15
|
+
2. When the original prompt and program have conflicting requirements, prioritize in this order:
|
|
16
|
+
a. Keep the program working with the same output (preserve existing functions)
|
|
17
|
+
b. Add any new functionality requested by the prompt
|
|
18
|
+
c. Improve/fix the implementation details of existing functions
|
|
19
|
+
3. Do not remove any functions that are called by the original program, even if they are not explicitly requested in the prompt. The prompt may only specify new functionality to add.
|
|
20
|
+
4. First analyze how the program interacts with the code module to identify all required functions, then ensure your fix preserves these interaction points.
|
|
21
|
+
5. Prefer making additive changes (adding new functions, improving existing ones) rather than removing functionality, even if that means going beyond the minimal requirements of the prompt.
|
|
22
|
+
6. If your previous fixes resulted in verification failures related to missing functions, ensure those functions are included in your solution.
|
|
23
23
|
|
|
24
24
|
% Follow these steps to fix the program or code_module:
|
|
25
25
|
Step 1. Analyze and understand each identified issue in the context of the code_module and program.
|
|
@@ -29,11 +29,12 @@
|
|
|
29
29
|
Step 5. Provide the complete fixed code_module and program with explanations for each significant change made.
|
|
30
30
|
Step 6. Verify that the fixed code meets all requirements from the original prompt and addresses all identified issues while preserving program functionality.
|
|
31
31
|
|
|
32
|
-
% Return your response as a single, valid JSON object.
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
32
|
+
% Return your response as a single, valid JSON object. The JSON object must conform to the following structure:
|
|
33
|
+
<example_output>
|
|
34
|
+
{{
|
|
35
|
+
"explanation": "Detailed explanation of all steps taken, including analysis of issues, solutions developed, and verification that the fixes are correct and meet critical instructions and prompt requirements.",
|
|
36
|
+
"fixed_code": "The complete, runnable, and fixed Python code for the code_module. This should ONLY be the code, with no additional text or commentary.",
|
|
37
|
+
"fixed_program": "The complete, runnable, and fixed Python code for the program. This should ONLY be the code, with no additional text or commentary."
|
|
38
|
+
}}
|
|
39
|
+
</example_output>
|
|
39
40
|
% Ensure that the "fixed_code" and "fixed_program" fields contain only the raw source code. Do not include any markdown formatting, comments (unless part of the code itself), or any other explanatory text within these fields.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pdd-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.32
|
|
4
4
|
Summary: PDD (Prompt-Driven Development) Command Line Interface
|
|
5
5
|
Author: Greg Tanaka
|
|
6
6
|
Author-email: glt@alumni.caltech.edu
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/
|
|
9
|
-
Project-URL: Repository, https://github.com/
|
|
10
|
-
Project-URL: Issue-Tracker, https://github.com/
|
|
8
|
+
Project-URL: Homepage, https://github.com/promptdriven/pdd.git
|
|
9
|
+
Project-URL: Repository, https://github.com/promptdriven/pdd.git
|
|
10
|
+
Project-URL: Issue-Tracker, https://github.com/promptdriven/pdd/issues
|
|
11
11
|
Keywords: prompt-driven development,code generation,AI,LLM,unit testing,software development
|
|
12
12
|
Classifier: Development Status :: 3 - Alpha
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: Topic :: Software Development :: Code Generators
|
|
18
18
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
19
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.12
|
|
20
20
|
Description-Content-Type: text/x-rst
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: GitPython==3.1.44
|
|
@@ -46,7 +46,7 @@ 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.
|
|
49
|
+
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.32-blue
|
|
50
50
|
:alt: PDD-CLI Version
|
|
51
51
|
|
|
52
52
|
PDD (Prompt-Driven Development) Command Line Interface
|
|
@@ -130,7 +130,7 @@ After installation, verify:
|
|
|
130
130
|
|
|
131
131
|
pdd --version
|
|
132
132
|
|
|
133
|
-
You'll see the current PDD version (e.g., 0.0.
|
|
133
|
+
You'll see the current PDD version (e.g., 0.0.32).
|
|
134
134
|
|
|
135
135
|
Advanced Installation Tips
|
|
136
136
|
--------------------------
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
pdd/__init__.py,sha256=
|
|
1
|
+
pdd/__init__.py,sha256=oBlK2EdKLxWULcsuHgrlD34jImz8M12FUeCXxTkbxIk,632
|
|
2
2
|
pdd/auto_deps_main.py,sha256=NVLqL5FHxe2eorViXTuh8z2zH9Sb-b6MNN9aZ1hqevY,3552
|
|
3
3
|
pdd/auto_include.py,sha256=aCa2QXDlOdKbh4vS3uDjWptkHB_Qv3QBNCbZe6mGWoo,6074
|
|
4
4
|
pdd/auto_update.py,sha256=Pfav1hrqQIDjZIPuIvryBeM7k-Rc72feVUTJZPtigaU,2889
|
|
5
5
|
pdd/bug_main.py,sha256=cSGBnHmFIA8WrkGiohJFVRuM2086v-wlPvTJqTv00WQ,4631
|
|
6
6
|
pdd/bug_to_unit_test.py,sha256=oejqoKomLseKknYDFlQKQ04TNT3soqOjMPghxty8Guo,6311
|
|
7
7
|
pdd/change.py,sha256=EKmv7WvXNX24rjLCnrcaoo4xOVkNhCa9HLRbpMAxQSw,5036
|
|
8
|
-
pdd/change_main.py,sha256=
|
|
9
|
-
pdd/cli.py,sha256=
|
|
8
|
+
pdd/change_main.py,sha256=Tk0aHY8Z2d-d0m7lLfc_HqgOqs4x_dJD1IrVZSxuxIM,25580
|
|
9
|
+
pdd/cli.py,sha256=VFoyx3iJmFeHCc4HhOc_7tiz3FY9oJjCUtS9PR1wwl0,38341
|
|
10
10
|
pdd/cmd_test_main.py,sha256=aSCxRnSurg15AvPcJDAPp9xy8p_qqnjU1oV14Hi2R54,5301
|
|
11
11
|
pdd/code_generator.py,sha256=DqQNN6jCNjSJvHi0IFyqkSfak6LeDG-yQHPYnvd4AJQ,4424
|
|
12
|
-
pdd/code_generator_main.py,sha256=
|
|
12
|
+
pdd/code_generator_main.py,sha256=wup3O2dVh9JzlGsWtXvypqAHgHyBZHOWAe3NJuV_-g4,18648
|
|
13
13
|
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
14
14
|
pdd/conflicts_in_prompts.py,sha256=XaEm9jIMcbENTyhphD8NXs2EmRxuPu1EI8GHrsiRwq0,4687
|
|
15
15
|
pdd/conflicts_main.py,sha256=O87s9baSa9DJMndxPIdsnYO_spoajcv9jii3XYt_-fM,3473
|
|
@@ -28,8 +28,8 @@ pdd/fix_error_loop.py,sha256=BdoI08HD30BHCjjfvpH7zamdjv6sMqi70li_oRu_-P0,24004
|
|
|
28
28
|
pdd/fix_errors_from_unit_tests.py,sha256=SdL4wgo6ARgIClTTYlHuNu12t1cE4YohpGqo4Mcj1P8,9192
|
|
29
29
|
pdd/fix_main.py,sha256=q2FDggCGXSbrMlb6OaxCmpJ5v02W8tmRU8IKmHdYYbQ,13799
|
|
30
30
|
pdd/fix_verification_errors.py,sha256=_ToACv9z10YIoUUbwQSS41dXKsQ_lJi2FHy1qBYHMpY,16566
|
|
31
|
-
pdd/fix_verification_errors_loop.py,sha256=
|
|
32
|
-
pdd/fix_verification_main.py,sha256=
|
|
31
|
+
pdd/fix_verification_errors_loop.py,sha256=CVkskhxXu7su95HXQkOCmU2yJgY6zf0vMbGDxxNmuh4,54754
|
|
32
|
+
pdd/fix_verification_main.py,sha256=ydMfUn0USemh_lmxhKV2vZv75impgLsPbnoZio-G7K0,21792
|
|
33
33
|
pdd/generate_output_paths.py,sha256=o8Sjx0zLeBXXxEirGewcla40RinjTfnkrxBldRQ6HvI,20237
|
|
34
34
|
pdd/generate_test.py,sha256=6wNICtDP-_sWaura0PrrTrCRqjUbgzpTRMk0mTxupL4,4845
|
|
35
35
|
pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
|
|
@@ -38,6 +38,7 @@ pdd/get_jwt_token.py,sha256=BGxqMh7qf2mG-TFw7JlV941O9XtrW22L_dRoS_UZNjM,11560
|
|
|
38
38
|
pdd/get_language.py,sha256=yxyQqVEb5H3ep3Hc6XgAl3vMLTHD5OIs8ZSekB493GA,1438
|
|
39
39
|
pdd/git_update.py,sha256=Ya7eI7YFtGIpT7FdziFJfnFkiZlj8I9Lh98lqtXfClc,2855
|
|
40
40
|
pdd/increase_tests.py,sha256=dlYd9PosV3g8kpDlQh6gd8WUauClvs_-Z8ERRD-kZk4,3456
|
|
41
|
+
pdd/incremental_code_generator.py,sha256=cWo3DJ0PybnrepFEAMibGjTVY3T8mLVvPt5W8cNhuxU,9402
|
|
41
42
|
pdd/insert_includes.py,sha256=UASoq_46UNL6l7VGB7DW2jb4kcWlP6Hbj2EWuh7210Q,5310
|
|
42
43
|
pdd/install_completion.py,sha256=H_FIid0eHCn7I6HHIsBqdComAxjLIu7CbD6yfMU48aw,5085
|
|
43
44
|
pdd/llm_invoke.py,sha256=457rD3f7KQHJ3BtI4boxTurArCww2zWAl4X77TxVROs,65788
|
|
@@ -64,13 +65,15 @@ pdd/update_model_costs.py,sha256=zfGqWoVIjBppKUt1Naq2ZsIdiucwfH6at2DflcwkJf8,229
|
|
|
64
65
|
pdd/update_prompt.py,sha256=OdPRIAMu7OBx7E4SOU95hWgdtBY4oO8XOe1dvPChMlU,4351
|
|
65
66
|
pdd/xml_tagger.py,sha256=5AWzOboNuXMJmmIpi1hhPPAB6nxbBOkRqgoPLpoGYT8,4292
|
|
66
67
|
pdd/data/language_format.csv,sha256=xUTmFHXSBVBRfPV-NKG3oWo5_ped5ukP-ekFcIlVzJk,877
|
|
67
|
-
pdd/data/llm_model.csv,sha256=
|
|
68
|
+
pdd/data/llm_model.csv,sha256=BZioMyxUlDuJdcxFCDV2BTw1ssiHKZBf4OxELIy4JGY,1487
|
|
68
69
|
pdd/prompts/auto_include_LLM.prompt,sha256=0t-Jmm5o6vVTmqsISTUiewqPT8bB389UZnJoHZvgtu4,13967
|
|
69
70
|
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=KdMkvRVnjVSf0NTYIaDXIMT93xPttXEwkMpjWx5leLs,1588
|
|
70
|
-
pdd/prompts/change_LLM.prompt,sha256=
|
|
71
|
+
pdd/prompts/change_LLM.prompt,sha256=5rgWIL16p3VRURd2_lNtcbu_MVRqPhI8gFIBt1gkzDQ,2164
|
|
72
|
+
pdd/prompts/code_patcher_LLM.prompt,sha256=yeV4lsRuPQzNdKRV_LQUOmmWh2yhu8YgKXUWo4bge4I,2392
|
|
71
73
|
pdd/prompts/conflict_LLM.prompt,sha256=46DB_qOCtsfVsj6y8E8grI0izxAk_-ixoENUUHQAkHc,1593
|
|
72
74
|
pdd/prompts/continue_generation_LLM.prompt,sha256=Jsd3eeu23heqw2frfOLzZ5c9dn0QZrfWGratfyWV-ac,111
|
|
73
75
|
pdd/prompts/detect_change_LLM.prompt,sha256=-q8VqXAv6ufEE193DNbTcgpbxiKISR5-5j3M0TTqa8s,4522
|
|
76
|
+
pdd/prompts/diff_analyzer_LLM.prompt,sha256=2lZI4g4DO9NwMPnxVJW717dGG5LQuBXqgeIjYfplEdU,2901
|
|
74
77
|
pdd/prompts/example_generator_LLM.prompt,sha256=48mUvjEYxQYf_HhDLP6RGOz6_d_go6JNExZ9g8aicCg,610
|
|
75
78
|
pdd/prompts/extract_auto_include_LLM.prompt,sha256=BamIIt8qrML2ZtNe3D4K30iMobJ4URtkyomHCDaf0iw,313
|
|
76
79
|
pdd/prompts/extract_code_LLM.prompt,sha256=rRql9Dv2Rn01F2hFeaGzfh9apxCkjY7WzAG0SAvIe8M,2470
|
|
@@ -83,10 +86,10 @@ pdd/prompts/extract_prompt_update_LLM.prompt,sha256=XH2muMzTb_wqcQS9rR4THXe6TP7B
|
|
|
83
86
|
pdd/prompts/extract_promptline_LLM.prompt,sha256=owIBRaF2bWwg3S64uyMKzOFMdvvmI_EEGoF97Pa9118,813
|
|
84
87
|
pdd/prompts/extract_unit_code_fix_LLM.prompt,sha256=c4l6twMLC2YqDDvOj_DcaKmJQF8kIupeqvkueK_OQng,14301
|
|
85
88
|
pdd/prompts/extract_xml_LLM.prompt,sha256=eRcHaL-khShpb7C1_b7wmBJHfo2Kh1Wvjo_aOcWZovU,561
|
|
86
|
-
pdd/prompts/find_verification_errors_LLM.prompt,sha256=
|
|
89
|
+
pdd/prompts/find_verification_errors_LLM.prompt,sha256=NwmJbAFkNwSWaJOsewznb7hbOljc9AJ-Sf6fB7xIACI,2863
|
|
87
90
|
pdd/prompts/fix_code_module_errors_LLM.prompt,sha256=sjqB-apFtiMZerXm_qZEuA6pfRtk2hOiXxPXwuxIZxM,2462
|
|
88
91
|
pdd/prompts/fix_errors_from_unit_tests_LLM.prompt,sha256=Yy6WIg9WfizrFpFZogoCtlQy-H123ycc_SaF6m8_Ljo,5079
|
|
89
|
-
pdd/prompts/fix_verification_errors_LLM.prompt,sha256=
|
|
92
|
+
pdd/prompts/fix_verification_errors_LLM.prompt,sha256=zZrQQnBRBL42fINmCC2WjQlLGPNriIuHsnzrkN5seN8,3532
|
|
90
93
|
pdd/prompts/generate_test_LLM.prompt,sha256=eCI7CTMpoA76DTruTgWygClxJX0gj_uNxTqHbmqcJ50,2254
|
|
91
94
|
pdd/prompts/increase_tests_LLM.prompt,sha256=rekFzLRuZy99KifEKNlmPYoQdl8wa04112mtCdIY6S8,955
|
|
92
95
|
pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
|
|
@@ -98,9 +101,9 @@ pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3
|
|
|
98
101
|
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
|
|
99
102
|
pdd/prompts/update_prompt_LLM.prompt,sha256=prIc8uLp2jqnLTHt6JvWDZGanPZipivhhYeXe0lVaYw,1328
|
|
100
103
|
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
101
|
-
pdd_cli-0.0.
|
|
102
|
-
pdd_cli-0.0.
|
|
103
|
-
pdd_cli-0.0.
|
|
104
|
-
pdd_cli-0.0.
|
|
105
|
-
pdd_cli-0.0.
|
|
106
|
-
pdd_cli-0.0.
|
|
104
|
+
pdd_cli-0.0.32.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
|
|
105
|
+
pdd_cli-0.0.32.dist-info/METADATA,sha256=gnrubUf69rPVr3t01FvagrPuxrJ3B6JRbHXjYQYB3OQ,7778
|
|
106
|
+
pdd_cli-0.0.32.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
107
|
+
pdd_cli-0.0.32.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
108
|
+
pdd_cli-0.0.32.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
109
|
+
pdd_cli-0.0.32.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|