pdd-cli 0.0.41__py3-none-any.whl → 0.0.43__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.

@@ -0,0 +1,307 @@
1
+ Metadata-Version: 2.4
2
+ Name: pdd-cli
3
+ Version: 0.0.43
4
+ Summary: PDD (Prompt-Driven Development) Command Line Interface
5
+ Author: Greg Tanaka
6
+ Author-email: glt@alumni.caltech.edu
7
+ License: MIT
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
+ Keywords: prompt-driven development,code generation,AI,LLM,unit testing,software development
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Software Development :: Code Generators
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Requires-Python: >=3.12
20
+ Description-Content-Type: text/x-rst
21
+ License-File: LICENSE
22
+ Requires-Dist: GitPython==3.1.44
23
+ Requires-Dist: Requests==2.32.3
24
+ Requires-Dist: aiofiles==24.1.0
25
+ Requires-Dist: click==8.1.7
26
+ Requires-Dist: firecrawl-py
27
+ Requires-Dist: firebase_admin==6.6.0
28
+ Requires-Dist: keyring==25.6.0
29
+ Requires-Dist: langchain_core==0.3.56
30
+ Requires-Dist: nest_asyncio==1.6.0
31
+ Requires-Dist: pandas==2.2.3
32
+ Requires-Dist: psutil==5.9.0
33
+ Requires-Dist: pydantic==2.11.2
34
+ Requires-Dist: litellm
35
+ Requires-Dist: rich==14.0.0
36
+ Requires-Dist: semver==3.0.2
37
+ Requires-Dist: setuptools
38
+ Requires-Dist: pytest
39
+ Requires-Dist: boto3==1.35.99
40
+ Requires-Dist: python-Levenshtein
41
+ Provides-Extra: dev
42
+ Requires-Dist: commitizen; extra == "dev"
43
+ Requires-Dist: pytest-cov; extra == "dev"
44
+ Requires-Dist: pytest-mock; extra == "dev"
45
+ Requires-Dist: pytest-asyncio; extra == "dev"
46
+ Requires-Dist: z3-solver; extra == "dev"
47
+ Dynamic: license-file
48
+
49
+ .. image:: https://img.shields.io/badge/pdd--cli-v0.0.43-blue
50
+ :alt: PDD-CLI Version
51
+
52
+ .. image:: https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord&logoColor=white&link=https://discord.gg/Yp4RTh8bG7
53
+ :alt: Join us on Discord
54
+ :target: https://discord.gg/Yp4RTh8bG7
55
+
56
+ PDD (Prompt-Driven Development) Command Line Interface
57
+ ======================================================
58
+
59
+ The primary command is ``sync``, which automatically executes the complete PDD workflow loop—from dependency injection through code generation, testing, and verification. For most use cases, ``sync`` is the recommended starting point, as it intelligently determines what steps are needed and executes them in the correct order.
60
+
61
+ PDD (Prompt-Driven Development) is a command-line interface that harnesses AI models to generate and maintain code from prompt files. Whether you want to create new features, fix bugs, enhance unit tests, or manage complex prompt structures, pdd-cli streamlines your workflow through an intuitive interface and powerful automation.
62
+
63
+ .. image:: https://img.youtube.com/vi/5lBxpTSnjqo/0.jpg
64
+ :alt: Watch a video demonstration of PDD
65
+ :target: https://www.youtube.com/watch?v=5lBxpTSnjqo
66
+
67
+ Why Choose Prompt-Driven Development?
68
+ -------------------------------------
69
+
70
+ * **Tackle the Root Cause of Maintenance Costs**: Traditional development spends up to 90% of its budget on maintaining and modifying existing code. PDD addresses this by treating prompts—not code—as the primary source of truth. Instead of applying costly, complex patches, you update the high-level prompt and regenerate clean, consistent code.
71
+ * **Boost Developer Productivity & Focus**: PDD shifts your work from tedious, line-by-line coding to high-level system design. Its batch-oriented workflow (using commands like ``sync``) frees you from the constant supervision required by interactive AI assistants. You can define a task, launch the process, and focus on other priorities while the AI works in the background.
72
+ * **Maintain Control and Determinism**: Unlike agentic coders that can introduce unpredictable changes across a project, PDD gives you full control. You precisely define the context for every operation, ensuring that changes are targeted, deterministic, and safe. This is especially critical in large codebases, where unpredictable modifications can have cascading and destructive effects.
73
+ * **Enhance Code Quality and Consistency**: By using prompts as a single source of truth, PDD ensures your code, tests, and documentation never drift out of sync. This regenerative process produces a more reliable and understandable codebase compared to the tangled results of repeated patching.
74
+ * **Improve Collaboration**: Prompts are written in natural language, making them accessible to both technical and non-technical stakeholders. This fosters clearer communication and ensures the final product aligns with business requirements.
75
+ * **Reduce LLM Costs**: PDD's structured, batch-oriented nature is inherently more token-efficient and allows you to take advantage of significant discounts offered by LLM providers for batch processing APIs, making it a more cost-effective solution than many interactive tools.
76
+
77
+
78
+ Key Features
79
+ ------------
80
+
81
+ * **Automated `sync` Command**: A single command to automate the entire development cycle: from code generation and dependency management to testing and verification.
82
+ * **Cloud & Local Execution**: Run securely in the cloud with GitHub SSO (no API keys needed) or switch to local mode with the ``--local`` flag for full control.
83
+ * **Comprehensive Command Suite**: A full set of tools to ``generate``, ``test``, ``fix``, ``update``, and ``split`` your code and prompts.
84
+ * **Intelligent Testing**: Generate new unit tests, or improve existing ones by analyzing coverage reports to hit your desired targets.
85
+ * **Iterative Error Fixing**: Automatically find and correct errors in your code with commands like ``fix`` and ``crash``, which can loop until the issues are resolved.
86
+ * **Cost Tracking & Configuration**: Fine-tune AI model behavior with ``--strength`` and ``--temperature`` and track usage with optional cost reporting.
87
+ * **Cross-Language Support**: Work with Python, JavaScript, Java, C++, Go, and more, with automatic language detection from prompt filenames.
88
+
89
+
90
+ Quick Installation
91
+ ------------------
92
+
93
+ **Recommended: Using uv (Faster & Better Dependency Management)**
94
+
95
+ We recommend installing PDD using the `uv <https://github.com/astral-sh/uv>`_ package manager for better dependency management and automatic environment configuration:
96
+
97
+ .. code-block:: console
98
+
99
+ # Install uv if you haven't already
100
+ curl -sSf https://astral.sh/uv/install.sh | sh
101
+
102
+ # Install PDD using uv tool install
103
+ uv tool install pdd-cli
104
+
105
+ This installation method ensures:
106
+
107
+ - Faster installations with optimized dependency resolution
108
+ - Automatic environment setup without manual configuration
109
+ - Proper handling of the PDD_PATH environment variable
110
+ - Better isolation from other Python packages
111
+
112
+ **Alternative: Using pip**
113
+
114
+ If you prefer, you can install with pip:
115
+
116
+ .. code-block:: console
117
+
118
+ pip install pdd-cli
119
+
120
+ After installation, verify:
121
+
122
+ .. code-block:: console
123
+
124
+ pdd --version
125
+
126
+ You'll see the current PDD version (e.g., 0.0.43).
127
+
128
+ Getting Started with Examples
129
+ -----------------------------
130
+
131
+ To quickly see PDD in action, we recommend exploring the ``examples/`` directory in the project repository. It contains ready-to-use sample prompts and projects to help you get started.
132
+
133
+ For instance, the ``handpaint`` example demonstrates how to generate a complete HTML canvas application from a single prompt. After cloning the repository, you can run it yourself:
134
+
135
+ .. code-block:: console
136
+
137
+ # Navigate to the example directory
138
+ cd examples/handpaint/pdd/
139
+
140
+ # Run the sync command
141
+ pdd sync handpaint
142
+
143
+ This will generate the full application based on the ``handpaint_html.prompt`` file.
144
+
145
+
146
+ Advanced Installation Tips
147
+ --------------------------
148
+
149
+
150
+ **Virtual Environment**
151
+
152
+ Create and activate a virtual environment, then install pdd-cli:
153
+
154
+ .. code-block:: console
155
+
156
+ python -m venv pdd-env
157
+
158
+ # Activate environment
159
+ # On Windows:
160
+ pdd-env\Scripts\activate
161
+ # On Unix/MacOS:
162
+ source pdd-env/bin/activate
163
+
164
+ # Install PDD (with uv - recommended)
165
+ uv tool install pdd-cli
166
+ # OR with pip
167
+ pip install pdd-cli
168
+
169
+
170
+ **Environment Variables**
171
+
172
+ Optionally, add environment variables to your shell startup (e.g., ``.bashrc``, ``.zshrc``):
173
+
174
+ .. code-block:: console
175
+
176
+ export PDD_AUTO_UPDATE=true
177
+ export PDD_GENERATE_OUTPUT_PATH=/path/to/generated/code/
178
+ export PDD_TEST_OUTPUT_PATH=/path/to/tests/
179
+
180
+ Tab Completion
181
+ ~~~~~~~~~~~~~~
182
+ Enable shell completion:
183
+
184
+ .. code-block:: console
185
+
186
+ pdd install_completion
187
+
188
+ Cloud vs Local
189
+ --------------
190
+
191
+ By default, PDD runs in cloud mode (currently waitlist), using GitHub SSO for secure access to AI models—no local API keys needed. If you want or need to run locally:
192
+
193
+ .. code-block:: console
194
+
195
+ pdd --local generate my_prompt_python.prompt
196
+
197
+ Be sure to configure API keys in your environment ahead of time:
198
+
199
+ .. code-block:: console
200
+
201
+ export OPENAI_API_KEY=your_api_key_here
202
+ export ANTHROPIC_API_KEY=your_api_key_here
203
+ # etc.
204
+
205
+ Basic Usage
206
+ -----------
207
+
208
+ All commands follow a standard pattern:
209
+
210
+ .. code-block:: console
211
+
212
+ pdd [GLOBAL OPTIONS] COMMAND [COMMAND OPTIONS] [ARGS]...
213
+
214
+ **Example – Sync**
215
+
216
+ The ``sync`` command automates the entire PDD workflow for a given basename. It intelligently runs generation, testing, and fixing steps as needed, with real-time progress feedback.
217
+
218
+ .. code-block:: console
219
+
220
+ pdd sync factorial_calculator
221
+
222
+ **Example – Generate Code**
223
+
224
+ Generate Python code from a prompt:
225
+
226
+ .. code-block:: console
227
+
228
+ pdd generate factorial_calculator_python.prompt
229
+
230
+ In cloud mode (no local keys required). Or locally if you prefer:
231
+
232
+ .. code-block:: console
233
+
234
+ pdd --local generate factorial_calculator_python.prompt
235
+
236
+ **Example – Test**
237
+
238
+ Automatically create or enhance tests:
239
+
240
+ .. code-block:: console
241
+
242
+ pdd test factorial_calculator_python.prompt src/factorial_calculator.py
243
+
244
+ Use coverage analysis:
245
+
246
+ .. code-block:: console
247
+
248
+ pdd test --coverage-report coverage.xml --existing-tests tests/test_factorial.py \
249
+ factorial_prompt.prompt src/factorial.py
250
+
251
+
252
+ **Example – Fix Iteratively**
253
+
254
+ Attempt to fix failing code or tests in multiple loops:
255
+
256
+ .. code-block:: console
257
+
258
+ pdd fix --loop \
259
+ factorial_calculator_python.prompt src/factorial_calculator.py tests/test_factorial.py errors.log
260
+
261
+ PDD will keep trying (with a budget limit configurable by ``--budget``) until tests pass or attempts are exhausted.
262
+
263
+ Frequently Asked Questions (FAQ)
264
+ --------------------------------
265
+
266
+ **What's the main difference between PDD and using an AI chat assistant (agentic coder)?**
267
+
268
+ Control and predictability. Interactive AI assistants can be unpredictable and make broad, unintended changes, which is risky in large codebases. PDD gives you full control. You define the exact context for every change, making the process deterministic and safe. PDD's batch-oriented workflow also frees you from constant supervision, boosting productivity.
269
+
270
+ **What is "Cloud vs. Local" execution?**
271
+
272
+ By default, PDD runs in cloud mode, using GitHub SSO for secure access to AI models—no local API keys needed. If you want or need to run locally, use the `--local` flag:
273
+
274
+ .. code-block:: console
275
+
276
+ pdd --local generate my_prompt_python.prompt
277
+
278
+ Be sure to configure API keys in your environment ahead of time:
279
+
280
+ .. code-block:: console
281
+
282
+ export OPENAI_API_KEY=your_api_key_here
283
+ export ANTHROPIC_API_KEY=your_api_key_here
284
+ # etc.
285
+
286
+ **Can I use PDD on an existing project?**
287
+
288
+ Yes. PDD is designed for both new and existing projects. You can start by creating prompts for new features. For existing, manually written code, you can use the `pdd update` command to create a prompt file that reflects the current state of your code. This allows you to gradually bring parts of your existing codebase under the PDD methodology.
289
+
290
+ **Do I need to be an expert prompt engineer?**
291
+
292
+ Not at all. Effective prompts are more about clearly defining your requirements in natural language than about complex "engineering." If you can write a good specification or a clear bug report, you can write a good prompt. The goal is to describe *what* you want the code to do, not how to write it.
293
+
294
+
295
+ Getting Help
296
+ ------------
297
+
298
+ Use inline help to discover commands and options:
299
+
300
+ .. code-block:: console
301
+
302
+ pdd --help
303
+ pdd generate --help
304
+ pdd fix --help
305
+ ...
306
+
307
+ Happy Prompt-Driven Coding!
@@ -1,37 +1,37 @@
1
- pdd/__init__.py,sha256=3snMWI9qdg7tVUEvKTjGSV2dVuAG7lNCycbZLVC9ny8,634
2
- pdd/auto_deps_main.py,sha256=Ds6w9H6qD5vAqm7XEj_AZ135qPnwdvgw5k7iQpJFEdw,3899
1
+ pdd/__init__.py,sha256=_wvZeRl7sFMqEFovHXvbgfEHB53-_Kfnnq2wOL1rpNQ,634
2
+ pdd/auto_deps_main.py,sha256=iV2khcgSejiXjh5hiQqeu_BJQOLfTKXhMx14j6vRlf8,3916
3
3
  pdd/auto_include.py,sha256=OJcdcwTwJNqHPHKG9P4m9Ij-PiLex0EbuwJP0uiQi_Y,7484
4
4
  pdd/auto_update.py,sha256=w6jzTnMiYRNpwQHQxWNiIAwQ0d6xh1iOB3xgDsabWtc,5236
5
- pdd/bug_main.py,sha256=NLxYlf1T1qFmIiW79KDaqXqeIpraYeWyMpbhJsOmVK8,4770
5
+ pdd/bug_main.py,sha256=INFWwD3TU00cBmTqFcScAoK25LsZE1zkinmnSM7ElS0,4787
6
6
  pdd/bug_to_unit_test.py,sha256=3qNz96bS1JyjKZzxUs1oIfzuLsPc8S29WmOfIKQaQ8Y,6599
7
7
  pdd/change.py,sha256=Hg_x0pa370-e6oDiczaTgFAy3Am9ReCPkqFrvqv4U38,6114
8
- pdd/change_main.py,sha256=vtTr7mOKAxlQ0ogfFfl_0bBCN0PyPNNsddmcknSdNwY,27731
9
- pdd/cli.py,sha256=-HFQQyw-mSw_Zg3hZzyLiy4dTIa4W2-6QvPzYeUGb5o,39640
10
- pdd/cmd_test_main.py,sha256=cNj4zLGISsO8o10vRDwtX-0JewBqA-dpwvyY4THPnXY,6544
8
+ pdd/change_main.py,sha256=oTQz9DUy6pIqq5CJzHIk01NrC88Xrm4FNEu0e-1Hx5Y,27748
9
+ pdd/cli.py,sha256=dAXsN0NSi8JHpDlh6JgFL6mLEOIXwJ2sJcNnmSBc2-U,41791
10
+ pdd/cmd_test_main.py,sha256=22E-GPfsYL8qx-qH9a1fBvz-M1jfeaEjfgwVAyKd3sg,6638
11
11
  pdd/code_generator.py,sha256=KwbLgMfEER-qebGJdk5i25Qj3XdnHkVttjBlEeDasHs,4651
12
- pdd/code_generator_main.py,sha256=Uo__Rs6JDJx0NR02VmTFlW5_lpEYHcFpN1f2isLqfEc,25300
12
+ pdd/code_generator_main.py,sha256=7MlZPmET3xycXL3VMLW8mLI8sW3pwRDGNyFynHt8TfM,25402
13
13
  pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
14
14
  pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
15
- pdd/conflicts_main.py,sha256=l8aio0Yp-EYU8dGaSdBv1qR9WKIq_uV7VUZ6IT33EDc,3633
16
- pdd/construct_paths.py,sha256=hu1LFDnFfUcYyGz20Lgk_4jf40GcNOJAxWVIDUEAsz8,21046
15
+ pdd/conflicts_main.py,sha256=U23aJqJ6pgLDDCz-AaejWnG-qsTGAhZ9024KsHR9pYU,3650
16
+ pdd/construct_paths.py,sha256=oFmN7d0UUw6VtdnDvXh4DY52vnnn5PgReX610chVA2U,31393
17
17
  pdd/context_generator.py,sha256=e5ey0i7wWnxAUiwiw1gkB1_t9OFjKU2lxYKpb_eVSio,6036
18
- pdd/context_generator_main.py,sha256=MKg5aqN_8ONgotNmvhqRwvnUAcLRjit0hAVoG1E6XNs,2831
18
+ pdd/context_generator_main.py,sha256=nJjc5L_pWTkDQzGhkHbm_C74TpgLeWGukdrb1rA5kEA,3857
19
19
  pdd/continue_generation.py,sha256=6W2LQuQHWHSByv6zMMAVlGOCC1zEF_BAXwLPugMaC7M,5637
20
- pdd/crash_main.py,sha256=_kN5DrxhYUSpFY56vhmPKXHODwxnB4Ehc_eHHzCyKp8,8808
20
+ pdd/crash_main.py,sha256=BmTbFSrEAICS-Ji7sTFI9SHpTTUZot16918wiypNnhc,7611
21
21
  pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
22
- pdd/detect_change_main.py,sha256=DJNuY66Drf25-2EKbzz7vPMTDf0Kbb4THYbGmxsBbI4,3761
22
+ pdd/detect_change_main.py,sha256=OWbpv3wFYW85QwCoD9ecMBQtuk3UcZOqIAFkvHip2KQ,3778
23
23
  pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
24
24
  pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
25
25
  pdd/fix_code_loop.py,sha256=FxQvFTmBGitNSJg-nIFjx2bWKqjtELSlu9GxkqHGo8g,24448
26
- pdd/fix_code_module_errors.py,sha256=MrA-zL3Ia1VQBYBAISewwK3qCBQEAb7ariO9d0cj2jY,4876
26
+ pdd/fix_code_module_errors.py,sha256=jKH88KunVhof1MYRI_F42_YnLt5k4lif4YztQgzB9g8,5446
27
27
  pdd/fix_error_loop.py,sha256=urBH9CXxAZqC227jXBGcdZvXZX6SyL_u1B69pg419UE,24219
28
28
  pdd/fix_errors_from_unit_tests.py,sha256=fIqEfVIEx8PPSAzWu5nhin_remKu4c0_o51AN3g_x6s,9398
29
- pdd/fix_main.py,sha256=1DGXgAQv_lkWu-D673FeWEGrGxP8MJrUQKqgqzcnzpA,13985
29
+ pdd/fix_main.py,sha256=7TbHVUM2HuzCVMY-B2iHzvy5YEnKaaSbU1ZzXN7YG3U,14004
30
30
  pdd/fix_verification_errors.py,sha256=HvqGGdQqHq7OERmzcYP8Ft5nX_xthwVPJPG-YLv6VNM,17444
31
31
  pdd/fix_verification_errors_loop.py,sha256=Q9hOvgBUpfl7BeL8WUPR6OaJXwYIhEuG2E3RsPiddxQ,55034
32
- pdd/fix_verification_main.py,sha256=1e2_Y5yqG8fNzsSxJ1pBxenN0m1GWD0Ifa_bO1SHckw,22745
33
- pdd/generate_output_paths.py,sha256=o8Sjx0zLeBXXxEirGewcla40RinjTfnkrxBldRQ6HvI,20237
34
- pdd/generate_test.py,sha256=2tmCQcvWa_hCXDmfjRrk0IDX2SIevAu8dEL9SPnM2ew,5122
32
+ pdd/fix_verification_main.py,sha256=7kN5fODIskJyxHKB9OOTVmg4PxiFIiTQ1HUBJR4PA0E,22762
33
+ pdd/generate_output_paths.py,sha256=YYxeEKiHf39s-giDu4ak_xufyfRqkuCcvowVuOytXaI,24224
34
+ pdd/generate_test.py,sha256=MI95NFvnjW28Ez-BSbD4J1U5p1xaj69D_mzufIGTH5I,6922
35
35
  pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
36
36
  pdd/get_extension.py,sha256=IwpnwGLKMkVcEtQWHeGriphq2g5r8mGLftXir48vrjQ,2675
37
37
  pdd/get_jwt_token.py,sha256=BGxqMh7qf2mG-TFw7JlV941O9XtrW22L_dRoS_UZNjM,11560
@@ -41,7 +41,7 @@ pdd/increase_tests.py,sha256=XNXWH-7CgF90YhmQ2wj0JDDhPKmMNkqRXwtvmPQttL0,3632
41
41
  pdd/incremental_code_generator.py,sha256=cWo3DJ0PybnrepFEAMibGjTVY3T8mLVvPt5W8cNhuxU,9402
42
42
  pdd/insert_includes.py,sha256=hNn8muRULiq3YMNI4W4pEPeM1ckiZ-EgR9WtCyWQ1eQ,5533
43
43
  pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
44
- pdd/llm_invoke.py,sha256=457rD3f7KQHJ3BtI4boxTurArCww2zWAl4X77TxVROs,65788
44
+ pdd/llm_invoke.py,sha256=TmBQ07bE6dTQ3_2sZxP6awJACaQY2sdAIsPEPlYXQ-o,73390
45
45
  pdd/load_prompt_template.py,sha256=4NH8_t5eon_vcyTznqtemJ_yAPkTJm_hSdTRgzj3qEQ,1907
46
46
  pdd/logo_animation.py,sha256=n6HJWzuFze2csAAW2-zbxfjvWFYRI4hIdwVBtHBOkj4,20782
47
47
  pdd/mcp_config.json,sha256=D3ctWHlShvltbtH37zbYb6smVE0V80_lGjDKDIqsSBE,124
@@ -51,19 +51,21 @@ pdd/pdd_completion.zsh,sha256=WPcz7BzvjDRmcEZfL-kFvhYmUtz2BHxJK_r3_cPa478,14966
51
51
  pdd/postprocess.py,sha256=jWJSUPP7bDChyTEek35UOdy6fhU6c5EoDSoMypGwIdE,4402
52
52
  pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
53
53
  pdd/preprocess.py,sha256=UB1rqSNscUC-JHujvGb11LJ5OadZ3GVD1Qeq1dI6HMc,9508
54
- pdd/preprocess_main.py,sha256=Bm3qtcfL-hmSGGiMknA-6KHye6TNd1cuwf180Yi5cw8,3192
54
+ pdd/preprocess_main.py,sha256=CwmU3WcXdsZ3vJN0Z0eCv_CbiybXu4O9BxFkCmZz6v4,3209
55
55
  pdd/process_csv_change.py,sha256=ckNqVPRooWVyIvmqjdEgo2PDLnpoQ6Taa2dUaWGRlzU,27926
56
56
  pdd/pytest_output.py,sha256=kmKiMHaQItrDVi_hTCtM5pfCgBuyZVEVRbxdchpS5CY,4796
57
57
  pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
58
- pdd/split_main.py,sha256=HjJn4SDKos7bwFsjPkv-O0GyNYgw5XjPhx_CMDzbA90,4774
58
+ pdd/split_main.py,sha256=GJzkWvDB6AA_duT2nZTRIvPmrX-ePhDRpZuog5xFCT0,4791
59
59
  pdd/summarize_directory.py,sha256=FUgeVtB8oFn7Y6yI5dskNT5ieMoG95B6kRsVhKXPpSU,9184
60
60
  pdd/sync_animation.py,sha256=e7Qb4m70BHYpl37CuuF-95j-APctPL4Zm_o1PSTTRFQ,28070
61
- pdd/sync_determine_operation.py,sha256=STUrpmt86CGXVZ45t50aElzSMET_6V8I_DSeq12Yo2E,21002
61
+ pdd/sync_determine_operation.py,sha256=CzEWj5Xm14eKSZ9F0qn9PmOr6ILxFe94TPPMB_N7Viw,40732
62
+ pdd/sync_main.py,sha256=X5pwpCuba7mDLbGYmyLPTl6i7x3uDdQ9vnuVlRXIv2E,13588
63
+ pdd/sync_orchestration.py,sha256=3AyUHkmq2S9zXKUGRjL0mUwSqeu0JZPX3G-TWa5ZX-Q,30569
62
64
  pdd/trace.py,sha256=oXHbOMfxeso7m81N5V2ixS_l6BPAlZrH6vifn0IgWbo,5225
63
- pdd/trace_main.py,sha256=JJx6PXgvZWlRNn4_FW_52KM8gd4luRTwgAOI_OL8HE0,4885
65
+ pdd/trace_main.py,sha256=Z8m8UgRZoaojX_H6aDDU7_lB7WNCLwZpFxbPTm1s-6s,4902
64
66
  pdd/track_cost.py,sha256=VIrHYh4i2G5T5Dq1plxwuzsG4OrHQgO0GPgFckgsQ_4,3266
65
67
  pdd/unfinished_prompt.py,sha256=aoyWPubtR36RFt1f2aqaTZVfSrqxzzbeKezTeHaDIGw,4305
66
- pdd/update_main.py,sha256=G-sBZiPG3nP0sPs9th2nXcCCPUQJZsjugJcfr4Iwm3w,4041
68
+ pdd/update_main.py,sha256=okTsl-oamzCOqjpircs58urBt4Cu7PXxOztvc57088Q,4332
67
69
  pdd/update_model_costs.py,sha256=zfGqWoVIjBppKUt1Naq2ZsIdiucwfH6at2DflcwkJf8,22998
68
70
  pdd/update_prompt.py,sha256=zc-HiI1cwGBkJHVmNDyoSZa13lZH90VdB9l8ajdj6Kk,4543
69
71
  pdd/xml_tagger.py,sha256=5Bc3HRm7iz_XjBdzQIcMb8KocUQ8PELI2NN5Gw4amd4,4825
@@ -98,16 +100,16 @@ pdd/prompts/increase_tests_LLM.prompt,sha256=rekFzLRuZy99KifEKNlmPYoQdl8wa04112m
98
100
  pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
99
101
  pdd/prompts/split_LLM.prompt,sha256=cMVyazsue6eerOPYeueqpSNRiITy1ht0HgGytPFiQIk,6244
100
102
  pdd/prompts/summarize_file_LLM.prompt,sha256=qb9K61XMVFy7hgGITglI37Xg7yLPAGQBm0rUBEqRnEc,387
101
- pdd/prompts/sync_analysis_LLM.prompt,sha256=f4n_gCHaQpE_IpfN9JPjGw0LrgaO9Iv7XWCo9IVItFA,3921
103
+ pdd/prompts/sync_analysis_LLM.prompt,sha256=tU_0MlvmS5OT2zMCaldkaL-kX2x6pzZSa3uuKHLwUg0,3925
102
104
  pdd/prompts/trace_LLM.prompt,sha256=XTPoQQpKrF7BtWkCJPIrinn448VyBGXJieibMsMP-y0,1231
103
105
  pdd/prompts/trim_results_LLM.prompt,sha256=w4aL0S7v7fPSi3L9XeQR3mUOgNv3hpTDqi4rOtu7L7I,4033
104
106
  pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3DD9L7ud9FOVE,2177
105
107
  pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
106
108
  pdd/prompts/update_prompt_LLM.prompt,sha256=prIc8uLp2jqnLTHt6JvWDZGanPZipivhhYeXe0lVaYw,1328
107
109
  pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
108
- pdd_cli-0.0.41.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
109
- pdd_cli-0.0.41.dist-info/METADATA,sha256=bgJrLc_ehTOm2cg58Yzba-Qirca-nb-lrBVC6It6bk4,7968
110
- pdd_cli-0.0.41.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
111
- pdd_cli-0.0.41.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
112
- pdd_cli-0.0.41.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
113
- pdd_cli-0.0.41.dist-info/RECORD,,
110
+ pdd_cli-0.0.43.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
111
+ pdd_cli-0.0.43.dist-info/METADATA,sha256=_7sUhN20_Gy0m3PBLOmcRueGZzf8Q_dIPU7_jHPERkw,12398
112
+ pdd_cli-0.0.43.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
113
+ pdd_cli-0.0.43.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
114
+ pdd_cli-0.0.43.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
115
+ pdd_cli-0.0.43.dist-info/RECORD,,