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.
Files changed (24) hide show
  1. {selectools-0.2.0/src/selectools.egg-info → selectools-0.2.1}/PKG-INFO +4 -4
  2. {selectools-0.2.0 → selectools-0.2.1}/README.md +2 -2
  3. {selectools-0.2.0 → selectools-0.2.1}/pyproject.toml +2 -2
  4. {selectools-0.2.0 → selectools-0.2.1/src/selectools.egg-info}/PKG-INFO +4 -4
  5. {selectools-0.2.0 → selectools-0.2.1}/LICENSE +0 -0
  6. {selectools-0.2.0 → selectools-0.2.1}/setup.cfg +0 -0
  7. {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/SOURCES.txt +0 -0
  8. {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/dependency_links.txt +0 -0
  9. {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/entry_points.txt +0 -0
  10. {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/requires.txt +0 -0
  11. {selectools-0.2.0 → selectools-0.2.1}/src/selectools.egg-info/top_level.txt +0 -0
  12. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/__init__.py +0 -0
  13. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/agent.py +0 -0
  14. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/cli.py +0 -0
  15. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/env.py +0 -0
  16. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/examples/bbox.py +0 -0
  17. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/parser.py +0 -0
  18. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/prompt.py +0 -0
  19. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/providers/base.py +0 -0
  20. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/providers/openai_provider.py +0 -0
  21. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/providers/stubs.py +0 -0
  22. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/tools.py +0 -0
  23. {selectools-0.2.0 → selectools-0.2.1}/src/toolcalling/types.py +0 -0
  24. {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.0
4
- Summary: Provider-agnostic tool-calling library with pluggable adapters.
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
  [![PyPI version](https://badge.fury.io/py/selectools.svg)](https://badge.fury.io/py/selectools)
39
39
  [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
40
40
  [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
41
41
 
42
- Provider-agnostic Python library for TOOL_CALL-style tool execution across multiple LLM/vision backends. The library exposes typed primitives (`Agent`, `Tool`, `Message`, `Role`), pluggable providers (OpenAI adapter + Anthropic/Gemini/Local), streaming support, a hardened TOOL_CALL parser, prompt template, CLI entrypoint, bounding-box demo tool, and helper examples.
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
  [![PyPI version](https://badge.fury.io/py/selectools.svg)](https://badge.fury.io/py/selectools)
4
4
  [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
5
5
  [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
6
6
 
7
- Provider-agnostic Python library for TOOL_CALL-style tool execution across multiple LLM/vision backends. The library exposes typed primitives (`Agent`, `Tool`, `Message`, `Role`), pluggable providers (OpenAI adapter + Anthropic/Gemini/Local), streaming support, a hardened TOOL_CALL parser, prompt template, CLI entrypoint, bounding-box demo tool, and helper examples.
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.0"
8
- description = "Provider-agnostic tool-calling library with pluggable adapters."
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.0
4
- Summary: Provider-agnostic tool-calling library with pluggable adapters.
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
  [![PyPI version](https://badge.fury.io/py/selectools.svg)](https://badge.fury.io/py/selectools)
39
39
  [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
40
40
  [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
41
41
 
42
- Provider-agnostic Python library for TOOL_CALL-style tool execution across multiple LLM/vision backends. The library exposes typed primitives (`Agent`, `Tool`, `Message`, `Role`), pluggable providers (OpenAI adapter + Anthropic/Gemini/Local), streaming support, a hardened TOOL_CALL parser, prompt template, CLI entrypoint, bounding-box demo tool, and helper examples.
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