pdd-cli 0.0.28__py3-none-any.whl → 0.0.29__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 +1 -1
- pdd/cli.py +4 -1
- pdd/cli_2_0_1_0_20250510_005101.py +1054 -0
- pdd/cli_3_0_1_0_20250510_005101.py +1054 -0
- pdd/cli_4_0_1_0_20250510_005101.py +1054 -0
- {pdd_cli-0.0.28.dist-info → pdd_cli-0.0.29.dist-info}/METADATA +3 -3
- {pdd_cli-0.0.28.dist-info → pdd_cli-0.0.29.dist-info}/RECORD +11 -8
- {pdd_cli-0.0.28.dist-info → pdd_cli-0.0.29.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.28.dist-info → pdd_cli-0.0.29.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.28.dist-info → pdd_cli-0.0.29.dist-info}/licenses/LICENSE +0 -0
- {pdd_cli-0.0.28.dist-info → pdd_cli-0.0.29.dist-info}/top_level.txt +0 -0
pdd/__init__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "0.0.
|
|
1
|
+
__version__ = "0.0.29"
|
|
2
2
|
|
|
3
3
|
# Strength parameter used for LLM extraction across the codebase
|
|
4
4
|
# Used in postprocessing, XML tagging, code generation, and other extraction operations. The module should have a large context window and be affordable.
|
pdd/cli.py
CHANGED
|
@@ -26,7 +26,7 @@ from .crash_main import crash_main
|
|
|
26
26
|
from .detect_change_main import detect_change_main
|
|
27
27
|
from .fix_main import fix_main
|
|
28
28
|
from .fix_verification_main import fix_verification_main
|
|
29
|
-
from .install_completion import install_completion
|
|
29
|
+
from .install_completion import install_completion, get_local_pdd_path
|
|
30
30
|
from .preprocess_main import preprocess_main
|
|
31
31
|
from .split_main import split_main
|
|
32
32
|
from .trace_main import trace_main
|
|
@@ -136,6 +136,9 @@ def cli(
|
|
|
136
136
|
Main entry point for the PDD CLI. Handles global options and initializes context.
|
|
137
137
|
Supports multi-command chaining.
|
|
138
138
|
"""
|
|
139
|
+
# Ensure PDD_PATH is set before any commands run
|
|
140
|
+
get_local_pdd_path()
|
|
141
|
+
|
|
139
142
|
ctx.ensure_object(dict)
|
|
140
143
|
ctx.obj["force"] = force
|
|
141
144
|
ctx.obj["strength"] = strength
|