pdd-cli 0.0.9__py3-none-any.whl → 0.0.11__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/bug_to_unit_test.py +4 -4
- pdd/change.py +1 -1
- pdd/cli.py +1 -1
- pdd/code_generator.py +1 -1
- pdd/conflicts_in_prompts.py +1 -1
- pdd/context_generator.py +1 -1
- pdd/data/llm_model.csv +1 -3
- pdd/detect_change.py +1 -1
- pdd/fix_code_module_errors.py +1 -1
- pdd/fix_errors_from_unit_tests.py +1 -1
- pdd/generate_test.py +2 -2
- pdd/increase_tests.py +1 -1
- pdd/llm_invoke.py +1 -0
- pdd/split.py +1 -1
- pdd/xml_tagger.py +1 -1
- {pdd_cli-0.0.9.dist-info → pdd_cli-0.0.11.dist-info}/METADATA +3 -3
- {pdd_cli-0.0.9.dist-info → pdd_cli-0.0.11.dist-info}/RECORD +21 -21
- {pdd_cli-0.0.9.dist-info → pdd_cli-0.0.11.dist-info}/LICENSE +0 -0
- {pdd_cli-0.0.9.dist-info → pdd_cli-0.0.11.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.9.dist-info → pdd_cli-0.0.11.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.9.dist-info → pdd_cli-0.0.11.dist-info}/top_level.txt +0 -0
pdd/bug_to_unit_test.py
CHANGED
|
@@ -17,7 +17,7 @@ def bug_to_unit_test(
|
|
|
17
17
|
prompt_used_to_generate_the_code: str,
|
|
18
18
|
code_under_test: str,
|
|
19
19
|
program_used_to_run_code_under_test: str,
|
|
20
|
-
strength: float = 0.
|
|
20
|
+
strength: float = 0.97,
|
|
21
21
|
temperature: float = 0.0,
|
|
22
22
|
language: str = "python"
|
|
23
23
|
) -> Tuple[str, float, str]:
|
|
@@ -30,7 +30,7 @@ def bug_to_unit_test(
|
|
|
30
30
|
prompt_used_to_generate_the_code (str): Original prompt used to generate the code
|
|
31
31
|
code_under_test (str): Code to be tested
|
|
32
32
|
program_used_to_run_code_under_test (str): Program used to run the code
|
|
33
|
-
strength (float, optional): Strength of the LLM model. Must be between 0 and 1. Defaults to 0.
|
|
33
|
+
strength (float, optional): Strength of the LLM model. Must be between 0 and 1. Defaults to 0.97.
|
|
34
34
|
temperature (float, optional): Temperature of the LLM model. Defaults to 0.0.
|
|
35
35
|
language (str, optional): Programming language. Defaults to "python".
|
|
36
36
|
|
|
@@ -85,7 +85,7 @@ def bug_to_unit_test(
|
|
|
85
85
|
|
|
86
86
|
reasoning, is_finished, unfinished_cost, unfinished_model = unfinished_prompt(
|
|
87
87
|
prompt_text=last_600_chars,
|
|
88
|
-
strength=0.
|
|
88
|
+
strength=0.97,
|
|
89
89
|
temperature=temperature,
|
|
90
90
|
verbose=False
|
|
91
91
|
)
|
|
@@ -111,7 +111,7 @@ def bug_to_unit_test(
|
|
|
111
111
|
final_code, postprocess_cost, postprocess_model = postprocess(
|
|
112
112
|
result,
|
|
113
113
|
language,
|
|
114
|
-
strength=0.
|
|
114
|
+
strength=0.97,
|
|
115
115
|
temperature=temperature,
|
|
116
116
|
verbose=True
|
|
117
117
|
)
|
pdd/change.py
CHANGED
|
@@ -86,7 +86,7 @@ def change(
|
|
|
86
86
|
extract_response = llm_invoke(
|
|
87
87
|
prompt=extract_prompt,
|
|
88
88
|
input_json={"llm_output": change_response["result"]},
|
|
89
|
-
strength=0.
|
|
89
|
+
strength=0.97, # Fixed strength as specified
|
|
90
90
|
temperature=temperature,
|
|
91
91
|
verbose=verbose,
|
|
92
92
|
output_pydantic=ExtractedPrompt
|
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.11")
|
|
50
50
|
@click.pass_context
|
|
51
51
|
def cli(
|
|
52
52
|
ctx,
|
pdd/code_generator.py
CHANGED
pdd/conflicts_in_prompts.py
CHANGED
|
@@ -85,7 +85,7 @@ def conflicts_in_prompts(
|
|
|
85
85
|
extract_response = llm_invoke(
|
|
86
86
|
prompt=extract_prompt,
|
|
87
87
|
input_json=extract_input,
|
|
88
|
-
strength=0.
|
|
88
|
+
strength=0.97, # As specified
|
|
89
89
|
temperature=temperature,
|
|
90
90
|
output_pydantic=ConflictResponse,
|
|
91
91
|
verbose=verbose
|
pdd/context_generator.py
CHANGED
|
@@ -115,7 +115,7 @@ def context_generator(code_module: str, prompt: str, language: str = "python", s
|
|
|
115
115
|
example_code, postprocess_cost, postprocess_model = postprocess(
|
|
116
116
|
llm_output=final_llm_output,
|
|
117
117
|
language=language,
|
|
118
|
-
strength=0.
|
|
118
|
+
strength=0.97,
|
|
119
119
|
temperature=temperature,
|
|
120
120
|
verbose=verbose
|
|
121
121
|
)
|
pdd/data/llm_model.csv
CHANGED
|
@@ -10,10 +10,8 @@ Google,gemini-exp-1206,1.25,5,1313,,GOOGLE_API_KEY,,,8192,,False
|
|
|
10
10
|
OpenAI,"deepseek-r1-distill-llama-70b-specdec",5,5,1314,https://api.groq.com/openai/v1,GROQ_API_KEY,autotokenizer,deepseek-coder-7b-instruct-v1.5,16384,,False
|
|
11
11
|
Ollama,"deepseek-r1:70b-llama-distill-q8_0",0.0,0.0,1315,,PWD,,,,,False
|
|
12
12
|
Ollama,deepseek-r1:32b-qwen-distill-fp16,0.0,0.0,1316,,PWD,,,,,False
|
|
13
|
-
Fireworks,"accounts/fireworks/models/deepseek-r1-distill-qwen-32b",.5,.5,1317,,FIREWORKS_API_KEY,,,8192,,True
|
|
14
|
-
Fireworks,accounts/fireworks/models/deepseek-r1-distill-llama-70b,1.2,1.2,1318,,FIREWORKS_API_KEY,,,16384,,False
|
|
15
13
|
OpenAI,"o3-mini",1.1,4.4,1319,,OPENAI_API_KEY,tiktoken,o200k_base,,100000,True
|
|
16
14
|
OpenAI,"o1-2024-12-17",15,60,1331,,OPENAI_API_KEY,tiktoken,o200k_base,,32768,True
|
|
17
|
-
OpenAI,"
|
|
15
|
+
OpenAI,"gpt-4o",2.5,10,1332,,OPENAI_API_KEY,tiktoken,o200k_base,16384,,True
|
|
18
16
|
OpenAI,"deepseek-reasoner",0.55,2.19,1336,https://api.deepseek.com/beta,DEEPSEEK_API_KEY,autotokenizer,deepseek-coder-7b-instruct-v1.5,8192,,False
|
|
19
17
|
Fireworks,accounts/fireworks/models/deepseek-r1,3,8,1338,,FIREWORKS_API_KEY,,,8192,,False
|
pdd/detect_change.py
CHANGED
pdd/fix_code_module_errors.py
CHANGED
|
@@ -95,7 +95,7 @@ def fix_code_module_errors(
|
|
|
95
95
|
second_response = llm_invoke(
|
|
96
96
|
prompt=extract_prompt,
|
|
97
97
|
input_json=extract_input,
|
|
98
|
-
strength=0.
|
|
98
|
+
strength=0.97, # Fixed strength as specified
|
|
99
99
|
temperature=temperature,
|
|
100
100
|
verbose=verbose,
|
|
101
101
|
output_pydantic=CodeFix
|
|
@@ -204,7 +204,7 @@ def fix_errors_from_unit_tests(
|
|
|
204
204
|
"unit_test": unit_test,
|
|
205
205
|
"code": code
|
|
206
206
|
},
|
|
207
|
-
strength=0.
|
|
207
|
+
strength=0.97, # Fixed strength as per requirements
|
|
208
208
|
temperature=temperature,
|
|
209
209
|
output_pydantic=CodeFix,
|
|
210
210
|
verbose=verbose
|
pdd/generate_test.py
CHANGED
|
@@ -76,7 +76,7 @@ def generate_test(
|
|
|
76
76
|
last_600_chars = result[-600:] if len(result) > 600 else result
|
|
77
77
|
reasoning, is_finished, check_cost, check_model = unfinished_prompt(
|
|
78
78
|
prompt_text=last_600_chars,
|
|
79
|
-
strength=0.
|
|
79
|
+
strength=0.97,
|
|
80
80
|
temperature=temperature,
|
|
81
81
|
verbose=verbose
|
|
82
82
|
)
|
|
@@ -101,7 +101,7 @@ def generate_test(
|
|
|
101
101
|
processed_result, post_cost, post_model = postprocess(
|
|
102
102
|
result,
|
|
103
103
|
language=language,
|
|
104
|
-
strength
|
|
104
|
+
strength=.97,
|
|
105
105
|
temperature=temperature,
|
|
106
106
|
verbose=verbose
|
|
107
107
|
)
|
pdd/increase_tests.py
CHANGED
pdd/llm_invoke.py
CHANGED
|
@@ -317,6 +317,7 @@ def llm_invoke(prompt, input_json, strength, temperature, verbose=False, output_
|
|
|
317
317
|
llm = create_llm_instance(model, temperature, handler)
|
|
318
318
|
if output_pydantic:
|
|
319
319
|
if model.structured_output:
|
|
320
|
+
llm.cache = False # TODO: remove this fix once langchain cache is fixed https://github.com/langchain-ai/langchain/issues/29003
|
|
320
321
|
llm = llm.with_structured_output(output_pydantic)
|
|
321
322
|
chain = prompt_template | llm
|
|
322
323
|
else:
|
pdd/split.py
CHANGED
|
@@ -91,7 +91,7 @@ def split(
|
|
|
91
91
|
extract_response = llm_invoke(
|
|
92
92
|
prompt=processed_extract_prompt,
|
|
93
93
|
input_json={"llm_output": split_response["result"]},
|
|
94
|
-
strength=0.
|
|
94
|
+
strength=0.97, # Fixed strength for extraction
|
|
95
95
|
temperature=temperature,
|
|
96
96
|
output_pydantic=PromptSplit,
|
|
97
97
|
verbose=verbose
|
pdd/xml_tagger.py
CHANGED
|
@@ -72,7 +72,7 @@ def xml_tagger(
|
|
|
72
72
|
extraction_response = llm_invoke(
|
|
73
73
|
prompt=extract_xml_prompt,
|
|
74
74
|
input_json={"xml_generated_analysis": xml_generated_analysis},
|
|
75
|
-
strength=0.
|
|
75
|
+
strength=0.97, # Fixed strength as specified
|
|
76
76
|
temperature=temperature,
|
|
77
77
|
verbose=verbose,
|
|
78
78
|
output_pydantic=XMLOutput
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: pdd-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
4
4
|
Summary: PDD (Prompt-Driven Development) Command Line Interface
|
|
5
5
|
Author: Greg Tanaka
|
|
6
6
|
Author-email: glt@alumni.caltech.edu
|
|
@@ -40,7 +40,7 @@ Requires-Dist: semver==3.0.2
|
|
|
40
40
|
Requires-Dist: setuptools==75.1.0
|
|
41
41
|
Requires-Dist: python-Levenshtein
|
|
42
42
|
|
|
43
|
-
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.
|
|
43
|
+
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.11-blue
|
|
44
44
|
:alt: PDD-CLI Version
|
|
45
45
|
|
|
46
46
|
PDD (Prompt-Driven Development) Command Line Interface
|
|
@@ -101,7 +101,7 @@ After installation, verify:
|
|
|
101
101
|
|
|
102
102
|
pdd --version
|
|
103
103
|
|
|
104
|
-
You'll see the current PDD version (e.g., 0.0.
|
|
104
|
+
You'll see the current PDD version (e.g., 0.0.11).
|
|
105
105
|
|
|
106
106
|
Advanced Installation Tips
|
|
107
107
|
--------------------------
|
|
@@ -3,40 +3,40 @@ pdd/auto_deps_main.py,sha256=2lZ-8WqzrPVMnzuVC-O7y1gazRLbY66fbmOdKnkYKNg,3630
|
|
|
3
3
|
pdd/auto_include.py,sha256=aCa2QXDlOdKbh4vS3uDjWptkHB_Qv3QBNCbZe6mGWoo,6074
|
|
4
4
|
pdd/auto_update.py,sha256=IFqHx19GvUY3RTdd-AX3fj9RPigZflizbAzzfF3HixQ,2891
|
|
5
5
|
pdd/bug_main.py,sha256=myKU9--QWdkV4Wf3mD2PoLPJFNgRjwf4z8s7TC28G_s,3720
|
|
6
|
-
pdd/bug_to_unit_test.py,sha256=
|
|
7
|
-
pdd/change.py,sha256=
|
|
6
|
+
pdd/bug_to_unit_test.py,sha256=dsJNm6qAwx-m7RvFF5RquFJRzxzZGCWT4IKYnzVCUws,5569
|
|
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=xUoeKxEJDJuASejFBJsYc9XdehRFVZmpqiXQvqml-1o,16593
|
|
10
10
|
pdd/cmd_test_main.py,sha256=aSCxRnSurg15AvPcJDAPp9xy8p_qqnjU1oV14Hi2R54,5301
|
|
11
|
-
pdd/code_generator.py,sha256=
|
|
11
|
+
pdd/code_generator.py,sha256=n5akrX7VPe71X4RsD6kKqAVvzBLMlciJI4RtJA1PcgA,4375
|
|
12
12
|
pdd/code_generator_main.py,sha256=G2eRBPXc1cGszkk0PbIPmJZHPaf_dw5d2yZbsvQZA3c,4793
|
|
13
13
|
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
14
|
-
pdd/conflicts_in_prompts.py,sha256=
|
|
14
|
+
pdd/conflicts_in_prompts.py,sha256=rwCHlsIOJeFniox-dAA3v6Xcc3fjcVP0nRY0BSb92Cc,4654
|
|
15
15
|
pdd/conflicts_main.py,sha256=O87s9baSa9DJMndxPIdsnYO_spoajcv9jii3XYt_-fM,3473
|
|
16
16
|
pdd/construct_paths.py,sha256=8hxkTI_AF5XNpGR4JqCsF4olDBtL8NslXdOZGQt78WM,10039
|
|
17
|
-
pdd/context_generator.py,sha256=
|
|
17
|
+
pdd/context_generator.py,sha256=xLquyM6h40Xqg_wcdowqobrLFyZpIvGrOCJD-OBuoy4,5798
|
|
18
18
|
pdd/context_generator_main.py,sha256=TtsY3jHictdEjmB4cHyNwXmZW_LfHJp3KW3UXyzR2cU,2735
|
|
19
19
|
pdd/continue_generation.py,sha256=hAVySc6oEsM_Zpj5AWBKEZqMWgoLlQBHcFtkAZ9sZ0E,5192
|
|
20
20
|
pdd/crash_main.py,sha256=YngROG62ORLGm-IORLq1vlVVidBGc9g2k0GAmq1jFNM,5287
|
|
21
|
-
pdd/detect_change.py,sha256=
|
|
21
|
+
pdd/detect_change.py,sha256=ZtgGjGPrD0po-37TEzSbnzFyor7spXHjnT7G6NJ4aCI,5261
|
|
22
22
|
pdd/detect_change_main.py,sha256=1Z4ymhjJaVr2aliGyqkqeqSmQ7QMgcl23p0wdsmBas0,3653
|
|
23
23
|
pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
|
|
24
24
|
pdd/fix_code_loop.py,sha256=L0yxq2yAziPIyFGb8lIP2mvufu8a_gtc5nnN2LuMuKs,8596
|
|
25
|
-
pdd/fix_code_module_errors.py,sha256=
|
|
25
|
+
pdd/fix_code_module_errors.py,sha256=M6AnlR2jF5LI-nNg6gIO5LvSkxiaLIUGyTvfnUfe1cU,4625
|
|
26
26
|
pdd/fix_error_loop.py,sha256=EtjqF9e4DVFQ0hh8fsKGYMqYwmN24yOHtziPMZFcvrA,15889
|
|
27
|
-
pdd/fix_errors_from_unit_tests.py,sha256=
|
|
27
|
+
pdd/fix_errors_from_unit_tests.py,sha256=8qCEyHZ6lUSBtV9vhQyhgAxDuhngmOy7vVy2HObckd0,8934
|
|
28
28
|
pdd/fix_main.py,sha256=02OIViH12BcsykpDp4Osxw2ndEeThnNakMFkzdpYr48,5333
|
|
29
29
|
pdd/generate_output_paths.py,sha256=zz42GTx9eGyWIYSl3jcWvtJRGnieC3eoPM6DIVcWz2k,7219
|
|
30
|
-
pdd/generate_test.py,sha256=
|
|
30
|
+
pdd/generate_test.py,sha256=BwmRnjaPDTlxUqJZ37N3bxTBHlLPCZIR5i1bwrNNv54,4791
|
|
31
31
|
pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
|
|
32
32
|
pdd/get_extension.py,sha256=ZSsbi7n-tFw-7RQX7c3pV1qWsRt72qS_3AlAYjV53jA,2393
|
|
33
33
|
pdd/get_jwt_token.py,sha256=BGxqMh7qf2mG-TFw7JlV941O9XtrW22L_dRoS_UZNjM,11560
|
|
34
34
|
pdd/get_language.py,sha256=yxyQqVEb5H3ep3Hc6XgAl3vMLTHD5OIs8ZSekB493GA,1438
|
|
35
35
|
pdd/git_update.py,sha256=Ya7eI7YFtGIpT7FdziFJfnFkiZlj8I9Lh98lqtXfClc,2855
|
|
36
|
-
pdd/increase_tests.py,sha256=
|
|
36
|
+
pdd/increase_tests.py,sha256=ZsBWkUBtZIsFfqTw3gOJLaYZMhNNRIKd-vu8Tv_AZG0,3243
|
|
37
37
|
pdd/insert_includes.py,sha256=bocHBAzs4MAudtIw-JjyHO0kYajwlOLS9jBzV33_LRU,5224
|
|
38
38
|
pdd/install_completion.py,sha256=joTIKRkx0e6kRrXj9NXtMODnIG-G0Twt7wBmj8TirmE,5102
|
|
39
|
-
pdd/llm_invoke.py,sha256=
|
|
39
|
+
pdd/llm_invoke.py,sha256=KZkNPvVHWPDAcuxw7ugWcqGIRpy_qxPSczCIe4blXQg,16949
|
|
40
40
|
pdd/load_prompt_template.py,sha256=4NH8_t5eon_vcyTznqtemJ_yAPkTJm_hSdTRgzj3qEQ,1907
|
|
41
41
|
pdd/pdd_completion.fish,sha256=rs-43fa3kcDBN1uy4oxiofLAWmaqW0U2j5Mu4wCHh5M,6121
|
|
42
42
|
pdd/pdd_completion.sh,sha256=qurWrEksqptjryBZszxHv6i0MqgnIqJenMBDrzMgI98,4535
|
|
@@ -46,7 +46,7 @@ pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
|
|
|
46
46
|
pdd/preprocess.py,sha256=7_mkREBFlWjIUIyZsYBlnCvIGtpVgPeToHUpaq_ZHC0,8177
|
|
47
47
|
pdd/preprocess_main.py,sha256=dAgFGmjuJB1taZl31c1sY2jMGtQgjnWLbpeB7EFtojY,2977
|
|
48
48
|
pdd/process_csv_change.py,sha256=10XTzVFQ0rE4lPSF93yhIW7VJmxmfe-hk1B7ui_qxJI,8415
|
|
49
|
-
pdd/split.py,sha256=
|
|
49
|
+
pdd/split.py,sha256=aISO7DcD8UkE_r7w1Ii466RgxSlVDFfTCymJ7IWUhsw,4692
|
|
50
50
|
pdd/split_main.py,sha256=dV9G2YJDp12ik6x1a_dgBtyu27BSt4Fyd2trgxL7qFI,4123
|
|
51
51
|
pdd/summarize_directory.py,sha256=3KUOP30RgkBXpz0_btmpubnO1vWAQ3tKyVI84Zp-E9Q,9041
|
|
52
52
|
pdd/trace.py,sha256=DMgL8cEk8gwdpyOumEi3am8wTq68e4OJzoc61H0vLAA,5011
|
|
@@ -55,9 +55,9 @@ pdd/track_cost.py,sha256=VIrHYh4i2G5T5Dq1plxwuzsG4OrHQgO0GPgFckgsQ_4,3266
|
|
|
55
55
|
pdd/unfinished_prompt.py,sha256=Oql2c4EgdOe7BVofM0gVs8aN5EQnLuoO-FLibjamE3A,4076
|
|
56
56
|
pdd/update_main.py,sha256=5a4nsOOaAXULdk0BS9pj4blZ_QHBFeET37uaAqoJI2g,3912
|
|
57
57
|
pdd/update_prompt.py,sha256=OdPRIAMu7OBx7E4SOU95hWgdtBY4oO8XOe1dvPChMlU,4351
|
|
58
|
-
pdd/xml_tagger.py,sha256=
|
|
58
|
+
pdd/xml_tagger.py,sha256=NcyWacoXarRi6_16pchMhh1M7V-Gfz1cQImO_If2ia4,4241
|
|
59
59
|
pdd/data/language_format.csv,sha256=xUTmFHXSBVBRfPV-NKG3oWo5_ped5ukP-ekFcIlVzJk,877
|
|
60
|
-
pdd/data/llm_model.csv,sha256=
|
|
60
|
+
pdd/data/llm_model.csv,sha256=TXQpHGuRntkDIifFOdSwT07trYSphULydjjWu2LaVME,1691
|
|
61
61
|
pdd/prompts/auto_include_LLM.prompt,sha256=0t-Jmm5o6vVTmqsISTUiewqPT8bB389UZnJoHZvgtu4,13967
|
|
62
62
|
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=--ysObDv9WzOEyJMuaKEdDHkRrR_1j0dmOtlAFr4YRg,1205
|
|
63
63
|
pdd/prompts/change_LLM.prompt,sha256=W3sE6XZ2fb35XdqOykK1hDPtqkHSv9MZGD3sT8B8WjY,2083
|
|
@@ -89,9 +89,9 @@ pdd/prompts/trim_results_start_LLM.prompt,sha256=WwFlOHha4wzMLtRHDMI6GtcNdl2toE8
|
|
|
89
89
|
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
|
|
90
90
|
pdd/prompts/update_prompt_LLM.prompt,sha256=_lGaxeVP4oF8yGqiN6yj6UE0j79lxfGdjsYr5w5KSYk,1261
|
|
91
91
|
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
92
|
-
pdd_cli-0.0.
|
|
93
|
-
pdd_cli-0.0.
|
|
94
|
-
pdd_cli-0.0.
|
|
95
|
-
pdd_cli-0.0.
|
|
96
|
-
pdd_cli-0.0.
|
|
97
|
-
pdd_cli-0.0.
|
|
92
|
+
pdd_cli-0.0.11.dist-info/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
|
|
93
|
+
pdd_cli-0.0.11.dist-info/METADATA,sha256=le4lAMSFfByKscN2rUhNUDi3IPInwYR3u41a5ZsfZfM,6808
|
|
94
|
+
pdd_cli-0.0.11.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
95
|
+
pdd_cli-0.0.11.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
96
|
+
pdd_cli-0.0.11.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
97
|
+
pdd_cli-0.0.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|