pygent 0.1.9__tar.gz → 0.1.10__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 (26) hide show
  1. {pygent-0.1.9 → pygent-0.1.10}/PKG-INFO +1 -1
  2. {pygent-0.1.9 → pygent-0.1.10}/pygent/runtime.py +1 -1
  3. {pygent-0.1.9 → pygent-0.1.10}/pygent.egg-info/PKG-INFO +1 -1
  4. {pygent-0.1.9 → pygent-0.1.10}/pyproject.toml +1 -1
  5. {pygent-0.1.9 → pygent-0.1.10}/LICENSE +0 -0
  6. {pygent-0.1.9 → pygent-0.1.10}/README.md +0 -0
  7. {pygent-0.1.9 → pygent-0.1.10}/pygent/__init__.py +0 -0
  8. {pygent-0.1.9 → pygent-0.1.10}/pygent/__main__.py +0 -0
  9. {pygent-0.1.9 → pygent-0.1.10}/pygent/agent.py +0 -0
  10. {pygent-0.1.9 → pygent-0.1.10}/pygent/cli.py +0 -0
  11. {pygent-0.1.9 → pygent-0.1.10}/pygent/models.py +0 -0
  12. {pygent-0.1.9 → pygent-0.1.10}/pygent/openai_compat.py +0 -0
  13. {pygent-0.1.9 → pygent-0.1.10}/pygent/py.typed +0 -0
  14. {pygent-0.1.9 → pygent-0.1.10}/pygent/tools.py +0 -0
  15. {pygent-0.1.9 → pygent-0.1.10}/pygent/ui.py +0 -0
  16. {pygent-0.1.9 → pygent-0.1.10}/pygent.egg-info/SOURCES.txt +0 -0
  17. {pygent-0.1.9 → pygent-0.1.10}/pygent.egg-info/dependency_links.txt +0 -0
  18. {pygent-0.1.9 → pygent-0.1.10}/pygent.egg-info/entry_points.txt +0 -0
  19. {pygent-0.1.9 → pygent-0.1.10}/pygent.egg-info/requires.txt +0 -0
  20. {pygent-0.1.9 → pygent-0.1.10}/pygent.egg-info/top_level.txt +0 -0
  21. {pygent-0.1.9 → pygent-0.1.10}/setup.cfg +0 -0
  22. {pygent-0.1.9 → pygent-0.1.10}/tests/test_autorun.py +0 -0
  23. {pygent-0.1.9 → pygent-0.1.10}/tests/test_custom_model.py +0 -0
  24. {pygent-0.1.9 → pygent-0.1.10}/tests/test_runtime.py +0 -0
  25. {pygent-0.1.9 → pygent-0.1.10}/tests/test_tools.py +0 -0
  26. {pygent-0.1.9 → pygent-0.1.10}/tests/test_version.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygent
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: Pygent is a minimalist coding assistant that runs commands in a Docker container when available and falls back to local execution. See https://marianochaves.github.io/pygent for documentation and https://github.com/marianochaves/pygent for the source code.
5
5
  Author-email: Mariano Chaves <mchaves.software@gmail.com>
6
6
  Project-URL: Documentation, https://marianochaves.github.io/pygent
@@ -81,7 +81,7 @@ class Runtime:
81
81
  def write_file(self, path: Union[str, Path], content: str) -> str:
82
82
  p = self.base_dir / path
83
83
  p.parent.mkdir(parents=True, exist_ok=True)
84
- p.write_text(content)
84
+ p.write_text(content, encoding="utf-8")
85
85
  return f"Wrote {p.relative_to(self.base_dir)}"
86
86
 
87
87
  def cleanup(self) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygent
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: Pygent is a minimalist coding assistant that runs commands in a Docker container when available and falls back to local execution. See https://marianochaves.github.io/pygent for documentation and https://github.com/marianochaves/pygent for the source code.
5
5
  Author-email: Mariano Chaves <mchaves.software@gmail.com>
6
6
  Project-URL: Documentation, https://marianochaves.github.io/pygent
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pygent"
3
- version = "0.1.9"
3
+ version = "0.1.10"
4
4
  description = "Pygent is a minimalist coding assistant that runs commands in a Docker container when available and falls back to local execution. See https://marianochaves.github.io/pygent for documentation and https://github.com/marianochaves/pygent for the source code."
5
5
  authors = [ { name = "Mariano Chaves", email = "mchaves.software@gmail.com" } ]
6
6
  requires-python = ">=3.9"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes