selectools 0.2.0__tar.gz → 0.2.1__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.
- {selectools-0.2.0/src/selectools.egg-info → selectools-0.2.1}/PKG-INFO +4 -4
- {selectools-0.2.0 → selectools-0.2.1}/README.md +2 -2
- {selectools-0.2.0 → selectools-0.2.1}/pyproject.toml +2 -2
- {selectools-0.2.0 → selectools-0.2.1/src/selectools.egg-info}/PKG-INFO +4 -4
- {selectools-0.2.0 → selectools-0.2.1}/LICENSE +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/setup.cfg +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/SOURCES.txt +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/dependency_links.txt +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/entry_points.txt +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/requires.txt +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/top_level.txt +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/__init__.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/agent.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/cli.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/env.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/examples/bbox.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/parser.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/prompt.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/providers/base.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/providers/openai_provider.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/providers/stubs.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/tools.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/types.py +0 -0
- {selectools-0.2.0 → selectools-0.2.1}/tests/test_framework.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: selectools
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Build AI agents that call your custom Python functions. Connect LLMs to tools, APIs, and databases with any provider (OpenAI, Anthropic, Gemini).
|
|
5
5
|
Author-email: Backtrack <engineering@backtrack.app>
|
|
6
6
|
License: LGPL-3.0-or-later
|
|
7
7
|
Project-URL: Homepage, https://github.com/johnnichev/selectools
|
|
@@ -33,13 +33,13 @@ Requires-Dist: anthropic<1.0.0,>=0.28.0; extra == "providers"
|
|
|
33
33
|
Requires-Dist: google-generativeai<1.0.0,>=0.8.3; extra == "providers"
|
|
34
34
|
Dynamic: license-file
|
|
35
35
|
|
|
36
|
-
# AI Tool Calling
|
|
36
|
+
# AI Tool Calling - Selectools
|
|
37
37
|
|
|
38
38
|
[](https://badge.fury.io/py/selectools)
|
|
39
39
|
[](https://www.gnu.org/licenses/lgpl-3.0)
|
|
40
40
|
[](https://www.python.org/downloads/)
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
**Build AI agents that can call your custom Python functions.** Selectools lets you connect LLMs (OpenAI, Anthropic, Gemini) to your own tools and functions. Define what your agent can do—search databases, call APIs, process images, or anything else—and let the LLM decide when and how to use them. Works with any provider, handles errors gracefully, and includes streaming support.
|
|
43
43
|
|
|
44
44
|
## Why This Library Stands Out
|
|
45
45
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# AI Tool Calling
|
|
1
|
+
# AI Tool Calling - Selectools
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/py/selectools)
|
|
4
4
|
[](https://www.gnu.org/licenses/lgpl-3.0)
|
|
5
5
|
[](https://www.python.org/downloads/)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**Build AI agents that can call your custom Python functions.** Selectools lets you connect LLMs (OpenAI, Anthropic, Gemini) to your own tools and functions. Define what your agent can do—search databases, call APIs, process images, or anything else—and let the LLM decide when and how to use them. Works with any provider, handles errors gracefully, and includes streaming support.
|
|
8
8
|
|
|
9
9
|
## Why This Library Stands Out
|
|
10
10
|
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "selectools"
|
|
7
|
-
version = "0.2.
|
|
8
|
-
description = "
|
|
7
|
+
version = "0.2.1"
|
|
8
|
+
description = "Build AI agents that call your custom Python functions. Connect LLMs to tools, APIs, and databases with any provider (OpenAI, Anthropic, Gemini)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
11
11
|
license = {text = "LGPL-3.0-or-later"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: selectools
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Build AI agents that call your custom Python functions. Connect LLMs to tools, APIs, and databases with any provider (OpenAI, Anthropic, Gemini).
|
|
5
5
|
Author-email: Backtrack <engineering@backtrack.app>
|
|
6
6
|
License: LGPL-3.0-or-later
|
|
7
7
|
Project-URL: Homepage, https://github.com/johnnichev/selectools
|
|
@@ -33,13 +33,13 @@ Requires-Dist: anthropic<1.0.0,>=0.28.0; extra == "providers"
|
|
|
33
33
|
Requires-Dist: google-generativeai<1.0.0,>=0.8.3; extra == "providers"
|
|
34
34
|
Dynamic: license-file
|
|
35
35
|
|
|
36
|
-
# AI Tool Calling
|
|
36
|
+
# AI Tool Calling - Selectools
|
|
37
37
|
|
|
38
38
|
[](https://badge.fury.io/py/selectools)
|
|
39
39
|
[](https://www.gnu.org/licenses/lgpl-3.0)
|
|
40
40
|
[](https://www.python.org/downloads/)
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
**Build AI agents that can call your custom Python functions.** Selectools lets you connect LLMs (OpenAI, Anthropic, Gemini) to your own tools and functions. Define what your agent can do—search databases, call APIs, process images, or anything else—and let the LLM decide when and how to use them. Works with any provider, handles errors gracefully, and includes streaming support.
|
|
43
43
|
|
|
44
44
|
## Why This Library Stands Out
|
|
45
45
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|