Metadata-Version: 2.1
Name: llm-tool-store
Version: 0.1.1
Summary: Library for interacting with the LLM Tool Store API
License: MIT
Author: Yanael Barbier
Author-email: st3w4r@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Project-URL: Homepage, https://partial.sh/
Project-URL: Repository, https://github.com/partial-sh/llm-tool-store
Description-Content-Type: text/markdown

# LLM Tool Store Python Library

This library provides a Python interface to the Tool Store API.

## Installation

```bash
pip install llm-tool-store
```

## Usage

```python
from llm_tool_store import ToolStore

# Connect to the Tool Store service
tool_store = ToolStore(base_url="http://localhost:2121")

# Get a list of all tools
tools = tool_store.tools()
```

