thinking-machine 0.0.23__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.23/src/thinking_machine.egg-info → thinking_machine-0.0.25}/PKG-INFO +1 -1
  2. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/pyproject.toml +1 -1
  3. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/__init__.py +2 -0
  4. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/cli.py +1 -1
  5. {thinking_machine-0.0.23 → thinking_machine-0.0.25/src/thinking_machine.egg-info}/PKG-INFO +1 -1
  6. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/LICENSE +0 -0
  7. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/MANIFEST.in +0 -0
  8. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/README.md +0 -0
  9. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/setup.cfg +0 -0
  10. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/config.py +0 -0
  11. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/githf.py +0 -0
  12. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/machina.yaml +0 -0
  13. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/machine.py +0 -0
  14. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/__init__.py +0 -0
  15. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/camelids.py +0 -0
  16. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/castor_pollux.py +0 -0
  17. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/depsek.py +0 -0
  18. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/electroid.py +0 -0
  19. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/openai.py +0 -0
  20. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/qrog.py +0 -0
  21. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/strangelove.py +0 -0
  22. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/utilities.py +0 -0
  23. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/SOURCES.txt +0 -0
  24. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/dependency_links.txt +0 -0
  25. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/entry_points.txt +0 -0
  26. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/requires.txt +0 -0
  27. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/top_level.txt +0 -0
  28. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/tests/test_cli.py +0 -0
  29. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/tests/test_e2e.py +0 -0
  30. {thinking_machine-0.0.23 → thinking_machine-0.0.25}/tests/test_llm_soup.py +0 -0
  31. {thinking_machine-0.0.23 → 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.23
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.23"
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"}
@@ -7,6 +7,7 @@ LICENSE file in the root directory of this source tree.
7
7
  """
8
8
  from .config import Config
9
9
  from .machine import machine
10
+ from .cli import run
10
11
  from .githf import fetch_instructions
11
12
  from .utilities import (plato_text_to_muj,
12
13
  plato_text_to_mpuj,
@@ -16,6 +17,7 @@ from .utilities import (plato_text_to_muj,
16
17
 
17
18
  __all__ = [
18
19
  'machine',
20
+ 'run',
19
21
  'fetch_instructions',
20
22
  'Config'
21
23
  ]
@@ -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.23
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