thinking-machine 0.0.24__tar.gz → 0.0.25__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 (31) hide show
  1. {thinking_machine-0.0.24/src/thinking_machine.egg-info → thinking_machine-0.0.25}/PKG-INFO +1 -1
  2. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/pyproject.toml +1 -1
  3. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/cli.py +1 -1
  4. {thinking_machine-0.0.24 → thinking_machine-0.0.25/src/thinking_machine.egg-info}/PKG-INFO +1 -1
  5. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/LICENSE +0 -0
  6. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/MANIFEST.in +0 -0
  7. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/README.md +0 -0
  8. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/setup.cfg +0 -0
  9. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/__init__.py +0 -0
  10. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/config.py +0 -0
  11. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/githf.py +0 -0
  12. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/machina.yaml +0 -0
  13. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/machine.py +0 -0
  14. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/__init__.py +0 -0
  15. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/camelids.py +0 -0
  16. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/castor_pollux.py +0 -0
  17. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/depsek.py +0 -0
  18. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/electroid.py +0 -0
  19. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/openai.py +0 -0
  20. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/qrog.py +0 -0
  21. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/providers/strangelove.py +0 -0
  22. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine/utilities.py +0 -0
  23. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/SOURCES.txt +0 -0
  24. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/dependency_links.txt +0 -0
  25. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/entry_points.txt +0 -0
  26. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/requires.txt +0 -0
  27. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/top_level.txt +0 -0
  28. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/tests/test_cli.py +0 -0
  29. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/tests/test_e2e.py +0 -0
  30. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/tests/test_llm_soup.py +0 -0
  31. {thinking_machine-0.0.24 → thinking_machine-0.0.25}/tests/test_utilities.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thinking-machine
3
- Version: 0.0.24
3
+ Version: 0.0.25
4
4
  Summary: A Machine that thinks.
5
5
  Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
6
6
  Project-URL: Homepage, https://github.com/machina-ratiocinatrix/thinking-machine
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "thinking-machine"
7
- version = "0.0.24"
7
+ version = "0.0.25"
8
8
  authors = [
9
9
  {name="Machina Ratiocinatrix", email="machina.ratio@gmail.com"},
10
10
  {name="Alexander Fedotov", email="alex.fedotov@aol.com"}
@@ -72,7 +72,7 @@ def run(provider_api_key, github_token, debug, interactive, filenames):
72
72
  environ['GITHUB_TOKEN'] = github_token
73
73
 
74
74
  raw_input = ''
75
- for line in fileinput.input(files=filenames, encoding="utf-8"):
75
+ for line in fileinput.input(files=filenames or ('-',), encoding="utf-8"):
76
76
  raw_input += line
77
77
 
78
78
  from .machine import machine
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thinking-machine
3
- Version: 0.0.24
3
+ Version: 0.0.25
4
4
  Summary: A Machine that thinks.
5
5
  Author-email: Machina Ratiocinatrix <machina.ratio@gmail.com>, Alexander Fedotov <alex.fedotov@aol.com>
6
6
  Project-URL: Homepage, https://github.com/machina-ratiocinatrix/thinking-machine