machine-thinking 0.0.5__tar.gz → 0.0.6__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.
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/PKG-INFO +1 -1
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/pyproject.toml +1 -1
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking/utils.py +1 -1
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking.egg-info/PKG-INFO +1 -1
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/LICENSE +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/README.md +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/setup.cfg +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/__init__.py +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking/__init__.py +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking/chat.py +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking/completion.py +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking/messages.py +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking.egg-info/SOURCES.txt +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking.egg-info/dependency_links.txt +0 -0
- {machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: machine-thinking
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: Calling the API of 'Thinking-Machines Lab' models without dependencies.
|
|
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/machine-thinking
|
|
@@ -3,7 +3,7 @@ requires = ["setuptools>=67.0"]
|
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
[project]
|
|
5
5
|
name = "machine-thinking"
|
|
6
|
-
version = "0.0.
|
|
6
|
+
version = "0.0.6"
|
|
7
7
|
authors = [
|
|
8
8
|
{name="Machina Ratiocinatrix", email="machina.ratio@gmail.com"},
|
|
9
9
|
{name="Alexander Fedotov", email="alex.fedotov@aol.com"}
|
|
@@ -14,7 +14,7 @@ from os import environ
|
|
|
14
14
|
api_key = environ.get("TINKER_API_KEY", '')
|
|
15
15
|
default_model = environ.get("TINKER_DEFAULT_MODEL", 'thinkingmachines/Inkling')
|
|
16
16
|
api_base_oai = environ.get("TINKER_OAI_API_BASE", 'https://tinker.thinkingmachines.dev/services/tinker-prod/oai/api/v1')
|
|
17
|
-
api_base_ant = environ.get("TINKER_ANT_API_BASE", 'https://tinker.thinkingmachines.dev/services/tinker-prod/anthropic/api')
|
|
17
|
+
api_base_ant = environ.get("TINKER_ANT_API_BASE", 'https://tinker.thinkingmachines.dev/services/tinker-prod/anthropic/api/v1')
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
# Set the mandatory headers
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: machine-thinking
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: Calling the API of 'Thinking-Machines Lab' models without dependencies.
|
|
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/machine-thinking
|
|
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
|
{machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{machine_thinking-0.0.5 → machine_thinking-0.0.6}/src/machine_thinking.egg-info/top_level.txt
RENAMED
|
File without changes
|