Metadata-Version: 2.4
Name: atto-personal-agent
Version: 0.1.3
Summary: Tool-driven autonomous software engineering assistant
Author: Atto Personal Assistant
License-Expression: MIT
Project-URL: Repository, https://github.com/Atto-Personal-Assistant/agent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: certifi>=2024.2.2

# Atto Agent

Biblioteca Python do agente do Atto Personal Assistant.

## Instalação

```bash
pip install atto-personal-agent
```

## Uso

```python
from atto_agent import AgentRuntime

runtime = AgentRuntime(
    ollama_url="https://seu-servidor-ollama.example.com",
    ollama_model="qwen2.5-coder:3b",
)
decision = runtime.plan("Explique este projeto")
result = runtime.run(decision, "Explique este projeto")
```

Aplicações hospedeiras também podem injetar qualquer objeto que implemente
`generate(prompt: str) -> str` por meio de `AgentRuntime(llm=...)`.

Para usar o Ollama Cloud, configure `OLLAMA_URL=https://ollama.com`,
`OLLAMA_API_KEY` e um `OLLAMA_MODEL` disponível na sua conta.
