gptdiff 0.1.20__py3-none-any.whl → 0.1.22__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.
- gptdiff/gptdiff.py +66 -18
- {gptdiff-0.1.20.dist-info → gptdiff-0.1.22.dist-info}/METADATA +2 -2
- gptdiff-0.1.22.dist-info/RECORD +9 -0
- gptdiff-0.1.20.dist-info/RECORD +0 -9
- {gptdiff-0.1.20.dist-info → gptdiff-0.1.22.dist-info}/LICENSE.txt +0 -0
- {gptdiff-0.1.20.dist-info → gptdiff-0.1.22.dist-info}/WHEEL +0 -0
- {gptdiff-0.1.20.dist-info → gptdiff-0.1.22.dist-info}/entry_points.txt +0 -0
- {gptdiff-0.1.20.dist-info → gptdiff-0.1.22.dist-info}/top_level.txt +0 -0
gptdiff/gptdiff.py
CHANGED
@@ -345,7 +345,8 @@ def smartapply(diff_text, files, model=None, api_key=None, base_url=None):
|
|
345
345
|
del files[path]
|
346
346
|
else:
|
347
347
|
updated = call_llm_for_apply_with_think_tool_available(path, original, patch, model, api_key=api_key, base_url=base_url)
|
348
|
-
|
348
|
+
cleaned = strip_bad_output(updated, original)
|
349
|
+
files[path] = cleaned
|
349
350
|
|
350
351
|
threads = []
|
351
352
|
|
@@ -585,7 +586,7 @@ def parse_diff_per_file(diff_text):
|
|
585
586
|
for line in lines:
|
586
587
|
if header_line_re.match(line):
|
587
588
|
if current_file is not None and current_lines:
|
588
|
-
if deletion_mode and not any(l.startswith("+++ ") for l in current_lines):
|
589
|
+
if deletion_mode and not any(l.startswith("+++ /dev/null") for l in current_lines):
|
589
590
|
current_lines.append("+++ /dev/null")
|
590
591
|
diffs.append((current_file, "\n".join(current_lines)))
|
591
592
|
current_lines = [line]
|
@@ -778,24 +779,41 @@ def smart_apply_patch(project_dir, diff_text, user_prompt, args):
|
|
778
779
|
else:
|
779
780
|
print(f"\033[1;33mFile {file_path} not found - skipping deletion\033[0m")
|
780
781
|
return
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
if
|
791
|
-
|
782
|
+
|
783
|
+
try:
|
784
|
+
original_content = full_path.read_text()
|
785
|
+
except (UnicodeDecodeError, IOError):
|
786
|
+
print(f"Skipping file {file_path} due to read error")
|
787
|
+
return
|
788
|
+
|
789
|
+
# Use SMARTAPPLY-specific environment variables if set, otherwise fallback.
|
790
|
+
smart_apply_model = os.getenv("GPTDIFF_SMARTAPPLY_MODEL")
|
791
|
+
if smart_apply_model and smart_apply_model.strip():
|
792
|
+
model = smart_apply_model
|
793
|
+
elif hasattr(args, "applymodel") and args.applymodel:
|
794
|
+
model = args.applymodel
|
795
|
+
else:
|
796
|
+
model = os.getenv("GPTDIFF_MODEL", "deepseek-reasoner")
|
797
|
+
|
798
|
+
smart_api_key = os.getenv("GPTDIFF_SMARTAPPLY_API_KEY")
|
799
|
+
if smart_api_key and smart_api_key.strip():
|
800
|
+
api_key = smart_api_key
|
801
|
+
else:
|
802
|
+
api_key = os.getenv("GPTDIFF_LLM_API_KEY")
|
803
|
+
|
804
|
+
smart_base_url = os.getenv("GPTDIFF_SMARTAPPLY_BASE_URL")
|
805
|
+
if smart_base_url and smart_base_url.strip():
|
806
|
+
base_url = smart_base_url
|
807
|
+
else:
|
808
|
+
base_url = os.getenv("GPTDIFF_LLM_BASE_URL", "https://nano-gpt.com/api/v1/")
|
792
809
|
|
793
810
|
print("-" * 40)
|
794
|
-
print("Running smartapply with",
|
811
|
+
print("Running smartapply with", model, "on", file_path)
|
795
812
|
print("-" * 40)
|
796
813
|
try:
|
797
814
|
updated_content = call_llm_for_apply_with_think_tool_available(
|
798
|
-
file_path, original_content, file_diff,
|
815
|
+
file_path, original_content, file_diff, model,
|
816
|
+
api_key=api_key, base_url=base_url,
|
799
817
|
extra_prompt=f"This changeset is from the following instructions:\n{user_prompt}",
|
800
818
|
max_tokens=args.max_tokens)
|
801
819
|
if updated_content.strip() == "":
|
@@ -985,17 +1003,47 @@ def swallow_reasoning(full_response: str) -> (str, str):
|
|
985
1003
|
- reasoning: The extracted reasoning block, or an empty string if not found.
|
986
1004
|
"""
|
987
1005
|
pattern = re.compile(
|
988
|
-
r"(?P<reasoning>>\s*Reasoning.*?Reasoned
|
1006
|
+
r"(?P<reasoning>>\s*Reasoning.*?Reasoned.*?seconds)",
|
989
1007
|
re.DOTALL
|
990
1008
|
)
|
991
1009
|
match = pattern.search(full_response)
|
992
1010
|
if match:
|
993
|
-
|
994
|
-
|
1011
|
+
raw_reasoning = match.group("reasoning")
|
1012
|
+
# Remove any leading '+' characters and extra whitespace from each line
|
1013
|
+
reasoning_lines = [line.lstrip('+').strip() for line in raw_reasoning.splitlines()]
|
1014
|
+
reasoning = "\n".join(reasoning_lines).strip()
|
1015
|
+
|
1016
|
+
# Remove the reasoning block from the response using its exact span
|
1017
|
+
final_content = full_response[:match.start()] + full_response[match.end():]
|
1018
|
+
final_content = final_content.strip()
|
995
1019
|
else:
|
996
1020
|
reasoning = ""
|
997
1021
|
final_content = full_response.strip()
|
998
1022
|
return final_content, reasoning
|
999
1023
|
|
1024
|
+
def strip_bad_output(updated: str, original: str) -> str:
|
1025
|
+
"""
|
1026
|
+
If the original file content does not start with a code fence but the LLM’s updated output
|
1027
|
+
starts with triple backticks (possibly with an introductory message), extract and return only
|
1028
|
+
the content within the first code block.
|
1029
|
+
"""
|
1030
|
+
updated_stripped = updated.strip()
|
1031
|
+
# If the original file does not start with a code fence, but the updated output contains a code block,
|
1032
|
+
# extract and return only the content inside the first code block.
|
1033
|
+
if not original.lstrip().startswith("```"):
|
1034
|
+
# Search for the first code block in the updated output.
|
1035
|
+
m = re.search(r"```(.*?)```", updated_stripped, re.DOTALL)
|
1036
|
+
if m:
|
1037
|
+
content = m.group(1).strip()
|
1038
|
+
lines = content.splitlines()
|
1039
|
+
if len(lines) > 1:
|
1040
|
+
first_line = lines[0].strip()
|
1041
|
+
# If the first line appears to be a language specifier (i.e., a single word)
|
1042
|
+
# and is not "diff", then drop it.
|
1043
|
+
if " " not in first_line and first_line.lower() != "diff":
|
1044
|
+
content = "\n".join(lines[1:]).strip()
|
1045
|
+
return content
|
1046
|
+
return updated_stripped
|
1047
|
+
|
1000
1048
|
if __name__ == "__main__":
|
1001
1049
|
main()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: gptdiff
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.22
|
4
4
|
Summary: A tool to generate and apply git diffs using LLMs
|
5
5
|
Author: 255labs
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE.txt
|
11
11
|
Requires-Dist: openai>=1.0.0
|
12
12
|
Requires-Dist: tiktoken>=0.5.0
|
13
|
-
Requires-Dist:
|
13
|
+
Requires-Dist: ai-agent-toolbox>=0.1.15
|
14
14
|
Provides-Extra: test
|
15
15
|
Requires-Dist: pytest; extra == "test"
|
16
16
|
Requires-Dist: pytest-mock; extra == "test"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
gptdiff/__init__.py,sha256=o1hrK4GFvbfKcHPlLVArz4OunE3euIicEBYaLrdDo0k,198
|
2
|
+
gptdiff/gptdiff.py,sha256=AuZwZ1pg52RPheAzdhtZXSTjBGH4t4KRm7r9ziGHJVQ,41388
|
3
|
+
gptdiff/gptpatch.py,sha256=Z8CWWIfIL2o7xPLVdhzN5GSyJq0vsK4XQRzu4hMWNQk,2194
|
4
|
+
gptdiff-0.1.22.dist-info/LICENSE.txt,sha256=zCJk7yUYpMjFvlipi1dKtaljF8WdZ2NASndBYYbU8BY,1228
|
5
|
+
gptdiff-0.1.22.dist-info/METADATA,sha256=_RspqYV4VPaRrpYTQXNVecFirrxzZq7MelPpZLV3O9Q,8785
|
6
|
+
gptdiff-0.1.22.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
7
|
+
gptdiff-0.1.22.dist-info/entry_points.txt,sha256=0VlVNr-gc04a3SZD5_qKIBbtg_L5P2x3xlKE5ftcdkc,82
|
8
|
+
gptdiff-0.1.22.dist-info/top_level.txt,sha256=XNkQkQGINaDndEwRxg8qToOrJ9coyfAb-EHrSUXzdCE,8
|
9
|
+
gptdiff-0.1.22.dist-info/RECORD,,
|
gptdiff-0.1.20.dist-info/RECORD
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
gptdiff/__init__.py,sha256=o1hrK4GFvbfKcHPlLVArz4OunE3euIicEBYaLrdDo0k,198
|
2
|
-
gptdiff/gptdiff.py,sha256=LKBq_E9GanyDv-2FBbbWvP7JUl2Ignb6zvkD2GqmdPo,39074
|
3
|
-
gptdiff/gptpatch.py,sha256=Z8CWWIfIL2o7xPLVdhzN5GSyJq0vsK4XQRzu4hMWNQk,2194
|
4
|
-
gptdiff-0.1.20.dist-info/LICENSE.txt,sha256=zCJk7yUYpMjFvlipi1dKtaljF8WdZ2NASndBYYbU8BY,1228
|
5
|
-
gptdiff-0.1.20.dist-info/METADATA,sha256=v8-LTu-NVLikIexMY5RDEf2t2VTAh7t_3hch379VzFA,8785
|
6
|
-
gptdiff-0.1.20.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
7
|
-
gptdiff-0.1.20.dist-info/entry_points.txt,sha256=0VlVNr-gc04a3SZD5_qKIBbtg_L5P2x3xlKE5ftcdkc,82
|
8
|
-
gptdiff-0.1.20.dist-info/top_level.txt,sha256=XNkQkQGINaDndEwRxg8qToOrJ9coyfAb-EHrSUXzdCE,8
|
9
|
-
gptdiff-0.1.20.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|