Metadata-Version: 2.1
Name: aiagentic_wrap
Version: 0.1.0
Summary: A lightweight and extensible agent framework for LLM-powered automation.
Author-email: Sahil <sahiljain.to@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourgithub/aiagentic_wrap
Project-URL: Source, https://github.com/yourgithub/aiagentic_wrap
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# agenticpy

A lightweight and extensible agent framework for LLM-powered automation.

## Installation
pip install agenticpy

## Usage
```python
from agenticpy import Agent

agent = Agent("TestAgent")
print(agent.run("Say Hello"))
