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.
- {thinking_machine-0.0.23/src/thinking_machine.egg-info → thinking_machine-0.0.25}/PKG-INFO +1 -1
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/pyproject.toml +1 -1
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/__init__.py +2 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/cli.py +1 -1
- {thinking_machine-0.0.23 → thinking_machine-0.0.25/src/thinking_machine.egg-info}/PKG-INFO +1 -1
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/LICENSE +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/MANIFEST.in +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/README.md +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/setup.cfg +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/config.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/githf.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/machina.yaml +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/machine.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/__init__.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/camelids.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/castor_pollux.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/depsek.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/electroid.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/openai.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/qrog.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/strangelove.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/utilities.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/SOURCES.txt +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/dependency_links.txt +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/entry_points.txt +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/requires.txt +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/top_level.txt +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/tests/test_cli.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/tests/test_e2e.py +0 -0
- {thinking_machine-0.0.23 → thinking_machine-0.0.25}/tests/test_llm_soup.py +0 -0
- {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.
|
|
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
|
|
@@ -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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/__init__.py
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/camelids.py
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/castor_pollux.py
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/depsek.py
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/electroid.py
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/openai.py
RENAMED
|
File without changes
|
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine/providers/strangelove.py
RENAMED
|
File without changes
|
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/requires.txt
RENAMED
|
File without changes
|
{thinking_machine-0.0.23 → thinking_machine-0.0.25}/src/thinking_machine.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|