Metadata-Version: 2.4
Name: agenttool-sdk
Version: 0.1.0
Summary: Python SDK for agenttool.dev — memory and tools for AI agents
License-Expression: MIT
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# agenttool

Python SDK for [agenttool.dev](https://agenttool.dev) — memory and tools for AI agents.

```bash
pip install agenttool
```

```python
from agenttool import AgentTool

at = AgentTool()  # reads AT_API_KEY from env
at.memory.store("learned something new")
results = at.memory.search("what did I learn?")
hits = at.tools.search("latest AI news")
page = at.tools.scrape("https://example.com")
out = at.tools.execute("print(1 + 1)")
```

Set your key: `export AT_API_KEY=your-key-here`
