pdd-cli 0.0.45__py3-none-any.whl → 0.0.118__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.
- pdd/__init__.py +40 -8
- pdd/agentic_bug.py +323 -0
- pdd/agentic_bug_orchestrator.py +497 -0
- pdd/agentic_change.py +231 -0
- pdd/agentic_change_orchestrator.py +526 -0
- pdd/agentic_common.py +598 -0
- pdd/agentic_crash.py +534 -0
- pdd/agentic_e2e_fix.py +319 -0
- pdd/agentic_e2e_fix_orchestrator.py +426 -0
- pdd/agentic_fix.py +1294 -0
- pdd/agentic_langtest.py +162 -0
- pdd/agentic_update.py +387 -0
- pdd/agentic_verify.py +183 -0
- pdd/architecture_sync.py +565 -0
- pdd/auth_service.py +210 -0
- pdd/auto_deps_main.py +71 -51
- pdd/auto_include.py +245 -5
- pdd/auto_update.py +125 -47
- pdd/bug_main.py +196 -23
- pdd/bug_to_unit_test.py +2 -0
- pdd/change_main.py +11 -4
- pdd/cli.py +22 -1181
- pdd/cmd_test_main.py +350 -150
- pdd/code_generator.py +60 -18
- pdd/code_generator_main.py +790 -57
- pdd/commands/__init__.py +48 -0
- pdd/commands/analysis.py +306 -0
- pdd/commands/auth.py +309 -0
- pdd/commands/connect.py +290 -0
- pdd/commands/fix.py +163 -0
- pdd/commands/generate.py +257 -0
- pdd/commands/maintenance.py +175 -0
- pdd/commands/misc.py +87 -0
- pdd/commands/modify.py +256 -0
- pdd/commands/report.py +144 -0
- pdd/commands/sessions.py +284 -0
- pdd/commands/templates.py +215 -0
- pdd/commands/utility.py +110 -0
- pdd/config_resolution.py +58 -0
- pdd/conflicts_main.py +8 -3
- pdd/construct_paths.py +589 -111
- pdd/context_generator.py +10 -2
- pdd/context_generator_main.py +175 -76
- pdd/continue_generation.py +53 -10
- pdd/core/__init__.py +33 -0
- pdd/core/cli.py +527 -0
- pdd/core/cloud.py +237 -0
- pdd/core/dump.py +554 -0
- pdd/core/errors.py +67 -0
- pdd/core/remote_session.py +61 -0
- pdd/core/utils.py +90 -0
- pdd/crash_main.py +262 -33
- pdd/data/language_format.csv +71 -63
- pdd/data/llm_model.csv +20 -18
- pdd/detect_change_main.py +5 -4
- pdd/docs/prompting_guide.md +864 -0
- pdd/docs/whitepaper_with_benchmarks/data_and_functions/benchmark_analysis.py +495 -0
- pdd/docs/whitepaper_with_benchmarks/data_and_functions/creation_compare.py +528 -0
- pdd/fix_code_loop.py +523 -95
- pdd/fix_code_module_errors.py +6 -2
- pdd/fix_error_loop.py +491 -92
- pdd/fix_errors_from_unit_tests.py +4 -3
- pdd/fix_main.py +278 -21
- pdd/fix_verification_errors.py +12 -100
- pdd/fix_verification_errors_loop.py +529 -286
- pdd/fix_verification_main.py +294 -89
- pdd/frontend/dist/assets/index-B5DZHykP.css +1 -0
- pdd/frontend/dist/assets/index-DQ3wkeQ2.js +449 -0
- pdd/frontend/dist/index.html +376 -0
- pdd/frontend/dist/logo.svg +33 -0
- pdd/generate_output_paths.py +139 -15
- pdd/generate_test.py +218 -146
- pdd/get_comment.py +19 -44
- pdd/get_extension.py +8 -9
- pdd/get_jwt_token.py +318 -22
- pdd/get_language.py +8 -7
- pdd/get_run_command.py +75 -0
- pdd/get_test_command.py +68 -0
- pdd/git_update.py +70 -19
- pdd/incremental_code_generator.py +2 -2
- pdd/insert_includes.py +13 -4
- pdd/llm_invoke.py +1711 -181
- pdd/load_prompt_template.py +19 -12
- pdd/path_resolution.py +140 -0
- pdd/pdd_completion.fish +25 -2
- pdd/pdd_completion.sh +30 -4
- pdd/pdd_completion.zsh +79 -4
- pdd/postprocess.py +14 -4
- pdd/preprocess.py +293 -24
- pdd/preprocess_main.py +41 -6
- pdd/prompts/agentic_bug_step10_pr_LLM.prompt +182 -0
- pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt +73 -0
- pdd/prompts/agentic_bug_step2_docs_LLM.prompt +129 -0
- pdd/prompts/agentic_bug_step3_triage_LLM.prompt +95 -0
- pdd/prompts/agentic_bug_step4_reproduce_LLM.prompt +97 -0
- pdd/prompts/agentic_bug_step5_root_cause_LLM.prompt +123 -0
- pdd/prompts/agentic_bug_step6_test_plan_LLM.prompt +107 -0
- pdd/prompts/agentic_bug_step7_generate_LLM.prompt +172 -0
- pdd/prompts/agentic_bug_step8_verify_LLM.prompt +119 -0
- pdd/prompts/agentic_bug_step9_e2e_test_LLM.prompt +289 -0
- pdd/prompts/agentic_change_step10_identify_issues_LLM.prompt +1006 -0
- pdd/prompts/agentic_change_step11_fix_issues_LLM.prompt +984 -0
- pdd/prompts/agentic_change_step12_create_pr_LLM.prompt +131 -0
- pdd/prompts/agentic_change_step1_duplicate_LLM.prompt +73 -0
- pdd/prompts/agentic_change_step2_docs_LLM.prompt +101 -0
- pdd/prompts/agentic_change_step3_research_LLM.prompt +126 -0
- pdd/prompts/agentic_change_step4_clarify_LLM.prompt +164 -0
- pdd/prompts/agentic_change_step5_docs_change_LLM.prompt +981 -0
- pdd/prompts/agentic_change_step6_devunits_LLM.prompt +1005 -0
- pdd/prompts/agentic_change_step7_architecture_LLM.prompt +1044 -0
- pdd/prompts/agentic_change_step8_analyze_LLM.prompt +1027 -0
- pdd/prompts/agentic_change_step9_implement_LLM.prompt +1077 -0
- pdd/prompts/agentic_crash_explore_LLM.prompt +49 -0
- pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt +90 -0
- pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt +91 -0
- pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt +89 -0
- pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt +96 -0
- pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt +91 -0
- pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt +106 -0
- pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt +116 -0
- pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt +120 -0
- pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt +146 -0
- pdd/prompts/agentic_fix_explore_LLM.prompt +45 -0
- pdd/prompts/agentic_fix_harvest_only_LLM.prompt +48 -0
- pdd/prompts/agentic_fix_primary_LLM.prompt +85 -0
- pdd/prompts/agentic_update_LLM.prompt +925 -0
- pdd/prompts/agentic_verify_explore_LLM.prompt +45 -0
- pdd/prompts/auto_include_LLM.prompt +122 -905
- pdd/prompts/change_LLM.prompt +3093 -1
- pdd/prompts/detect_change_LLM.prompt +686 -27
- pdd/prompts/example_generator_LLM.prompt +22 -1
- pdd/prompts/extract_code_LLM.prompt +5 -1
- pdd/prompts/extract_program_code_fix_LLM.prompt +7 -1
- pdd/prompts/extract_prompt_update_LLM.prompt +7 -8
- pdd/prompts/extract_promptline_LLM.prompt +17 -11
- pdd/prompts/find_verification_errors_LLM.prompt +6 -0
- pdd/prompts/fix_code_module_errors_LLM.prompt +12 -2
- pdd/prompts/fix_errors_from_unit_tests_LLM.prompt +9 -0
- pdd/prompts/fix_verification_errors_LLM.prompt +22 -0
- pdd/prompts/generate_test_LLM.prompt +41 -7
- pdd/prompts/generate_test_from_example_LLM.prompt +115 -0
- pdd/prompts/increase_tests_LLM.prompt +1 -5
- pdd/prompts/insert_includes_LLM.prompt +316 -186
- pdd/prompts/prompt_code_diff_LLM.prompt +119 -0
- pdd/prompts/prompt_diff_LLM.prompt +82 -0
- pdd/prompts/trace_LLM.prompt +25 -22
- pdd/prompts/unfinished_prompt_LLM.prompt +85 -1
- pdd/prompts/update_prompt_LLM.prompt +22 -1
- pdd/pytest_output.py +127 -12
- pdd/remote_session.py +876 -0
- pdd/render_mermaid.py +236 -0
- pdd/server/__init__.py +52 -0
- pdd/server/app.py +335 -0
- pdd/server/click_executor.py +587 -0
- pdd/server/executor.py +338 -0
- pdd/server/jobs.py +661 -0
- pdd/server/models.py +241 -0
- pdd/server/routes/__init__.py +31 -0
- pdd/server/routes/architecture.py +451 -0
- pdd/server/routes/auth.py +364 -0
- pdd/server/routes/commands.py +929 -0
- pdd/server/routes/config.py +42 -0
- pdd/server/routes/files.py +603 -0
- pdd/server/routes/prompts.py +1322 -0
- pdd/server/routes/websocket.py +473 -0
- pdd/server/security.py +243 -0
- pdd/server/terminal_spawner.py +209 -0
- pdd/server/token_counter.py +222 -0
- pdd/setup_tool.py +648 -0
- pdd/simple_math.py +2 -0
- pdd/split_main.py +3 -2
- pdd/summarize_directory.py +237 -195
- pdd/sync_animation.py +8 -4
- pdd/sync_determine_operation.py +839 -112
- pdd/sync_main.py +351 -57
- pdd/sync_orchestration.py +1400 -756
- pdd/sync_tui.py +848 -0
- pdd/template_expander.py +161 -0
- pdd/template_registry.py +264 -0
- pdd/templates/architecture/architecture_json.prompt +237 -0
- pdd/templates/generic/generate_prompt.prompt +174 -0
- pdd/trace.py +168 -12
- pdd/trace_main.py +4 -3
- pdd/track_cost.py +140 -63
- pdd/unfinished_prompt.py +51 -4
- pdd/update_main.py +567 -67
- pdd/update_model_costs.py +2 -2
- pdd/update_prompt.py +19 -4
- {pdd_cli-0.0.45.dist-info → pdd_cli-0.0.118.dist-info}/METADATA +29 -11
- pdd_cli-0.0.118.dist-info/RECORD +227 -0
- {pdd_cli-0.0.45.dist-info → pdd_cli-0.0.118.dist-info}/licenses/LICENSE +1 -1
- pdd_cli-0.0.45.dist-info/RECORD +0 -116
- {pdd_cli-0.0.45.dist-info → pdd_cli-0.0.118.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.45.dist-info → pdd_cli-0.0.118.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.45.dist-info → pdd_cli-0.0.118.dist-info}/top_level.txt +0 -0
pdd/update_model_costs.py
CHANGED
|
@@ -404,8 +404,8 @@ def main():
|
|
|
404
404
|
parser.add_argument(
|
|
405
405
|
"--csv-path",
|
|
406
406
|
type=str,
|
|
407
|
-
default="
|
|
408
|
-
help="Path to the llm_model.csv file (default:
|
|
407
|
+
default=".pdd/llm_model.csv",
|
|
408
|
+
help="Path to the llm_model.csv file (default: .pdd/llm_model.csv)"
|
|
409
409
|
)
|
|
410
410
|
args = parser.parse_args()
|
|
411
411
|
|
pdd/update_prompt.py
CHANGED
|
@@ -7,7 +7,10 @@ from .preprocess import preprocess
|
|
|
7
7
|
from .llm_invoke import llm_invoke
|
|
8
8
|
from . import DEFAULT_TIME
|
|
9
9
|
class PromptUpdate(BaseModel):
|
|
10
|
-
modified_prompt: str = Field(
|
|
10
|
+
modified_prompt: str = Field(
|
|
11
|
+
description="The updated prompt that will generate the modified code",
|
|
12
|
+
min_length=10 # Reject empty or too-short prompts from LLM
|
|
13
|
+
)
|
|
11
14
|
|
|
12
15
|
def update_prompt(
|
|
13
16
|
input_prompt: str,
|
|
@@ -40,9 +43,13 @@ def update_prompt(
|
|
|
40
43
|
console = Console()
|
|
41
44
|
|
|
42
45
|
# Input validation
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
+
is_new_prompt_generation = (input_prompt.strip() == "no prompt exists yet, create a new one")
|
|
47
|
+
|
|
48
|
+
if not is_new_prompt_generation:
|
|
49
|
+
# For updating an existing prompt, input_code must be non-empty.
|
|
50
|
+
if not input_code.strip():
|
|
51
|
+
raise ValueError("For updating an existing prompt, input_code must be non-empty.")
|
|
52
|
+
|
|
46
53
|
if not (0 <= strength <= 1 and 0 <= temperature <= 1):
|
|
47
54
|
raise ValueError("Strength and temperature must be between 0 and 1")
|
|
48
55
|
|
|
@@ -94,6 +101,14 @@ def update_prompt(
|
|
|
94
101
|
if not second_response or not isinstance(second_response, dict) or 'result' not in second_response:
|
|
95
102
|
raise RuntimeError("Second LLM invocation failed")
|
|
96
103
|
|
|
104
|
+
# Validate that modified_prompt is not empty or whitespace-only
|
|
105
|
+
modified_prompt_text = second_response['result'].modified_prompt
|
|
106
|
+
if not modified_prompt_text or not modified_prompt_text.strip():
|
|
107
|
+
raise RuntimeError(
|
|
108
|
+
"LLM returned an empty modified prompt. The extraction may have failed. "
|
|
109
|
+
"Try running with --verbose to see the first LLM's output."
|
|
110
|
+
)
|
|
111
|
+
|
|
97
112
|
# Step 4: Print modified prompt if verbose
|
|
98
113
|
if verbose:
|
|
99
114
|
console.print("\n[bold green]Modified Prompt:[/bold green]")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pdd-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.118
|
|
4
4
|
Summary: PDD (Prompt-Driven Development) Command Line Interface
|
|
5
5
|
Author: Greg Tanaka
|
|
6
6
|
Author-email: glt@alumni.caltech.edu
|
|
@@ -23,30 +23,48 @@ Requires-Dist: GitPython==3.1.44
|
|
|
23
23
|
Requires-Dist: Requests==2.32.3
|
|
24
24
|
Requires-Dist: aiofiles==24.1.0
|
|
25
25
|
Requires-Dist: click==8.1.7
|
|
26
|
-
Requires-Dist: firecrawl-py
|
|
26
|
+
Requires-Dist: firecrawl-py==2.5.3
|
|
27
27
|
Requires-Dist: firebase_admin==6.6.0
|
|
28
28
|
Requires-Dist: keyring==25.6.0
|
|
29
|
-
Requires-Dist: langchain_core==0.3.56
|
|
30
29
|
Requires-Dist: nest_asyncio==1.6.0
|
|
31
30
|
Requires-Dist: pandas==2.2.3
|
|
32
|
-
Requires-Dist: psutil
|
|
33
|
-
Requires-Dist: pydantic==2.11.
|
|
34
|
-
Requires-Dist: litellm
|
|
31
|
+
Requires-Dist: psutil>=7.0.0
|
|
32
|
+
Requires-Dist: pydantic==2.11.4
|
|
33
|
+
Requires-Dist: litellm[caching]>=1.80.0
|
|
34
|
+
Requires-Dist: lxml>=5.0.0
|
|
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
|
+
Requires-Dist: pytest==8.3.5
|
|
39
|
+
Requires-Dist: pytest-cov==5.0.0
|
|
39
40
|
Requires-Dist: boto3==1.35.99
|
|
40
|
-
Requires-Dist:
|
|
41
|
+
Requires-Dist: google-cloud-aiplatform>=1.3
|
|
42
|
+
Requires-Dist: openai>=1.99.5
|
|
43
|
+
Requires-Dist: pillow-heif==1.1.1
|
|
44
|
+
Requires-Dist: Pillow==12.0.0
|
|
45
|
+
Requires-Dist: textual
|
|
46
|
+
Requires-Dist: python-dotenv==1.1.0
|
|
47
|
+
Requires-Dist: PyYAML==6.0.1
|
|
48
|
+
Requires-Dist: jsonschema==4.23.0
|
|
49
|
+
Requires-Dist: z3-solver==4.14.1.0
|
|
50
|
+
Requires-Dist: fastapi>=0.115.0
|
|
51
|
+
Requires-Dist: uvicorn[standard]>=0.32.0
|
|
52
|
+
Requires-Dist: websockets>=13.0
|
|
53
|
+
Requires-Dist: watchdog>=4.0.0
|
|
54
|
+
Requires-Dist: tiktoken>=0.7.0
|
|
41
55
|
Provides-Extra: dev
|
|
42
56
|
Requires-Dist: commitizen; extra == "dev"
|
|
43
57
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
58
|
+
Requires-Dist: pytest-testmon; extra == "dev"
|
|
59
|
+
Requires-Dist: pytest-xdist; extra == "dev"
|
|
44
60
|
Requires-Dist: pytest-mock; extra == "dev"
|
|
45
61
|
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
46
|
-
Requires-Dist:
|
|
62
|
+
Requires-Dist: build; extra == "dev"
|
|
63
|
+
Requires-Dist: twine; extra == "dev"
|
|
64
|
+
Requires-Dist: httpx==0.28.1; extra == "dev"
|
|
47
65
|
Dynamic: license-file
|
|
48
66
|
|
|
49
|
-
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.
|
|
67
|
+
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.118-blue
|
|
50
68
|
:alt: PDD-CLI Version
|
|
51
69
|
|
|
52
70
|
.. image:: https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord&logoColor=white&link=https://discord.gg/Yp4RTh8bG7
|
|
@@ -123,7 +141,7 @@ After installation, verify:
|
|
|
123
141
|
|
|
124
142
|
pdd --version
|
|
125
143
|
|
|
126
|
-
You'll see the current PDD version (e.g., 0.0.
|
|
144
|
+
You'll see the current PDD version (e.g., 0.0.118).
|
|
127
145
|
|
|
128
146
|
Getting Started with Examples
|
|
129
147
|
-----------------------------
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
pdd/__init__.py,sha256=b4-LQ8M8-GunClwSNK3e2ylVg3JSiuBWMjkqK7fTlOw,1893
|
|
2
|
+
pdd/agentic_bug.py,sha256=ujaV29jbfMrD8BAcGcQUrkSLG5jCW-oPBk_Aw3LPMYU,11004
|
|
3
|
+
pdd/agentic_bug_orchestrator.py,sha256=0zIBrlvMyz5AW7EnDVeF_Wil89XhpAUwxebThVm8aCI,18808
|
|
4
|
+
pdd/agentic_change.py,sha256=9Ydq6l-yDKhRJGiwcy6LbTRKGxyagnsRpmlE8auQ2io,7307
|
|
5
|
+
pdd/agentic_change_orchestrator.py,sha256=7dDpaYCA0n3pfvU2zlNgz240BxxyFS9LaoXiZlcDFGY,20808
|
|
6
|
+
pdd/agentic_common.py,sha256=1ccBQQkrxQB-SreJyGMhl3zrdi3m-9djG_dTgmqXmPY,18940
|
|
7
|
+
pdd/agentic_crash.py,sha256=kmpcvf0Yi8tutWq8fcXZAT0CC1_Fga1F_IApJKhmLGo,17710
|
|
8
|
+
pdd/agentic_e2e_fix.py,sha256=LS30pp4pGN-6MkpEVGnkHLGVpGWLcRvGdVFrgLUwkNE,10815
|
|
9
|
+
pdd/agentic_e2e_fix_orchestrator.py,sha256=Wn6j5ur1bHzwC5YhNUpiFM_71sR2HS06Mfr2IWWRxWI,17151
|
|
10
|
+
pdd/agentic_fix.py,sha256=w9WKoxCeaH78NpA6B6zCwS_fpRtF3jyadqFfiu4_row,53288
|
|
11
|
+
pdd/agentic_langtest.py,sha256=BOiyIJTOf7lBEZscG9e0XSu4Sp7NiMGgkquATcw7eMc,6326
|
|
12
|
+
pdd/agentic_update.py,sha256=8FbZi__4y6l4Smn3S6P4NOQvbdfOxyb6YJtwLr3j5LY,13392
|
|
13
|
+
pdd/agentic_verify.py,sha256=o86BgoXLnDo1p9N1sKH4Vu7bieRI5W51cMNfnMXW3e0,6412
|
|
14
|
+
pdd/architecture_sync.py,sha256=MBSwyajOn50RcBAKBLZNx4133UHTPMwxvv7w1DcIDJg,19061
|
|
15
|
+
pdd/auth_service.py,sha256=kup_TkldSAkfXofJ_-UPqMQiFIopCATgz-iYkrFBQRg,5999
|
|
16
|
+
pdd/auto_deps_main.py,sha256=AHuAQFvO6Xn8e1vVwiW5VUIvE4H6cSbjmIv3UU5x62Y,5017
|
|
17
|
+
pdd/auto_include.py,sha256=UgvWV0ZbwSjWkgn9tl9LpayXXPnSFcRzbDR8rjFgeOk,16745
|
|
18
|
+
pdd/auto_update.py,sha256=CUXEipFsJ4NwHFqsjafi8DPEosCTnxy5baswvbOerbo,8310
|
|
19
|
+
pdd/bug_main.py,sha256=-mSQmjj89MAucYqNur9pjOgp2ZnIp2IgpQrZPp0SDas,13267
|
|
20
|
+
pdd/bug_to_unit_test.py,sha256=BoQqNyKQpBQDW8-JwBH_RX4RHRSiU8Kk3EplFrkECt0,6665
|
|
21
|
+
pdd/change.py,sha256=Hg_x0pa370-e6oDiczaTgFAy3Am9ReCPkqFrvqv4U38,6114
|
|
22
|
+
pdd/change_main.py,sha256=RytUc4bZKYY3QjqKCEwJPpIJv47C_U3F-QBJAzJVLgs,28101
|
|
23
|
+
pdd/cli.py,sha256=N3OvJ2yfTpUvrSjVGICVD7-ekHtgFLTVbudrhuUv-dA,1480
|
|
24
|
+
pdd/cmd_test_main.py,sha256=u1GE3phYWgJPN75xreuBLlNiNmH5oUzekQO2-hFYR1s,15114
|
|
25
|
+
pdd/code_generator.py,sha256=JiV5xHaMWO5yjfBEpRREZ_rZdSzaClybDHZaImHIn7Y,6444
|
|
26
|
+
pdd/code_generator_main.py,sha256=fIgLdXhRfvkxUT_v8Ljw8wS7KZK68ewMYKK583yGr5I,65763
|
|
27
|
+
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
28
|
+
pdd/config_resolution.py,sha256=DjWTDA7nFexH5E2hztPEFJdy0aboa8ImNBMj4czPeiM,2166
|
|
29
|
+
pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
|
|
30
|
+
pdd/conflicts_main.py,sha256=SgIuU8d9S8GqP0EefloA82Tutu89n5dhcfPCtpf4Pcg,3874
|
|
31
|
+
pdd/construct_paths.py,sha256=_TzpsYYRi2WCdvSuUBFcugznzfM3sGDQAaXb5aoPPfk,52469
|
|
32
|
+
pdd/context_generator.py,sha256=-XLi4s50RLfT0YarRUC4ytT2bdDZfTffAMWPMqnj42k,6377
|
|
33
|
+
pdd/context_generator_main.py,sha256=-vHPOybHZ_9rm-S6Emvgda4AQFbcv-AW3BpPvUpAXOE,10004
|
|
34
|
+
pdd/continue_generation.py,sha256=hrSgLfPfhlE9FKImbbHG-0K9uEatKAIXU5XqlvfydXs,7962
|
|
35
|
+
pdd/crash_main.py,sha256=5SXzkaaLaZIUY51ncEqaGlC1iu4G-YxvHyEw9wu__U4,20170
|
|
36
|
+
pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
|
|
37
|
+
pdd/detect_change_main.py,sha256=aEehiFlKAfqegW6e18gVMKxbcSQpV9gqLpyX7Bl7Chw,3863
|
|
38
|
+
pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
|
|
39
|
+
pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
|
|
40
|
+
pdd/fix_code_loop.py,sha256=1hWPKJmVwsEFA0cbcgChyJL0yAMQ7Cw2_TdXpO1Y82o,40526
|
|
41
|
+
pdd/fix_code_module_errors.py,sha256=zbWxaBzAYp9r0owZvlN46aAFKA1gZyOjZqX6vCEz7Yk,5579
|
|
42
|
+
pdd/fix_error_loop.py,sha256=g3lCi737o69Z6aUp9zJnNDCnG9Zx5JdAJPgcHfv_JzI,43300
|
|
43
|
+
pdd/fix_errors_from_unit_tests.py,sha256=00vanOVvZ8KUvQMaUtAoComjZNwiyrXd3bvi8iCUCXk,9577
|
|
44
|
+
pdd/fix_main.py,sha256=XW3pnoDHqD0Zjgwzg2BrxgxV6hIY41702si25L9jxmo,27932
|
|
45
|
+
pdd/fix_verification_errors.py,sha256=oT0edNBj4CTd1kaE0vdnWjyB6el1tECh0sIOZ8O1AmQ,11583
|
|
46
|
+
pdd/fix_verification_errors_loop.py,sha256=9R_hEHWf4PWAUFdP5rZl0fzdDH9d3jjvprf9vhhnpnY,68169
|
|
47
|
+
pdd/fix_verification_main.py,sha256=Q9OP-ToZ1Qv4nsRICDJQ0_NtF4hO4fs-w2j0Kxr6xPo,35790
|
|
48
|
+
pdd/generate_output_paths.py,sha256=mY4VWya4-4o6z6MYePqaGi9KnAAeaqeY6OU5mFb6cIw,31234
|
|
49
|
+
pdd/generate_test.py,sha256=PawBgvRZ-SaDqUtuh3slbUXb63OGPVKpkDcX0_MifB4,9294
|
|
50
|
+
pdd/get_comment.py,sha256=U-cP4-T3umN_fHVNladR4Gh1TrBtJlselWNjScEYqIM,808
|
|
51
|
+
pdd/get_extension.py,sha256=T5q0WZlEyPrxT7Bg-DoLZ0XR0JazV940shw7NKhEgNc,2693
|
|
52
|
+
pdd/get_jwt_token.py,sha256=NjYfznNvQ9u48dxPAEbAxCnYkLrq2Zg79MJbGrkxHlA,22812
|
|
53
|
+
pdd/get_language.py,sha256=ZQBK3UDJM2XBy9cFpu8k1b2m9wFsOmd0myXmESLFDOc,1506
|
|
54
|
+
pdd/get_run_command.py,sha256=Xux3iiNKvErOQWbXGmj25J8bgUkZYoZ96B9hvogqUxk,2348
|
|
55
|
+
pdd/get_test_command.py,sha256=2Ijf6LgJdrZ_xG6am_7uVQaz0ocFZLCFqxiP-VZmC34,2049
|
|
56
|
+
pdd/git_update.py,sha256=yoEJJfgLhVlsDx-EtKfAUv8ZqFMNJO1piXMEZ98qPxc,4994
|
|
57
|
+
pdd/increase_tests.py,sha256=68cM9d1CpaLLm2ISFpJw39xbRjsfwxwS06yAwRoUCHk,4433
|
|
58
|
+
pdd/incremental_code_generator.py,sha256=RoaJDavR0A5ybXc8Pvqe7Hwwhz9gHbP_kmGQXn3XveQ,9425
|
|
59
|
+
pdd/insert_includes.py,sha256=wPRYeWl2IxMNtqsANeeUdZo3CR4h2bo8-d5nYWsnGg0,6104
|
|
60
|
+
pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
|
|
61
|
+
pdd/llm_invoke.py,sha256=5pZyHOA18nScOdxZCit4GyJ4hFxWWEhZV2Q-2zFTDwM,147589
|
|
62
|
+
pdd/load_prompt_template.py,sha256=A4CwhRCu4G1OPisZK-ZkdafjqTWGshxvxPm-czi7Als,2287
|
|
63
|
+
pdd/logo_animation.py,sha256=n6HJWzuFze2csAAW2-zbxfjvWFYRI4hIdwVBtHBOkj4,20782
|
|
64
|
+
pdd/mcp_config.json,sha256=D3ctWHlShvltbtH37zbYb6smVE0V80_lGjDKDIqsSBE,124
|
|
65
|
+
pdd/path_resolution.py,sha256=TFEzlc2W_x_jwBwB5uTC3jYXMy9v-HyDkQg_DCbUHXU,4180
|
|
66
|
+
pdd/pdd_completion.fish,sha256=pfEyBWzFp3matC_SW2BTDNaBJybYKUEi3YpPE-D6AKU,13776
|
|
67
|
+
pdd/pdd_completion.sh,sha256=xgx-g6aeCCrlh6loeLyJN5jCsX15YXrWyT1U499p3C0,6490
|
|
68
|
+
pdd/pdd_completion.zsh,sha256=V9-V8jqw3osjlXNOvjYMJf0E771-_EQe-Cboo1xzPvY,17090
|
|
69
|
+
pdd/postprocess.py,sha256=BU2xaWLGWHb2Wpea4X5BL3oUQmiKHCBzKD1yoSmjfis,5061
|
|
70
|
+
pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
|
|
71
|
+
pdd/preprocess.py,sha256=4y6HYQPBC6IE66aPWg_Gjyg4dUWbqKQLAQ_qKuP8Y48,22388
|
|
72
|
+
pdd/preprocess_main.py,sha256=apW_L_s4iaI_UwVV90VhlCe4PvJDijd84kc7Hrx5tlY,4889
|
|
73
|
+
pdd/process_csv_change.py,sha256=ckNqVPRooWVyIvmqjdEgo2PDLnpoQ6Taa2dUaWGRlzU,27926
|
|
74
|
+
pdd/pytest_output.py,sha256=UPnGZDbUCLZGEWcA2WvYRdgPegUjY25NHgK9ppFjFBg,10638
|
|
75
|
+
pdd/python_env_detector.py,sha256=y-QESoPNiKaD821uz8okX-9qA-oqvH9cQHY2_MwFHzU,5194
|
|
76
|
+
pdd/remote_session.py,sha256=xuWq_4GmnUnsgCZCDXot8cb52XxSXg9oF2LYOnhQd5E,33785
|
|
77
|
+
pdd/render_mermaid.py,sha256=nvFO_Wl5MpYIiF3yMpToF8ePerHsr3c9WV745u-Y3X8,9050
|
|
78
|
+
pdd/setup_tool.py,sha256=xKut3G4iIfLBIudix-O71Q9CCtS1GeC8O4uGV_Qjscc,24135
|
|
79
|
+
pdd/simple_math.py,sha256=j3WmhkbIef0M_1wCcIwBD7HAHWfvmTDU5BkQb-t4l6o,31
|
|
80
|
+
pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
|
|
81
|
+
pdd/split_main.py,sha256=52rcZoeS_wpYRiqbqMUgr_hUY7GS62otwzDfuAGi6YA,4845
|
|
82
|
+
pdd/summarize_directory.py,sha256=TDihusV04mJiHV8X4-IFSs2LhTKlGiMGM7gQkXl4zA4,10036
|
|
83
|
+
pdd/sync_animation.py,sha256=5gFg8G8PKMtJLkScOV98OADyQhLMnw6rJf0pqZxAiQY,28274
|
|
84
|
+
pdd/sync_determine_operation.py,sha256=dlBu5Qf8aJ22h2VLQ-sfJAvxw2DqpLp2im0SW58PhAY,89907
|
|
85
|
+
pdd/sync_main.py,sha256=YFIeRO5Jp39VX1GXx-bRoggFRKhK6PVT0qPNn0Iq64Q,27062
|
|
86
|
+
pdd/sync_orchestration.py,sha256=n3OhCc5_aQdTukUunyb60QAf5kNDdGsfJaSkEPklC1s,85089
|
|
87
|
+
pdd/sync_tui.py,sha256=gponSnFNHMO9uTRsmJnL5McCgLbeGeAa34d379STthI,29300
|
|
88
|
+
pdd/template_expander.py,sha256=vKpnDzNLn6dyaqhZBucBJa0s1LfntiqOOfi90GyXXts,4842
|
|
89
|
+
pdd/template_registry.py,sha256=L8ZQ-apmdDe7Jj_JlgHv7fUoIiJnGDuE0V64Y-MO9vA,8099
|
|
90
|
+
pdd/trace.py,sha256=n_h5gS8d7ywUmVuTmjtlQVkO5op_YrJeVwZKx9ZC-8s,12233
|
|
91
|
+
pdd/trace_main.py,sha256=SOnMEHta9WaMAxulMrk6aFojma4ti61ILvJp3NVhpbg,4992
|
|
92
|
+
pdd/track_cost.py,sha256=r1AA0rTm4FR3vdn7TrwNGHnE7MaFqhIlQcgGFIL9gsA,7669
|
|
93
|
+
pdd/unfinished_prompt.py,sha256=vrzJ5q9VHQChaLLeCXMLCP0QsfWNt1cFnVOhFEN12iU,6333
|
|
94
|
+
pdd/update_main.py,sha256=1iivSF3JjSE6bRRjIHB6JsDKRZ6zl6HYbhBH6WivI2E,25839
|
|
95
|
+
pdd/update_model_costs.py,sha256=RfeOlAHtc1FCx47A7CjrH2t5WXQclQ_9uYtNjtQh75I,22998
|
|
96
|
+
pdd/update_prompt.py,sha256=K1i9BIpb3ioFGM32WcqueAuKqzLlezsPsvcovOagOhI,5239
|
|
97
|
+
pdd/xml_tagger.py,sha256=5Bc3HRm7iz_XjBdzQIcMb8KocUQ8PELI2NN5Gw4amd4,4825
|
|
98
|
+
pdd/commands/__init__.py,sha256=5ID0Erk2chGBWPE7f_6vJy3-YE_Fc991DEfU4m8QZSc,1617
|
|
99
|
+
pdd/commands/analysis.py,sha256=PM-5lt9kMG6JZ5Z69wOEm2RaDzcHrv9hn6XxCcKXkos,9613
|
|
100
|
+
pdd/commands/auth.py,sha256=tGULnVN6a7x4rMtVCGUnvcEivRsvYUg4jQS3Koezw1Q,10170
|
|
101
|
+
pdd/commands/connect.py,sha256=dWsNV_Nek4hXZMBzC1BJ0-CMet7r6jknaxx2rZxQ09k,10437
|
|
102
|
+
pdd/commands/fix.py,sha256=8r4Iudon9kE7DMKIuh9fN4FwV_5nMe9UZbsYIg2BvYo,6964
|
|
103
|
+
pdd/commands/generate.py,sha256=RkKvIFqpYmZeJzCgAMGF6abK7CR85g-m_SIXO5lgOyQ,8686
|
|
104
|
+
pdd/commands/maintenance.py,sha256=DgAI_nQttdNkSaD9W0mJDtizevy6mKRMkfjlgJwwMes,5025
|
|
105
|
+
pdd/commands/misc.py,sha256=i9GK0wto-3oleB0tSwcsHipl9Shs2vEZ40-pUrdX0S4,2574
|
|
106
|
+
pdd/commands/modify.py,sha256=bTCvX_duAdQWxDe0RSeG4jMpyXV5dKxwm5iNiaXZTnE,9370
|
|
107
|
+
pdd/commands/report.py,sha256=E9CCbbux_MP5oGu18M_XQBVaQhYCMsQOUn9KQPEBiSU,5868
|
|
108
|
+
pdd/commands/sessions.py,sha256=G7SAS6LfaGBM0QZLAF4DumqLEcVRIby0llDFKadS_Qo,10388
|
|
109
|
+
pdd/commands/templates.py,sha256=pJicUZww2U5nOcQw_tuQK3OQwYK3NRRc81SZ5YLkt_E,8957
|
|
110
|
+
pdd/commands/utility.py,sha256=tz9vmYZAvMVRIGUKd2B5808ggOO9i-4Kk3QykRU8j08,3677
|
|
111
|
+
pdd/core/__init__.py,sha256=m5ywJMVb2PhmHbxC1KMA-TYP7Am4Z1rv_DihgOZRCu0,619
|
|
112
|
+
pdd/core/cli.py,sha256=sgRYlTulRJcCd9kCeqxRWf6pvjdtpw3SjLxSv9Cdb2Q,21636
|
|
113
|
+
pdd/core/cloud.py,sha256=WvaGYwGVw41tClAHc1PyJXDN6xIfRowvBL-Z7JQtFKw,8289
|
|
114
|
+
pdd/core/dump.py,sha256=AEwRIaVuWn5Aegov9PNSQ9BQfjrVBl1npohce29XKsY,20419
|
|
115
|
+
pdd/core/errors.py,sha256=CVI1h7p5K9lRTuw-BYxyGfH68NJ8-ZBGqW-KxD-_6MA,2641
|
|
116
|
+
pdd/core/remote_session.py,sha256=V46Y9jzKzUmvQbfRejFGCi7t_9hkjp_K78VPwX0NP_s,2163
|
|
117
|
+
pdd/core/utils.py,sha256=e2y-S6OcDbjJw1vdGWwNTDlICPyYy9H-5yfj5nPaAw8,2524
|
|
118
|
+
pdd/data/language_format.csv,sha256=X_vifnKBod8aeyzht94pdDpZWChkxT3Hu1G2cA_tTy8,1844
|
|
119
|
+
pdd/data/llm_model.csv,sha256=n42HslQzEGAjuyio_xpkQCAq7hcN5mumsfOhEcEYvME,1813
|
|
120
|
+
pdd/docs/prompting_guide.md,sha256=DY5VyJZCYIZ1NAvgjOaCx3Bv_hWo4krW4prwYivaUh0,39525
|
|
121
|
+
pdd/docs/whitepaper_with_benchmarks/data_and_functions/benchmark_analysis.py,sha256=IwvFLrgGLmx3ajF-Z_eQaRowCzyJk_cQxD3wxMkfZQU,23406
|
|
122
|
+
pdd/docs/whitepaper_with_benchmarks/data_and_functions/creation_compare.py,sha256=0sEVBjJ0yHQWzh4NbbJPmpsIB2iyJlvwU0uRnV12fDE,26558
|
|
123
|
+
pdd/frontend/dist/index.html,sha256=4eVXmbzspE-BXXw4BfF4AqC7VzRLAnkL9EoerHFE-co,11856
|
|
124
|
+
pdd/frontend/dist/logo.svg,sha256=7pD_n_dgwPjM2iPBpj2rfPJ9fg1gfebAWOO4PCpum1U,797
|
|
125
|
+
pdd/frontend/dist/assets/index-B5DZHykP.css,sha256=HLO_vKmG5ANNQg2BEeOD8KYUvV8sL3rH0i2S1Cwe4T0,7322
|
|
126
|
+
pdd/frontend/dist/assets/index-DQ3wkeQ2.js,sha256=M9tu7dNTwoZChtVzic8L8gtKwiJhglfxn_Qjr6OSjws,1598213
|
|
127
|
+
pdd/prompts/agentic_bug_step10_pr_LLM.prompt,sha256=NlkzPKoOwy2aMvu36ZyBKkhYf-Ww5EzhAPmmUsP_6PI,5478
|
|
128
|
+
pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt,sha256=UQnvHbMF-aN35Pgs2-Eu9VnZdwZmrUpJlkg4bJ4PuEk,2259
|
|
129
|
+
pdd/prompts/agentic_bug_step2_docs_LLM.prompt,sha256=rFyXFFm9o4BFJDlAcP0iDBRZdDKJI9bCcPoLZ6ZKalk,4110
|
|
130
|
+
pdd/prompts/agentic_bug_step3_triage_LLM.prompt,sha256=oXeNBtAmfcdhQ6jCSNP7OSXiMFxIPBpwee67hudcPIg,2323
|
|
131
|
+
pdd/prompts/agentic_bug_step4_reproduce_LLM.prompt,sha256=a7Vcs79WqWr9dBZcRA-1BMtVArcJ1gKLqz7czp_cZQo,2586
|
|
132
|
+
pdd/prompts/agentic_bug_step5_root_cause_LLM.prompt,sha256=HF82G_PDMsA5ydhSjjEMfWnvq44NAIN7-1zyWUg2mMA,3724
|
|
133
|
+
pdd/prompts/agentic_bug_step6_test_plan_LLM.prompt,sha256=u10D6__MZX3PWfs3cAOo_uK6A4-zx7Qao3s3LoH8DdU,2758
|
|
134
|
+
pdd/prompts/agentic_bug_step7_generate_LLM.prompt,sha256=SGCh-Np4a9A2eljMYanX1EzyNTBZEWA93eRNyglpfUE,5425
|
|
135
|
+
pdd/prompts/agentic_bug_step8_verify_LLM.prompt,sha256=iV5q88rdQhMeqI2H6mM6I9ye5a-aCCH8j3xYdoBadDM,2852
|
|
136
|
+
pdd/prompts/agentic_bug_step9_e2e_test_LLM.prompt,sha256=zcZTESxyOFg_Ze7ulSf3tIyuUocMAvNwljheslMkEnA,10507
|
|
137
|
+
pdd/prompts/agentic_change_step10_identify_issues_LLM.prompt,sha256=pzl3-TUy4jC2CaQj9ks-We9ULS09GmORHSrXENXq2dQ,4216
|
|
138
|
+
pdd/prompts/agentic_change_step11_fix_issues_LLM.prompt,sha256=ou6S1IO7dNZoeTtylpq7VJ5P5_ce7kmtuWR95puvBOI,3226
|
|
139
|
+
pdd/prompts/agentic_change_step12_create_pr_LLM.prompt,sha256=dTQpf5iNdvI1hSx_AKcBlGxI63-Pn7kHtxt5AJR-eGY,3069
|
|
140
|
+
pdd/prompts/agentic_change_step1_duplicate_LLM.prompt,sha256=22ylrCC1EViSznnjTrRi7n0as-bFarguEPsgiE8K9ow,2305
|
|
141
|
+
pdd/prompts/agentic_change_step2_docs_LLM.prompt,sha256=fnWGYxz6seWzOtU3SIJsawf_iMP6TX0dkGu_G2vDC_A,3048
|
|
142
|
+
pdd/prompts/agentic_change_step3_research_LLM.prompt,sha256=MPH0Mt7V1Hmlaa1JU3CK3mCLQ-EmpuYgQJGEwv5mh_A,3771
|
|
143
|
+
pdd/prompts/agentic_change_step4_clarify_LLM.prompt,sha256=vQkwmGsWphnlPfKg0zYLmNXoyImIZ5LNp8v6OB7Vixg,5151
|
|
144
|
+
pdd/prompts/agentic_change_step5_docs_change_LLM.prompt,sha256=BgQA117k-ZFtrIC732aygFnIUt1QEQlTFzem91zbVW0,3058
|
|
145
|
+
pdd/prompts/agentic_change_step6_devunits_LLM.prompt,sha256=FL1ISdtxqd1G9_cb3UbIp7SwetKRkTQ6kaazMCatvNQ,3977
|
|
146
|
+
pdd/prompts/agentic_change_step7_architecture_LLM.prompt,sha256=UYEkz3bJi4c4suuLJeZYqvGpl24GT9G5Ovya4pc4KF4,5461
|
|
147
|
+
pdd/prompts/agentic_change_step8_analyze_LLM.prompt,sha256=bQJlGpg6cNIxtQduJX9imKvZQQTgbQoet7kKkN7hGis,4202
|
|
148
|
+
pdd/prompts/agentic_change_step9_implement_LLM.prompt,sha256=x3qWu_BJiXwF-8-766HfVfFxG8NcAxvKPmNnuP97D_g,5688
|
|
149
|
+
pdd/prompts/agentic_crash_explore_LLM.prompt,sha256=nlNO-LSHIbECO82j25CR8xe8IKKMFeidOkpRvW8Vn8w,1993
|
|
150
|
+
pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt,sha256=mREKobyUbVggw1pmG7e1JAr9f4tdkYLsLpXlXqTdHzQ,2936
|
|
151
|
+
pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt,sha256=8qacgiw-ZJPQLQR_gNHERKOiY7zuDM3MzbySP9_VU58,2390
|
|
152
|
+
pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt,sha256=6177oE0EgkBh28rzIdKwsBgnyC-Vzn6kaTIlvuCiWO0,2506
|
|
153
|
+
pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt,sha256=2a8cmGDvEIwkqfWLmZGgXT1NfhxdpNJDkFHx_v75NUE,2480
|
|
154
|
+
pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt,sha256=2v-wRFS5DojAvSXYoKPeSPQcUxmUOiHOcObp0sHVwV4,2479
|
|
155
|
+
pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt,sha256=KNdgB0SuCxpbvYA5vy7TMKHXf6Ykc1fhNm-7UxP2eok,2614
|
|
156
|
+
pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt,sha256=QxtlJFEU_8YQGOWy_yBqObcGAI7ld4fHFGXqqw2uIoo,2823
|
|
157
|
+
pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt,sha256=619s76FUJ9yaNFm6Zhv-8jCvrGka-IADUo0ICJIBhMg,3147
|
|
158
|
+
pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt,sha256=wxNbDrxQILxK9PiuiktcKJEo0Ix-IKbC4AsU166YjpI,3147
|
|
159
|
+
pdd/prompts/agentic_fix_explore_LLM.prompt,sha256=2K43Bg4JTCFwXuhqFZqR9hRkfPegtjAWsLON414uLUM,1901
|
|
160
|
+
pdd/prompts/agentic_fix_harvest_only_LLM.prompt,sha256=9dCB-Kqy221s47XRpCwIO_EzVHwWKSBYyFgwVfQb4ZQ,2316
|
|
161
|
+
pdd/prompts/agentic_fix_primary_LLM.prompt,sha256=wZpUrVUw8TxDr6hhLgCRqx7LLO_kBGIxUKiPVMXBSDg,3309
|
|
162
|
+
pdd/prompts/agentic_update_LLM.prompt,sha256=pUe3h7WLZXGpuTNof8dHfZhq3vTO6rmZq2Z_yLpPXG4,2735
|
|
163
|
+
pdd/prompts/agentic_verify_explore_LLM.prompt,sha256=wC9TqpsAP0rNnyz_CczPFmmT4P_iGgEsqg_fUqyNEFw,1953
|
|
164
|
+
pdd/prompts/auto_include_LLM.prompt,sha256=ds9ntQBDaMttPSb0Hb_YrEJDgx7CFU1yvo3J4ry0xcM,15956
|
|
165
|
+
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=KdMkvRVnjVSf0NTYIaDXIMT93xPttXEwkMpjWx5leLs,1588
|
|
166
|
+
pdd/prompts/change_LLM.prompt,sha256=5rgWIL16p3VRURd2_lNtcbu_MVRqPhI8gFIBt1gkzDQ,2164
|
|
167
|
+
pdd/prompts/code_patcher_LLM.prompt,sha256=yeV4lsRuPQzNdKRV_LQUOmmWh2yhu8YgKXUWo4bge4I,2392
|
|
168
|
+
pdd/prompts/conflict_LLM.prompt,sha256=46DB_qOCtsfVsj6y8E8grI0izxAk_-ixoENUUHQAkHc,1593
|
|
169
|
+
pdd/prompts/continue_generation_LLM.prompt,sha256=Jsd3eeu23heqw2frfOLzZ5c9dn0QZrfWGratfyWV-ac,111
|
|
170
|
+
pdd/prompts/detect_change_LLM.prompt,sha256=-q8VqXAv6ufEE193DNbTcgpbxiKISR5-5j3M0TTqa8s,4522
|
|
171
|
+
pdd/prompts/diff_analyzer_LLM.prompt,sha256=2lZI4g4DO9NwMPnxVJW717dGG5LQuBXqgeIjYfplEdU,2901
|
|
172
|
+
pdd/prompts/example_generator_LLM.prompt,sha256=aF1ZDTKcvYaAYQFZFy7OVh6w45cgw5Oo17WTQf37hXE,2466
|
|
173
|
+
pdd/prompts/extract_auto_include_LLM.prompt,sha256=BamIIt8qrML2ZtNe3D4K30iMobJ4URtkyomHCDaf0iw,313
|
|
174
|
+
pdd/prompts/extract_code_LLM.prompt,sha256=7Tb5lGETfgGDgb0hFNn5-10K3Mlx2FKVg0lIqJe1RDI,2960
|
|
175
|
+
pdd/prompts/extract_conflict_LLM.prompt,sha256=V_xXdU7V4IZK9SVFxJtXKRn_wFkP3zp4FJrxeNM9XYc,1023
|
|
176
|
+
pdd/prompts/extract_detect_change_LLM.prompt,sha256=2HXSb9bGjHZsKrUGvfBdBAAcGBCrQ2AxC8vUJRAfB1U,1003
|
|
177
|
+
pdd/prompts/extract_program_code_fix_LLM.prompt,sha256=z8RsuRfPVaxMrAeKzzEQgBt07DysIR2DDaxmgfFT8sk,1953
|
|
178
|
+
pdd/prompts/extract_prompt_change_LLM.prompt,sha256=1e3AxcVpZ85t7pVvXqCpBUJzGI995MIimXicClagSvw,366
|
|
179
|
+
pdd/prompts/extract_prompt_split_LLM.prompt,sha256=rhStDroVxDYRcCjYq7XCCub8B-KmfCFj5_7PxhgMmz0,1097
|
|
180
|
+
pdd/prompts/extract_prompt_update_LLM.prompt,sha256=htttAp-QC6YycnfhFVsLhTM0uvhyEz9TEoGdFyZS8Yw,910
|
|
181
|
+
pdd/prompts/extract_promptline_LLM.prompt,sha256=mPeTjVaYJtgz2ygO0TVeO3vgmoBvWOWFSrwd1wKXJ74,831
|
|
182
|
+
pdd/prompts/extract_unit_code_fix_LLM.prompt,sha256=c4l6twMLC2YqDDvOj_DcaKmJQF8kIupeqvkueK_OQng,14301
|
|
183
|
+
pdd/prompts/extract_xml_LLM.prompt,sha256=eRcHaL-khShpb7C1_b7wmBJHfo2Kh1Wvjo_aOcWZovU,561
|
|
184
|
+
pdd/prompts/find_verification_errors_LLM.prompt,sha256=TAvwpsj8RYv6pmmxJK330rGxCS1TPmhztGxyPUtxT5I,3419
|
|
185
|
+
pdd/prompts/fix_code_module_errors_LLM.prompt,sha256=VSO0q3KtPbSWZkiJnmpgviUtSu73jpd2u3DWRVp-VbA,3794
|
|
186
|
+
pdd/prompts/fix_errors_from_unit_tests_LLM.prompt,sha256=3XGMGkBh5jUSXyuafpUsHGE_ynIfCUErAJ3HIkClxlY,5861
|
|
187
|
+
pdd/prompts/fix_verification_errors_LLM.prompt,sha256=AO1yhxNfM7s-93ZjufGrJUcRvSl04CmZl_WEbnTUFbY,4997
|
|
188
|
+
pdd/prompts/generate_test_LLM.prompt,sha256=XsMTzh-mXTiy3LrKucR7ruwZLoILZcyfSWXssLphXJA,4667
|
|
189
|
+
pdd/prompts/generate_test_from_example_LLM.prompt,sha256=XdMK2KgWRHNm-ph3CxtqeUNz0geCOMt87Qgc6P5dWj4,3678
|
|
190
|
+
pdd/prompts/increase_tests_LLM.prompt,sha256=XvzvwTyAaxbJIWwUk0iby2CoTfRCVRWbjT3D3G29OYQ,914
|
|
191
|
+
pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
|
|
192
|
+
pdd/prompts/prompt_code_diff_LLM.prompt,sha256=8rf-40BK9kuZ-pQd2FnjCWVlB04bEGVFKcHDM9TcuTQ,5632
|
|
193
|
+
pdd/prompts/prompt_diff_LLM.prompt,sha256=qYI96mZI_8fqf7Iuw_iOxi9HF7XekM7UsV2cUDqttws,2979
|
|
194
|
+
pdd/prompts/split_LLM.prompt,sha256=cMVyazsue6eerOPYeueqpSNRiITy1ht0HgGytPFiQIk,6244
|
|
195
|
+
pdd/prompts/summarize_file_LLM.prompt,sha256=qb9K61XMVFy7hgGITglI37Xg7yLPAGQBm0rUBEqRnEc,387
|
|
196
|
+
pdd/prompts/sync_analysis_LLM.prompt,sha256=tU_0MlvmS5OT2zMCaldkaL-kX2x6pzZSa3uuKHLwUg0,3925
|
|
197
|
+
pdd/prompts/trace_LLM.prompt,sha256=0fHSXQbUAqQ7ABRcyYxesA1SVPbDQWCDwcW4VLPuTBA,1233
|
|
198
|
+
pdd/prompts/trim_results_LLM.prompt,sha256=w4aL0S7v7fPSi3L9XeQR3mUOgNv3hpTDqi4rOtu7L7I,4033
|
|
199
|
+
pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3DD9L7ud9FOVE,2177
|
|
200
|
+
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=vud_G9PlVv9Ig64uBC-hPEVFRk5lwpc8pW6tOIxJM4I,5082
|
|
201
|
+
pdd/prompts/update_prompt_LLM.prompt,sha256=LKLwcTh-fqUMTl2Jn5kmmFqf1y90g7e9uvZLrF77_-M,3332
|
|
202
|
+
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
203
|
+
pdd/server/__init__.py,sha256=joPBmcoXZsiThXNOCh4zNHqS-JP0Ay7gmiBu06_HRLs,1035
|
|
204
|
+
pdd/server/app.py,sha256=HrBs8L3mg1aO39xl0YZRMnHMUU3SwowuEhN5saxPilU,12111
|
|
205
|
+
pdd/server/click_executor.py,sha256=uOHhINBQ8FRfLDl5yUOQsHQxowrzkb_TC8BSdw8R7do,19753
|
|
206
|
+
pdd/server/executor.py,sha256=JJUE_JoAYJBi0vhGr2ZSJbBR9FURXe4K9iYySjp7mak,10563
|
|
207
|
+
pdd/server/jobs.py,sha256=oLI1luuuR2AFRzsn8b77xGX2ykohHcFbzkY0P9dhBTg,24580
|
|
208
|
+
pdd/server/models.py,sha256=oXsvCQM7L-cGP0hKLvtZGE98svuoIu4lYFqTu-WQWUE,10530
|
|
209
|
+
pdd/server/security.py,sha256=XmT4qnRtlkL0KMWTZuzxx0PQ_XdgasYLXYGH2oc3NY4,8746
|
|
210
|
+
pdd/server/terminal_spawner.py,sha256=dUQ-h0C3zkSHJ09q4XA1eCxmlpgssDnIBZ5RLAM_100,7655
|
|
211
|
+
pdd/server/token_counter.py,sha256=cpNX84Ne2hFAqQImvft5mi_6RkBbj7zyqjb4seB0tPk,5628
|
|
212
|
+
pdd/server/routes/__init__.py,sha256=fotK-A6Vk4h5PAKg_QPdi33Jo39KxizNG9MrgErJNz0,754
|
|
213
|
+
pdd/server/routes/architecture.py,sha256=XvgUugOgjJ5C6p8ab_Q1oNhMGyE7rXwTRMDhAsJGJgU,14928
|
|
214
|
+
pdd/server/routes/auth.py,sha256=Yp6Tb2_S2WtVZpzbMb_LnL-T2_CMhZR3AHxGzlal_8c,11886
|
|
215
|
+
pdd/server/routes/commands.py,sha256=PEQtPoAF74ByYNmPwujyXjhJN8b5YEjnvb2XYqZDYqM,31608
|
|
216
|
+
pdd/server/routes/config.py,sha256=7-gPMIpqKs22ogcoj3RtOfCUfaWXxEw1hZX_e3Dlh9k,1043
|
|
217
|
+
pdd/server/routes/files.py,sha256=qqtoy7Zcy3ixZM9y5T1N6R9i7wxxz-YAzLzwVOyKlCI,21214
|
|
218
|
+
pdd/server/routes/prompts.py,sha256=b7UWfnkPtUsfqgVrEDYSdgzpg11sg1PKBgs3R4WH_b8,56371
|
|
219
|
+
pdd/server/routes/websocket.py,sha256=lh-65f9ZRLS-QQS-ZTIMi_s72mK_9Ntu6vTfix2hA5o,16185
|
|
220
|
+
pdd/templates/architecture/architecture_json.prompt,sha256=femVCFSpf51Qj1TsLD-rwF6CcoUz5Iclaxo9p-CpUSI,10912
|
|
221
|
+
pdd/templates/generic/generate_prompt.prompt,sha256=0qLK-L4kHmd3TKTQT0o9NOwc8DbdFpijTO9dJqPfwOU,10708
|
|
222
|
+
pdd_cli-0.0.118.dist-info/licenses/LICENSE,sha256=kvTJnnxPVTYlGKSY4ZN1kzdmJ0lxRdNWxgupaB27zsU,1066
|
|
223
|
+
pdd_cli-0.0.118.dist-info/METADATA,sha256=40zA3KbompUkEcvTwwqJzYZDii1vzkWY2otkih2fNUY,13051
|
|
224
|
+
pdd_cli-0.0.118.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
225
|
+
pdd_cli-0.0.118.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
226
|
+
pdd_cli-0.0.118.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
227
|
+
pdd_cli-0.0.118.dist-info/RECORD,,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright 2025
|
|
1
|
+
Copyright 2025 Prompt Driven, Inc.
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
4
|
|
pdd_cli-0.0.45.dist-info/RECORD
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
pdd/__init__.py,sha256=DMuWLMd_lMRsYmsoBQJdl7YzLTVJrDrArBSc0xR_4hk,634
|
|
2
|
-
pdd/auto_deps_main.py,sha256=iV2khcgSejiXjh5hiQqeu_BJQOLfTKXhMx14j6vRlf8,3916
|
|
3
|
-
pdd/auto_include.py,sha256=OJcdcwTwJNqHPHKG9P4m9Ij-PiLex0EbuwJP0uiQi_Y,7484
|
|
4
|
-
pdd/auto_update.py,sha256=w6jzTnMiYRNpwQHQxWNiIAwQ0d6xh1iOB3xgDsabWtc,5236
|
|
5
|
-
pdd/bug_main.py,sha256=INFWwD3TU00cBmTqFcScAoK25LsZE1zkinmnSM7ElS0,4787
|
|
6
|
-
pdd/bug_to_unit_test.py,sha256=3qNz96bS1JyjKZzxUs1oIfzuLsPc8S29WmOfIKQaQ8Y,6599
|
|
7
|
-
pdd/change.py,sha256=Hg_x0pa370-e6oDiczaTgFAy3Am9ReCPkqFrvqv4U38,6114
|
|
8
|
-
pdd/change_main.py,sha256=oTQz9DUy6pIqq5CJzHIk01NrC88Xrm4FNEu0e-1Hx5Y,27748
|
|
9
|
-
pdd/cli.py,sha256=QutM8tQOIp6jtknx7wnSe1IxDGpLg8zYji9jie8Q_xg,41791
|
|
10
|
-
pdd/cmd_test_main.py,sha256=zL-E-bZ6XWpjcHt1oaTx0TSOwtmQTb-fBIcfhGqQhT0,7122
|
|
11
|
-
pdd/code_generator.py,sha256=KwbLgMfEER-qebGJdk5i25Qj3XdnHkVttjBlEeDasHs,4651
|
|
12
|
-
pdd/code_generator_main.py,sha256=7MlZPmET3xycXL3VMLW8mLI8sW3pwRDGNyFynHt8TfM,25402
|
|
13
|
-
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
14
|
-
pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
|
|
15
|
-
pdd/conflicts_main.py,sha256=U23aJqJ6pgLDDCz-AaejWnG-qsTGAhZ9024KsHR9pYU,3650
|
|
16
|
-
pdd/construct_paths.py,sha256=oFmN7d0UUw6VtdnDvXh4DY52vnnn5PgReX610chVA2U,31393
|
|
17
|
-
pdd/context_generator.py,sha256=e5ey0i7wWnxAUiwiw1gkB1_t9OFjKU2lxYKpb_eVSio,6036
|
|
18
|
-
pdd/context_generator_main.py,sha256=nJjc5L_pWTkDQzGhkHbm_C74TpgLeWGukdrb1rA5kEA,3857
|
|
19
|
-
pdd/continue_generation.py,sha256=6W2LQuQHWHSByv6zMMAVlGOCC1zEF_BAXwLPugMaC7M,5637
|
|
20
|
-
pdd/crash_main.py,sha256=BmTbFSrEAICS-Ji7sTFI9SHpTTUZot16918wiypNnhc,7611
|
|
21
|
-
pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
|
|
22
|
-
pdd/detect_change_main.py,sha256=OWbpv3wFYW85QwCoD9ecMBQtuk3UcZOqIAFkvHip2KQ,3778
|
|
23
|
-
pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
|
|
24
|
-
pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
|
|
25
|
-
pdd/fix_code_loop.py,sha256=LQXYQuFMjMM4yo6oJaFKyCg9OHpFwATp6QeHm8TsGR4,24468
|
|
26
|
-
pdd/fix_code_module_errors.py,sha256=jKH88KunVhof1MYRI_F42_YnLt5k4lif4YztQgzB9g8,5446
|
|
27
|
-
pdd/fix_error_loop.py,sha256=A5eh3b8DQQAFfmOWXufkCWPzLKuPA29zP0ZSQtTzlBw,24433
|
|
28
|
-
pdd/fix_errors_from_unit_tests.py,sha256=fIqEfVIEx8PPSAzWu5nhin_remKu4c0_o51AN3g_x6s,9398
|
|
29
|
-
pdd/fix_main.py,sha256=7TbHVUM2HuzCVMY-B2iHzvy5YEnKaaSbU1ZzXN7YG3U,14004
|
|
30
|
-
pdd/fix_verification_errors.py,sha256=HvqGGdQqHq7OERmzcYP8Ft5nX_xthwVPJPG-YLv6VNM,17444
|
|
31
|
-
pdd/fix_verification_errors_loop.py,sha256=80899aKg27wM9-I5wOoiHbbla5Bfm0bOibx7WNmiWPE,55715
|
|
32
|
-
pdd/fix_verification_main.py,sha256=nZP0uYx9WLULSl17Du9mgENNO7UWgXFXJWKxIJy0e3Q,24237
|
|
33
|
-
pdd/generate_output_paths.py,sha256=YYxeEKiHf39s-giDu4ak_xufyfRqkuCcvowVuOytXaI,24224
|
|
34
|
-
pdd/generate_test.py,sha256=MI95NFvnjW28Ez-BSbD4J1U5p1xaj69D_mzufIGTH5I,6922
|
|
35
|
-
pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
|
|
36
|
-
pdd/get_extension.py,sha256=IwpnwGLKMkVcEtQWHeGriphq2g5r8mGLftXir48vrjQ,2675
|
|
37
|
-
pdd/get_jwt_token.py,sha256=lFCFlXBGDNHChvXi9cpDU5nDEpUrKWG4nfNfcc0KZ2I,13013
|
|
38
|
-
pdd/get_language.py,sha256=yxyQqVEb5H3ep3Hc6XgAl3vMLTHD5OIs8ZSekB493GA,1438
|
|
39
|
-
pdd/git_update.py,sha256=ZpU_uqUx1Or_zmqP307y_6EMk4ruqpDcXumDX_KHQZU,2936
|
|
40
|
-
pdd/increase_tests.py,sha256=68cM9d1CpaLLm2ISFpJw39xbRjsfwxwS06yAwRoUCHk,4433
|
|
41
|
-
pdd/incremental_code_generator.py,sha256=cWo3DJ0PybnrepFEAMibGjTVY3T8mLVvPt5W8cNhuxU,9402
|
|
42
|
-
pdd/insert_includes.py,sha256=hNn8muRULiq3YMNI4W4pEPeM1ckiZ-EgR9WtCyWQ1eQ,5533
|
|
43
|
-
pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
|
|
44
|
-
pdd/llm_invoke.py,sha256=S6YDxGOi9jCRXD_swGUqB3wdWzA-RoQ8WpV-i02ABdA,73364
|
|
45
|
-
pdd/load_prompt_template.py,sha256=4NH8_t5eon_vcyTznqtemJ_yAPkTJm_hSdTRgzj3qEQ,1907
|
|
46
|
-
pdd/logo_animation.py,sha256=n6HJWzuFze2csAAW2-zbxfjvWFYRI4hIdwVBtHBOkj4,20782
|
|
47
|
-
pdd/mcp_config.json,sha256=D3ctWHlShvltbtH37zbYb6smVE0V80_lGjDKDIqsSBE,124
|
|
48
|
-
pdd/pdd_completion.fish,sha256=XgtbuPV11pB8urYXhbpXhWuwKAVLpiAJxOMIes5CV-8,11884
|
|
49
|
-
pdd/pdd_completion.sh,sha256=e0K4Ai1yJRj6Fd6Qpk-brAEicW3ciPSyIuNMQkSG5mI,5342
|
|
50
|
-
pdd/pdd_completion.zsh,sha256=WPcz7BzvjDRmcEZfL-kFvhYmUtz2BHxJK_r3_cPa478,14966
|
|
51
|
-
pdd/postprocess.py,sha256=jWJSUPP7bDChyTEek35UOdy6fhU6c5EoDSoMypGwIdE,4402
|
|
52
|
-
pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
|
|
53
|
-
pdd/preprocess.py,sha256=UB1rqSNscUC-JHujvGb11LJ5OadZ3GVD1Qeq1dI6HMc,9508
|
|
54
|
-
pdd/preprocess_main.py,sha256=CwmU3WcXdsZ3vJN0Z0eCv_CbiybXu4O9BxFkCmZz6v4,3209
|
|
55
|
-
pdd/process_csv_change.py,sha256=ckNqVPRooWVyIvmqjdEgo2PDLnpoQ6Taa2dUaWGRlzU,27926
|
|
56
|
-
pdd/pytest_output.py,sha256=IrRKYneW_F6zv9WaJwKFGnOBLFBFjk1CnhO_EVAjb9E,6612
|
|
57
|
-
pdd/python_env_detector.py,sha256=y-QESoPNiKaD821uz8okX-9qA-oqvH9cQHY2_MwFHzU,5194
|
|
58
|
-
pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
|
|
59
|
-
pdd/split_main.py,sha256=GJzkWvDB6AA_duT2nZTRIvPmrX-ePhDRpZuog5xFCT0,4791
|
|
60
|
-
pdd/summarize_directory.py,sha256=u5qnDwNP3q_Pc5j-5DZkyobgvysWdHr1ntb76icC76o,9324
|
|
61
|
-
pdd/sync_animation.py,sha256=e7Qb4m70BHYpl37CuuF-95j-APctPL4Zm_o1PSTTRFQ,28070
|
|
62
|
-
pdd/sync_determine_operation.py,sha256=kRS4YVE34YaiD_Ko_ilosdpG8lEyvqqkpxJSMF9IceE,53573
|
|
63
|
-
pdd/sync_main.py,sha256=2XUZZL9oIiNVsVohdsMpvrNoV8XkXhEKyt5bb2HlNHI,13641
|
|
64
|
-
pdd/sync_orchestration.py,sha256=ot4J_wg0W_2Qe3SFBY1CVoD2IKCWmC0AxT8CZ3POzFQ,53794
|
|
65
|
-
pdd/trace.py,sha256=oXHbOMfxeso7m81N5V2ixS_l6BPAlZrH6vifn0IgWbo,5225
|
|
66
|
-
pdd/trace_main.py,sha256=Z8m8UgRZoaojX_H6aDDU7_lB7WNCLwZpFxbPTm1s-6s,4902
|
|
67
|
-
pdd/track_cost.py,sha256=VIrHYh4i2G5T5Dq1plxwuzsG4OrHQgO0GPgFckgsQ_4,3266
|
|
68
|
-
pdd/unfinished_prompt.py,sha256=aoyWPubtR36RFt1f2aqaTZVfSrqxzzbeKezTeHaDIGw,4305
|
|
69
|
-
pdd/update_main.py,sha256=okTsl-oamzCOqjpircs58urBt4Cu7PXxOztvc57088Q,4332
|
|
70
|
-
pdd/update_model_costs.py,sha256=zfGqWoVIjBppKUt1Naq2ZsIdiucwfH6at2DflcwkJf8,22998
|
|
71
|
-
pdd/update_prompt.py,sha256=zc-HiI1cwGBkJHVmNDyoSZa13lZH90VdB9l8ajdj6Kk,4543
|
|
72
|
-
pdd/xml_tagger.py,sha256=5Bc3HRm7iz_XjBdzQIcMb8KocUQ8PELI2NN5Gw4amd4,4825
|
|
73
|
-
pdd/data/language_format.csv,sha256=yQW5PuqIpihhDF9r_4o5x1CNUU5yyx-mdhbS6GQaEEI,918
|
|
74
|
-
pdd/data/llm_model.csv,sha256=FrNhbSZ2yOi2qdcsRdjq7opRgRcm5U5BVZgaUXVyfVw,1449
|
|
75
|
-
pdd/prompts/auto_include_LLM.prompt,sha256=0t-Jmm5o6vVTmqsISTUiewqPT8bB389UZnJoHZvgtu4,13967
|
|
76
|
-
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=KdMkvRVnjVSf0NTYIaDXIMT93xPttXEwkMpjWx5leLs,1588
|
|
77
|
-
pdd/prompts/change_LLM.prompt,sha256=5rgWIL16p3VRURd2_lNtcbu_MVRqPhI8gFIBt1gkzDQ,2164
|
|
78
|
-
pdd/prompts/code_patcher_LLM.prompt,sha256=yeV4lsRuPQzNdKRV_LQUOmmWh2yhu8YgKXUWo4bge4I,2392
|
|
79
|
-
pdd/prompts/conflict_LLM.prompt,sha256=46DB_qOCtsfVsj6y8E8grI0izxAk_-ixoENUUHQAkHc,1593
|
|
80
|
-
pdd/prompts/continue_generation_LLM.prompt,sha256=Jsd3eeu23heqw2frfOLzZ5c9dn0QZrfWGratfyWV-ac,111
|
|
81
|
-
pdd/prompts/detect_change_LLM.prompt,sha256=-q8VqXAv6ufEE193DNbTcgpbxiKISR5-5j3M0TTqa8s,4522
|
|
82
|
-
pdd/prompts/diff_analyzer_LLM.prompt,sha256=2lZI4g4DO9NwMPnxVJW717dGG5LQuBXqgeIjYfplEdU,2901
|
|
83
|
-
pdd/prompts/example_generator_LLM.prompt,sha256=48mUvjEYxQYf_HhDLP6RGOz6_d_go6JNExZ9g8aicCg,610
|
|
84
|
-
pdd/prompts/extract_auto_include_LLM.prompt,sha256=BamIIt8qrML2ZtNe3D4K30iMobJ4URtkyomHCDaf0iw,313
|
|
85
|
-
pdd/prompts/extract_code_LLM.prompt,sha256=rRql9Dv2Rn01F2hFeaGzfh9apxCkjY7WzAG0SAvIe8M,2470
|
|
86
|
-
pdd/prompts/extract_conflict_LLM.prompt,sha256=V_xXdU7V4IZK9SVFxJtXKRn_wFkP3zp4FJrxeNM9XYc,1023
|
|
87
|
-
pdd/prompts/extract_detect_change_LLM.prompt,sha256=2HXSb9bGjHZsKrUGvfBdBAAcGBCrQ2AxC8vUJRAfB1U,1003
|
|
88
|
-
pdd/prompts/extract_program_code_fix_LLM.prompt,sha256=bXxYrVtxnjWKrmidVi3bT-o6wIsFBCMgQgDI__K-4Q4,1513
|
|
89
|
-
pdd/prompts/extract_prompt_change_LLM.prompt,sha256=1e3AxcVpZ85t7pVvXqCpBUJzGI995MIimXicClagSvw,366
|
|
90
|
-
pdd/prompts/extract_prompt_split_LLM.prompt,sha256=rhStDroVxDYRcCjYq7XCCub8B-KmfCFj5_7PxhgMmz0,1097
|
|
91
|
-
pdd/prompts/extract_prompt_update_LLM.prompt,sha256=XH2muMzTb_wqcQS9rR4THXe6TP7BD84qb4MEisuJVU4,906
|
|
92
|
-
pdd/prompts/extract_promptline_LLM.prompt,sha256=owIBRaF2bWwg3S64uyMKzOFMdvvmI_EEGoF97Pa9118,813
|
|
93
|
-
pdd/prompts/extract_unit_code_fix_LLM.prompt,sha256=c4l6twMLC2YqDDvOj_DcaKmJQF8kIupeqvkueK_OQng,14301
|
|
94
|
-
pdd/prompts/extract_xml_LLM.prompt,sha256=eRcHaL-khShpb7C1_b7wmBJHfo2Kh1Wvjo_aOcWZovU,561
|
|
95
|
-
pdd/prompts/find_verification_errors_LLM.prompt,sha256=NwmJbAFkNwSWaJOsewznb7hbOljc9AJ-Sf6fB7xIACI,2863
|
|
96
|
-
pdd/prompts/fix_code_module_errors_LLM.prompt,sha256=LHz2ICZep7LQlzM-plyIFMHmCkmn79mxIfYjJTVmzik,3079
|
|
97
|
-
pdd/prompts/fix_errors_from_unit_tests_LLM.prompt,sha256=Yy6WIg9WfizrFpFZogoCtlQy-H123ycc_SaF6m8_Ljo,5079
|
|
98
|
-
pdd/prompts/fix_verification_errors_LLM.prompt,sha256=zZrQQnBRBL42fINmCC2WjQlLGPNriIuHsnzrkN5seN8,3532
|
|
99
|
-
pdd/prompts/generate_test_LLM.prompt,sha256=eCI7CTMpoA76DTruTgWygClxJX0gj_uNxTqHbmqcJ50,2254
|
|
100
|
-
pdd/prompts/increase_tests_LLM.prompt,sha256=rekFzLRuZy99KifEKNlmPYoQdl8wa04112mtCdIY6S8,955
|
|
101
|
-
pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
|
|
102
|
-
pdd/prompts/split_LLM.prompt,sha256=cMVyazsue6eerOPYeueqpSNRiITy1ht0HgGytPFiQIk,6244
|
|
103
|
-
pdd/prompts/summarize_file_LLM.prompt,sha256=qb9K61XMVFy7hgGITglI37Xg7yLPAGQBm0rUBEqRnEc,387
|
|
104
|
-
pdd/prompts/sync_analysis_LLM.prompt,sha256=tU_0MlvmS5OT2zMCaldkaL-kX2x6pzZSa3uuKHLwUg0,3925
|
|
105
|
-
pdd/prompts/trace_LLM.prompt,sha256=XTPoQQpKrF7BtWkCJPIrinn448VyBGXJieibMsMP-y0,1231
|
|
106
|
-
pdd/prompts/trim_results_LLM.prompt,sha256=w4aL0S7v7fPSi3L9XeQR3mUOgNv3hpTDqi4rOtu7L7I,4033
|
|
107
|
-
pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3DD9L7ud9FOVE,2177
|
|
108
|
-
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
|
|
109
|
-
pdd/prompts/update_prompt_LLM.prompt,sha256=prIc8uLp2jqnLTHt6JvWDZGanPZipivhhYeXe0lVaYw,1328
|
|
110
|
-
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
111
|
-
pdd_cli-0.0.45.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
|
|
112
|
-
pdd_cli-0.0.45.dist-info/METADATA,sha256=gjZhY6Q-S92srif53XEtXBT9uw2jtpAke3WSBM_EpT4,12399
|
|
113
|
-
pdd_cli-0.0.45.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
114
|
-
pdd_cli-0.0.45.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
115
|
-
pdd_cli-0.0.45.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
116
|
-
pdd_cli-0.0.45.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|