agenticaiframework 1.0.10__py3-none-any.whl → 1.0.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agenticaiframework-1.0.11.dist-info/METADATA +159 -0
- {agenticaiframework-1.0.10.dist-info → agenticaiframework-1.0.11.dist-info}/RECORD +5 -5
- agenticaiframework-1.0.10.dist-info/METADATA +0 -69
- {agenticaiframework-1.0.10.dist-info → agenticaiframework-1.0.11.dist-info}/WHEEL +0 -0
- {agenticaiframework-1.0.10.dist-info → agenticaiframework-1.0.11.dist-info}/licenses/LICENSE +0 -0
- {agenticaiframework-1.0.10.dist-info → agenticaiframework-1.0.11.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,159 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: agenticaiframework
|
3
|
+
Version: 1.0.11
|
4
|
+
Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
|
5
|
+
Home-page: https://github.com/isathish/AgenticAI
|
6
|
+
Author: Sathishkumar Nagarajan
|
7
|
+
Author-email: mail@sathishkumarnagarajan.com
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.7
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE
|
14
|
+
Dynamic: author
|
15
|
+
Dynamic: author-email
|
16
|
+
Dynamic: classifier
|
17
|
+
Dynamic: description
|
18
|
+
Dynamic: description-content-type
|
19
|
+
Dynamic: home-page
|
20
|
+
Dynamic: license-file
|
21
|
+
Dynamic: requires-python
|
22
|
+
Dynamic: summary
|
23
|
+
|
24
|
+
# AgenticAI Framework
|
25
|
+
|
26
|
+
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
27
|
+
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
28
|
+
|
29
|
+
---
|
30
|
+
|
31
|
+
## 🚀 Features
|
32
|
+
|
33
|
+
- **Python-based SDK** for building agentic applications
|
34
|
+
- **Lightweight, high-performance agents** for efficient execution
|
35
|
+
- **Built-in security** mechanisms
|
36
|
+
- **Integrated monitoring and observability**
|
37
|
+
- **Fine-grained configurable parameters**
|
38
|
+
- **Single and multiple agent support**
|
39
|
+
- **Flexible process orchestration** (sequential, parallel, hybrid)
|
40
|
+
- **Extensible architecture** with hubs for agents, prompts, tools, guardrails, and LLMs
|
41
|
+
- **Comprehensive memory management**
|
42
|
+
- **Multiple communication protocols** (HTTP, SSE, STDIO, WebSockets, gRPC, MQ)
|
43
|
+
- **Configurable guardrails, evaluation, and knowledge retrieval**
|
44
|
+
- **Scalable and modular design**
|
45
|
+
- **Multimodal capabilities**: text, images, voice, video
|
46
|
+
- **Cross-platform deployment**: cloud, on-premise, edge
|
47
|
+
- **Extensive integration support**
|
48
|
+
- **Security and compliance ready**
|
49
|
+
|
50
|
+
---
|
51
|
+
|
52
|
+
## 📦 Installation
|
53
|
+
|
54
|
+
```bash
|
55
|
+
pip install agenticaiframework
|
56
|
+
```
|
57
|
+
|
58
|
+
---
|
59
|
+
|
60
|
+
## ⚡ Quick Start
|
61
|
+
|
62
|
+
```python
|
63
|
+
from agenticaiframework import Agent, AgentManager
|
64
|
+
|
65
|
+
# Create an agent
|
66
|
+
agent = Agent(
|
67
|
+
name="ExampleAgent",
|
68
|
+
role="assistant",
|
69
|
+
capabilities=["text"],
|
70
|
+
config={"temperature": 0.7}
|
71
|
+
)
|
72
|
+
|
73
|
+
# Manage agents
|
74
|
+
manager = AgentManager()
|
75
|
+
manager.register_agent(agent)
|
76
|
+
|
77
|
+
# Start the agent
|
78
|
+
agent.start()
|
79
|
+
```
|
80
|
+
|
81
|
+
---
|
82
|
+
|
83
|
+
## 📚 Usage Examples
|
84
|
+
|
85
|
+
### 1. Creating and Running an Agent
|
86
|
+
```python
|
87
|
+
from agenticaiframework import Agent
|
88
|
+
|
89
|
+
agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
|
90
|
+
agent.start()
|
91
|
+
```
|
92
|
+
|
93
|
+
### 2. Using the Hub to Register and Retrieve Agents
|
94
|
+
```python
|
95
|
+
from agenticaiframework.hub import register_agent, get_agent
|
96
|
+
from agenticaiframework import Agent
|
97
|
+
|
98
|
+
agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
|
99
|
+
register_agent(agent)
|
100
|
+
|
101
|
+
retrieved_agent = get_agent("DataBot")
|
102
|
+
print(retrieved_agent.name) # Output: DataBot
|
103
|
+
```
|
104
|
+
|
105
|
+
### 3. Memory Management
|
106
|
+
```python
|
107
|
+
from agenticaiframework.memory import Memory
|
108
|
+
|
109
|
+
memory = Memory()
|
110
|
+
memory.store("user_name", "Alice")
|
111
|
+
print(memory.retrieve("user_name")) # Output: Alice
|
112
|
+
```
|
113
|
+
|
114
|
+
### 4. Running Processes
|
115
|
+
```python
|
116
|
+
from agenticaiframework.processes import run_process
|
117
|
+
|
118
|
+
def greet():
|
119
|
+
return "Hello, World!"
|
120
|
+
|
121
|
+
result = run_process(greet)
|
122
|
+
print(result) # Output: Hello, World!
|
123
|
+
```
|
124
|
+
|
125
|
+
---
|
126
|
+
|
127
|
+
## 🛠 Configuration
|
128
|
+
|
129
|
+
You can configure agents and the framework using:
|
130
|
+
- **Programmatic configuration** via `agenticaiframework.configurations`
|
131
|
+
- **Environment variables**
|
132
|
+
- **Configuration files**
|
133
|
+
|
134
|
+
Example:
|
135
|
+
```python
|
136
|
+
from agenticaiframework.configurations import set_config
|
137
|
+
|
138
|
+
set_config("max_concurrent_tasks", 5)
|
139
|
+
```
|
140
|
+
|
141
|
+
---
|
142
|
+
|
143
|
+
## 🧪 Testing
|
144
|
+
|
145
|
+
Run the test suite with:
|
146
|
+
```bash
|
147
|
+
pytest
|
148
|
+
```
|
149
|
+
|
150
|
+
Run with coverage:
|
151
|
+
```bash
|
152
|
+
pytest --cov=agenticaiframework --cov-report=term-missing
|
153
|
+
```
|
154
|
+
|
155
|
+
---
|
156
|
+
|
157
|
+
## 📄 License
|
158
|
+
|
159
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
@@ -13,8 +13,8 @@ agenticaiframework/monitoring.py,sha256=1xE0HrSUhTcV48nu8M0tPssOEbIX7DpMlCxPBlaf
|
|
13
13
|
agenticaiframework/processes.py,sha256=YnNuwadl5mZyWITcPoZxYUQcH9q58ocb3kn-GE2kY-U,1914
|
14
14
|
agenticaiframework/prompts.py,sha256=f0Biar0GvQ5bXB2jqUkSy-5FG468qBU6jJEVLAsLXRs,1398
|
15
15
|
agenticaiframework/tasks.py,sha256=hJKrFYJNlqkyGwl6qVYjXfZ7aeBRC9xGKEaWobF_KA4,1850
|
16
|
-
agenticaiframework-1.0.
|
17
|
-
agenticaiframework-1.0.
|
18
|
-
agenticaiframework-1.0.
|
19
|
-
agenticaiframework-1.0.
|
20
|
-
agenticaiframework-1.0.
|
16
|
+
agenticaiframework-1.0.11.dist-info/licenses/LICENSE,sha256=fKYjpVuxF75tWQhzLkN90tDG4knIjDZKUMiPJbKWxIw,1079
|
17
|
+
agenticaiframework-1.0.11.dist-info/METADATA,sha256=havQBwdHsEvVVDQbgyZACazq84h3zedF1GkVddzNxmo,3965
|
18
|
+
agenticaiframework-1.0.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
19
|
+
agenticaiframework-1.0.11.dist-info/top_level.txt,sha256=q30EgNdX3TPF02Aq6mVwI0LUBpgfH12X7pwBIwm0mPo,19
|
20
|
+
agenticaiframework-1.0.11.dist-info/RECORD,,
|
@@ -1,69 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: agenticaiframework
|
3
|
-
Version: 1.0.10
|
4
|
-
Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
|
5
|
-
Home-page: https://github.com/isathish/AgenticAI
|
6
|
-
Author: Sathishkumar Nagarajan
|
7
|
-
Author-email: mail@sathishkumarnagarajan.com
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
10
|
-
Classifier: Operating System :: OS Independent
|
11
|
-
Requires-Python: >=3.7
|
12
|
-
Description-Content-Type: text/markdown
|
13
|
-
License-File: LICENSE
|
14
|
-
Dynamic: author
|
15
|
-
Dynamic: author-email
|
16
|
-
Dynamic: classifier
|
17
|
-
Dynamic: description
|
18
|
-
Dynamic: description-content-type
|
19
|
-
Dynamic: home-page
|
20
|
-
Dynamic: license-file
|
21
|
-
Dynamic: requires-python
|
22
|
-
Dynamic: summary
|
23
|
-
|
24
|
-
# AgenticAI
|
25
|
-
|
26
|
-
AgenticAI is a Python SDK for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
27
|
-
|
28
|
-
## Features
|
29
|
-
|
30
|
-
- **Python-based SDK** for building agentic applications
|
31
|
-
- **Lightweight, high-performance agents** for efficient execution
|
32
|
-
- **Built-in security** mechanisms
|
33
|
-
- **Integrated monitoring and observability**
|
34
|
-
- **Fine-grained configurable parameters**
|
35
|
-
- **Single and multiple agent support**
|
36
|
-
- **Flexible process orchestration** (sequential, parallel, hybrid)
|
37
|
-
- **Extensible architecture** with hubs for agents, prompts, tools, guardrails, and LLMs
|
38
|
-
- **Comprehensive memory management**
|
39
|
-
- **Multiple communication protocols** (HTTP, SSE, STDIO, WebSockets, gRPC, MQ)
|
40
|
-
- **Configurable guardrails, evaluation, and knowledge retrieval**
|
41
|
-
- **Scalable and modular design**
|
42
|
-
- **Multimodal capabilities**: text, images, voice, video
|
43
|
-
- **Cross-platform deployment**: cloud, on-premise, edge
|
44
|
-
- **Extensive integration support**
|
45
|
-
- **Security and compliance ready**
|
46
|
-
|
47
|
-
## Installation
|
48
|
-
|
49
|
-
```bash
|
50
|
-
pip install agenticaiframework
|
51
|
-
```
|
52
|
-
|
53
|
-
## Quick Start
|
54
|
-
|
55
|
-
```python
|
56
|
-
from agenticaiframework import Agent, AgentManager
|
57
|
-
|
58
|
-
# Create an agent
|
59
|
-
agent = Agent(name="ExampleAgent", role="assistant", capabilities=["text"], config={})
|
60
|
-
|
61
|
-
# Manage agents
|
62
|
-
manager = AgentManager()
|
63
|
-
manager.register_agent(agent)
|
64
|
-
agent.start()
|
65
|
-
```
|
66
|
-
|
67
|
-
## License
|
68
|
-
|
69
|
-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
File without changes
|
{agenticaiframework-1.0.10.dist-info → agenticaiframework-1.0.11.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|