pdd-cli 0.0.21__py3-none-any.whl → 0.0.22__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/cli.py +1 -1
- pdd/fix_main.py +3 -0
- {pdd_cli-0.0.21.dist-info → pdd_cli-0.0.22.dist-info}/METADATA +23 -16
- {pdd_cli-0.0.21.dist-info → pdd_cli-0.0.22.dist-info}/RECORD +8 -8
- {pdd_cli-0.0.21.dist-info → pdd_cli-0.0.22.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.21.dist-info → pdd_cli-0.0.22.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.21.dist-info → pdd_cli-0.0.22.dist-info}/licenses/LICENSE +0 -0
- {pdd_cli-0.0.21.dist-info → pdd_cli-0.0.22.dist-info}/top_level.txt +0 -0
pdd/cli.py
CHANGED
|
@@ -46,7 +46,7 @@ console = Console()
|
|
|
46
46
|
@click.option("--review-examples", is_flag=True,
|
|
47
47
|
help="Review and optionally exclude few-shot examples before command execution.")
|
|
48
48
|
@click.option('--local', is_flag=True, help='Run commands locally instead of in the cloud.')
|
|
49
|
-
@click.version_option(version="0.0.
|
|
49
|
+
@click.version_option(version="0.0.22")
|
|
50
50
|
@click.pass_context
|
|
51
51
|
def cli(
|
|
52
52
|
ctx,
|
pdd/fix_main.py
CHANGED
|
@@ -60,6 +60,9 @@ def fix_main(
|
|
|
60
60
|
# Check verification program requirement before any file operations
|
|
61
61
|
if loop and not verification_program:
|
|
62
62
|
raise click.UsageError("--verification-program is required when using --loop")
|
|
63
|
+
|
|
64
|
+
# Initialize analysis_results to None to prevent reference errors
|
|
65
|
+
analysis_results = None
|
|
63
66
|
|
|
64
67
|
try:
|
|
65
68
|
# Construct file paths
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pdd-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.22
|
|
4
4
|
Summary: PDD (Prompt-Driven Development) Command Line Interface
|
|
5
5
|
Author: Greg Tanaka
|
|
6
6
|
Author-email: glt@alumni.caltech.edu
|
|
@@ -21,28 +21,35 @@ Description-Content-Type: text/x-rst
|
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: GitPython==3.1.44
|
|
23
23
|
Requires-Dist: Requests==2.32.3
|
|
24
|
+
Requires-Dist: aiofiles==24.1.0
|
|
24
25
|
Requires-Dist: click==8.1.7
|
|
26
|
+
Requires-Dist: firecrawl-py
|
|
27
|
+
Requires-Dist: firebase_admin==6.6.0
|
|
25
28
|
Requires-Dist: keyring==25.6.0
|
|
26
|
-
Requires-Dist: langchain==0.3.
|
|
27
|
-
Requires-Dist: langchain_anthropic==0.3.
|
|
28
|
-
Requires-Dist: langchain_community==0.3.
|
|
29
|
-
Requires-Dist: langchain_core==0.3.
|
|
30
|
-
Requires-Dist: langchain_fireworks==0.2.
|
|
31
|
-
Requires-Dist: langchain_google_genai==2.
|
|
32
|
-
Requires-Dist: langchain_google_vertexai==2.0.
|
|
33
|
-
Requires-Dist: langchain_groq==0.2
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
29
|
+
Requires-Dist: langchain==0.3.23
|
|
30
|
+
Requires-Dist: langchain_anthropic==0.3.10
|
|
31
|
+
Requires-Dist: langchain_community==0.3.21
|
|
32
|
+
Requires-Dist: langchain_core==0.3.51
|
|
33
|
+
Requires-Dist: langchain_fireworks==0.2.9
|
|
34
|
+
Requires-Dist: langchain_google_genai==2.1.2
|
|
35
|
+
Requires-Dist: langchain_google_vertexai==2.0.19
|
|
36
|
+
Requires-Dist: langchain_groq==0.3.2
|
|
37
|
+
Requires-Dist: langchain_mcp_adapters==0.0.7
|
|
38
|
+
Requires-Dist: langchain_ollama==0.3.0
|
|
39
|
+
Requires-Dist: langchain_openai==0.3.12
|
|
36
40
|
Requires-Dist: langchain_together==0.3.0
|
|
41
|
+
Requires-Dist: langgraph==0.3.25
|
|
42
|
+
Requires-Dist: nest_asyncio==1.6.0
|
|
37
43
|
Requires-Dist: pandas==2.2.3
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: psutil==5.9.0
|
|
45
|
+
Requires-Dist: pydantic==2.11.2
|
|
46
|
+
Requires-Dist: rich==14.0.0
|
|
40
47
|
Requires-Dist: semver==3.0.2
|
|
41
|
-
Requires-Dist: setuptools
|
|
48
|
+
Requires-Dist: setuptools
|
|
42
49
|
Requires-Dist: python-Levenshtein
|
|
43
50
|
Dynamic: license-file
|
|
44
51
|
|
|
45
|
-
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.
|
|
52
|
+
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.22-blue
|
|
46
53
|
:alt: PDD-CLI Version
|
|
47
54
|
|
|
48
55
|
PDD (Prompt-Driven Development) Command Line Interface
|
|
@@ -103,7 +110,7 @@ After installation, verify:
|
|
|
103
110
|
|
|
104
111
|
pdd --version
|
|
105
112
|
|
|
106
|
-
You'll see the current PDD version (e.g., 0.0.
|
|
113
|
+
You'll see the current PDD version (e.g., 0.0.22).
|
|
107
114
|
|
|
108
115
|
Advanced Installation Tips
|
|
109
116
|
--------------------------
|
|
@@ -6,7 +6,7 @@ pdd/bug_main.py,sha256=myKU9--QWdkV4Wf3mD2PoLPJFNgRjwf4z8s7TC28G_s,3720
|
|
|
6
6
|
pdd/bug_to_unit_test.py,sha256=dsJNm6qAwx-m7RvFF5RquFJRzxzZGCWT4IKYnzVCUws,5569
|
|
7
7
|
pdd/change.py,sha256=iqjWS5DrQ73yMkuUQlwIRIFlofmKdaK6t6-v3zHKL-4,4985
|
|
8
8
|
pdd/change_main.py,sha256=yL_i1Ws5vt4vAkWiC826csNi2cHP6wKbwe_PfMqbbPY,11407
|
|
9
|
-
pdd/cli.py,sha256=
|
|
9
|
+
pdd/cli.py,sha256=LdJtulJ50L1pWUYcGghr7AUoS5fYwK6WY2VTKtWlbPI,16593
|
|
10
10
|
pdd/cmd_test_main.py,sha256=aSCxRnSurg15AvPcJDAPp9xy8p_qqnjU1oV14Hi2R54,5301
|
|
11
11
|
pdd/code_generator.py,sha256=n5akrX7VPe71X4RsD6kKqAVvzBLMlciJI4RtJA1PcgA,4375
|
|
12
12
|
pdd/code_generator_main.py,sha256=G2eRBPXc1cGszkk0PbIPmJZHPaf_dw5d2yZbsvQZA3c,4793
|
|
@@ -26,7 +26,7 @@ pdd/fix_code_loop.py,sha256=L0yxq2yAziPIyFGb8lIP2mvufu8a_gtc5nnN2LuMuKs,8596
|
|
|
26
26
|
pdd/fix_code_module_errors.py,sha256=M6AnlR2jF5LI-nNg6gIO5LvSkxiaLIUGyTvfnUfe1cU,4625
|
|
27
27
|
pdd/fix_error_loop.py,sha256=BBUROFjV6Hvp141ruDqkf-VeQti3Yx_8hxdTKLJMWcY,23983
|
|
28
28
|
pdd/fix_errors_from_unit_tests.py,sha256=vFQdEetg2VpfrQhXPa441ZJdmmBR3Z743545_lNWVA4,15978
|
|
29
|
-
pdd/fix_main.py,sha256=
|
|
29
|
+
pdd/fix_main.py,sha256=2CoCsCQD0X1sqkhiG1Oako0REtnq7fl_GnnPc2HP3QI,12269
|
|
30
30
|
pdd/generate_output_paths.py,sha256=zz42GTx9eGyWIYSl3jcWvtJRGnieC3eoPM6DIVcWz2k,7219
|
|
31
31
|
pdd/generate_test.py,sha256=BwmRnjaPDTlxUqJZ37N3bxTBHlLPCZIR5i1bwrNNv54,4791
|
|
32
32
|
pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
|
|
@@ -92,9 +92,9 @@ pdd/prompts/trim_results_start_LLM.prompt,sha256=WwFlOHha4wzMLtRHDMI6GtcNdl2toE8
|
|
|
92
92
|
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
|
|
93
93
|
pdd/prompts/update_prompt_LLM.prompt,sha256=_lGaxeVP4oF8yGqiN6yj6UE0j79lxfGdjsYr5w5KSYk,1261
|
|
94
94
|
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
95
|
-
pdd_cli-0.0.
|
|
96
|
-
pdd_cli-0.0.
|
|
97
|
-
pdd_cli-0.0.
|
|
98
|
-
pdd_cli-0.0.
|
|
99
|
-
pdd_cli-0.0.
|
|
100
|
-
pdd_cli-0.0.
|
|
95
|
+
pdd_cli-0.0.22.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
|
|
96
|
+
pdd_cli-0.0.22.dist-info/METADATA,sha256=yCqlXrfcKqJWPmwOBFL52z6U9ICqamhiuLKs625bXQo,7114
|
|
97
|
+
pdd_cli-0.0.22.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
98
|
+
pdd_cli-0.0.22.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
99
|
+
pdd_cli-0.0.22.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
100
|
+
pdd_cli-0.0.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|