pdd-cli 0.0.43__py3-none-any.whl → 0.0.44__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 +2 -2
- pdd/cmd_test_main.py +9 -0
- pdd/data/language_format.csv +1 -0
- pdd/data/llm_model.csv +2 -2
- pdd/fix_code_loop.py +2 -2
- pdd/fix_error_loop.py +5 -2
- pdd/fix_verification_errors_loop.py +14 -1
- pdd/fix_verification_main.py +29 -8
- pdd/get_jwt_token.py +39 -7
- pdd/increase_tests.py +7 -0
- pdd/llm_invoke.py +9 -7
- pdd/prompts/extract_program_code_fix_LLM.prompt +7 -1
- pdd/prompts/fix_code_module_errors_LLM.prompt +13 -3
- pdd/pytest_output.py +72 -20
- pdd/python_env_detector.py +151 -0
- pdd/summarize_directory.py +7 -1
- pdd/sync_determine_operation.py +396 -109
- pdd/sync_main.py +1 -1
- pdd/sync_orchestration.py +448 -28
- {pdd_cli-0.0.43.dist-info → pdd_cli-0.0.44.dist-info}/METADATA +4 -4
- {pdd_cli-0.0.43.dist-info → pdd_cli-0.0.44.dist-info}/RECORD +26 -25
- {pdd_cli-0.0.43.dist-info → pdd_cli-0.0.44.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.43.dist-info → pdd_cli-0.0.44.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.43.dist-info → pdd_cli-0.0.44.dist-info}/licenses/LICENSE +0 -0
- {pdd_cli-0.0.43.dist-info → pdd_cli-0.0.44.dist-info}/top_level.txt +0 -0
pdd/sync_main.py
CHANGED
|
@@ -166,7 +166,7 @@ def sync_main(
|
|
|
166
166
|
try:
|
|
167
167
|
resolved_config, _, _, _ = construct_paths(
|
|
168
168
|
input_file_paths={"prompt_file": str(prompt_file_path)},
|
|
169
|
-
force=force
|
|
169
|
+
force=True, # Always use force=True in log mode to avoid prompts
|
|
170
170
|
quiet=True,
|
|
171
171
|
command="sync",
|
|
172
172
|
command_options={"basename": basename, "language": lang},
|