Metadata-Version: 2.4
Name: JornadaRPA.AgentAI
Version: 0.1.2
Summary: Simple and powerful AI Agent with memory and tools.
Author: Alex Diogo
Author-email: alexdiogo@desafiosrpa.com.br
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: openai
Requires-Dist: google-generativeai
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# JornadaRPA.AgentAI

A simple and powerful local AI Agent framework with memory and tool support. Ideal for RPA and automation use cases.

## Installation

```bash
pip install JornadaRPA.AgentAI
```

## Usage

```python
from JornadaRPA.AgentAI.providers import get_provider
from JornadaRPA.AgentAI.agent import AgentAI

provider = get_provider("openai")(api_key="your-key", model="gpt-4")
agent = AgentAI(provider)

response = agent.plan_and_execute("Hello, AI!")
print(response)

agent.clear_memory()
```
