gptdiff 0.1.27__tar.gz → 0.1.28__tar.gz

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.
Files changed (23) hide show
  1. {gptdiff-0.1.27 → gptdiff-0.1.28}/PKG-INFO +1 -1
  2. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff/gptdiff.py +1 -1
  3. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff.egg-info/PKG-INFO +1 -1
  4. {gptdiff-0.1.27 → gptdiff-0.1.28}/setup.py +1 -1
  5. {gptdiff-0.1.27 → gptdiff-0.1.28}/LICENSE.txt +0 -0
  6. {gptdiff-0.1.27 → gptdiff-0.1.28}/README.md +0 -0
  7. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff/__init__.py +0 -0
  8. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff/applydiff.py +0 -0
  9. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff/gptpatch.py +0 -0
  10. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff.egg-info/SOURCES.txt +0 -0
  11. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff.egg-info/dependency_links.txt +0 -0
  12. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff.egg-info/entry_points.txt +0 -0
  13. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff.egg-info/requires.txt +0 -0
  14. {gptdiff-0.1.27 → gptdiff-0.1.28}/gptdiff.egg-info/top_level.txt +0 -0
  15. {gptdiff-0.1.27 → gptdiff-0.1.28}/setup.cfg +0 -0
  16. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_applydiff.py +0 -0
  17. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_applydiff_edgecases.py +0 -0
  18. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_diff_parse.py +0 -0
  19. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_failing_case.py +0 -0
  20. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_parse_diff_per_file.py +0 -0
  21. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_smartapply.py +0 -0
  22. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_strip_bad_ouput.py +0 -0
  23. {gptdiff-0.1.27 → gptdiff-0.1.28}/tests/test_swallow_reasoning.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gptdiff
3
- Version: 0.1.27
3
+ Version: 0.1.28
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
@@ -613,7 +613,7 @@ def smart_apply_patch(project_dir, diff_text, user_prompt, args):
613
613
  else:
614
614
  base_url = os.getenv("GPTDIFF_LLM_BASE_URL", "https://nano-gpt.com/api/v1/")
615
615
 
616
- print(f"Running smartapply in parallel using model '{green}{model}{reset}' from '{blue}{domain_for_url(base_url)}{reset}'...")
616
+ print(f"Running smartapply in parallel for '{file_path}' using model '{green}{model}{reset}' from '{blue}{domain_for_url(base_url)}{reset}'...")
617
617
  try:
618
618
  updated_content = call_llm_for_apply_with_think_tool_available(
619
619
  file_path, original_content, file_diff, model,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gptdiff
3
- Version: 0.1.27
3
+ Version: 0.1.28
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
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='gptdiff',
5
- version='0.1.27',
5
+ version='0.1.28',
6
6
  description='A tool to generate and apply git diffs using LLMs',
7
7
  author='255labs',
8
8
  packages=find_packages(), # Use find_packages() to automatically discover packages
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes