Metadata-Version: 2.1
Name: agentics
Version: 0.1.0
Summary: A minimal LLM agent library
Author: Facundo Goiriz
Author-email: facundogoiriz@gmail.com
Requires-Python: >=3.8
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: openai (>=1.58.1)
Requires-Dist: pydantic (>=2.10.4)
Description-Content-Type: text/markdown

# Agentics

A minimal LLM agent library.

## Installation

```bash
pip install agentics
```

## Usage

```python
from agentics import LLM
llm = LLM("You are a helpful assistant")
response = llm("Hello!")
print(response)
```

