Metadata-Version: 2.4
Name: agenticaiframework
Version: 1.0.8
Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
Home-page: https://github.com/isathish/AgenticAI
Author: Sathishkumar Nagarajan
Author-email: mail@sathishkumarnagarajan.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# AgenticAI

AgenticAI is a Python SDK for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.

## Features

- **Python-based SDK** for building agentic applications
- **Lightweight, high-performance agents** for efficient execution
- **Built-in security** mechanisms
- **Integrated monitoring and observability**
- **Fine-grained configurable parameters**
- **Single and multiple agent support**
- **Flexible process orchestration** (sequential, parallel, hybrid)
- **Extensible architecture** with hubs for agents, prompts, tools, guardrails, and LLMs
- **Comprehensive memory management**
- **Multiple communication protocols** (HTTP, SSE, STDIO, WebSockets, gRPC, MQ)
- **Configurable guardrails, evaluation, and knowledge retrieval**
- **Scalable and modular design**
- **Multimodal capabilities**: text, images, voice, video
- **Cross-platform deployment**: cloud, on-premise, edge
- **Extensive integration support**
- **Security and compliance ready**

## Installation

```bash
pip install agenticaiframework
```

## Quick Start

```python
from agenticaiframework import Agent, AgentManager

# Create an agent
agent = Agent(name="ExampleAgent", role="assistant", capabilities=["text"], config={})

# Manage agents
manager = AgentManager()
manager.register_agent(agent)
agent.start()
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
