Metadata-Version: 2.4
Name: agenthub-py
Version: 0.1.1
Summary: A framework for building and running AI agents
Home-page: https://agenthublabs.com
Author: Youssef Kallel
Author-email: Youssef Kallel <youssef@agenthublabs.com>
License: MIT
Project-URL: Homepage, https://www.agenthublabs.com/
Project-URL: Documentation, https://www.agenthublabs.com/docs
Keywords: ai,agents,framework
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
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-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# AgentHub Python SDK

A lightweight Python framework for building and running AI agents in simulation environments.

## Installation

```bash
pip install agenthub-py
```

## Quick Start

```python
from agenthub import AgentRunner
from typing import Any, Dict, List

class MyAgent(AgentRunner):
    def run(self, input_data: Dict[str, Any] | List[Dict[str, Any]]) -> Dict[str, Any]:
        # Preprocess your input_data here and generate the agent response
        response = self.generate_agent_result(input_data)
        # Return the result in the desired format
        result = {"status": "success", "data": response}
        return result

# Create and use your agent
agent = MyAgent()
response = agent.run({"message": "Hello, Agent!"})
print(response)
```

## Requirements

- Python 3.8 or higher

## License

MIT

## Links

- [Homepage](https://www.agenthublabs.com/)
- [Documentation](https://www.agenthublabs.com/docs)
