Metadata-Version: 2.1
Name: aiagentic_wrap
Version: 0.1.1
Summary: A lightweight and extensible agent framework for LLM-powered automation.
Author-email: Sahil Jain <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

# AiAgentic_Wrap

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

## Installation
pip install aiagentic_wrap

## Usage
```python
from aiagentic_wrap import Agent

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