agenticaiframework 1.0.14__py3-none-any.whl → 1.0.16__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.14.dist-info → agenticaiframework-1.0.16.dist-info}/METADATA +30 -12
- {agenticaiframework-1.0.14.dist-info → agenticaiframework-1.0.16.dist-info}/RECORD +5 -5
- {agenticaiframework-1.0.14.dist-info → agenticaiframework-1.0.16.dist-info}/WHEEL +0 -0
- {agenticaiframework-1.0.14.dist-info → agenticaiframework-1.0.16.dist-info}/licenses/LICENSE +0 -0
- {agenticaiframework-1.0.14.dist-info → agenticaiframework-1.0.16.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: agenticaiframework
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.16
|
4
4
|
Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
|
5
5
|
Home-page: https://github.com/isathish/AgenticAI
|
6
6
|
Author: Sathishkumar Nagarajan
|
@@ -21,9 +21,27 @@ Dynamic: license-file
|
|
21
21
|
Dynamic: requires-python
|
22
22
|
Dynamic: summary
|
23
23
|
|
24
|
+
<!-- PROJECT LOGO -->
|
25
|
+
<br />
|
26
|
+
<div align="center">
|
27
|
+
<a href="https://isathish.github.io/agenticaiframework/">
|
28
|
+
<img src="https://img.shields.io/pypi/v/agenticaiframework?color=blue&label=PyPI%20Version&logo=python&logoColor=white" alt="PyPI Version">
|
29
|
+
</a>
|
30
|
+
<a href="https://pypi.org/project/agenticaiframework/">
|
31
|
+
<img src="https://img.shields.io/pypi/dm/agenticaiframework?color=green&label=Downloads&logo=python&logoColor=white" alt="Downloads">
|
32
|
+
</a>
|
33
|
+
<a href="https://github.com/isathish/agenticaiframework/actions">
|
34
|
+
<img src="https://img.shields.io/github/actions/workflow/status/isathish/agenticaiframework/python-package.yml?branch=main&label=Build&logo=github" alt="Build Status">
|
35
|
+
</a>
|
36
|
+
<a href="https://isathish.github.io/agenticaiframework/">
|
37
|
+
<img src="https://img.shields.io/badge/Documentation-Online-blue?logo=readthedocs&logoColor=white" alt="Documentation">
|
38
|
+
</a>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
---
|
24
42
|
# AgenticAI Framework
|
25
43
|
|
26
|
-
AgenticAI Framework (`
|
44
|
+
AgenticAI Framework (`agenticaiframeworkframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
27
45
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
28
46
|
|
29
47
|
---
|
@@ -52,7 +70,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
52
70
|
## 📦 Installation
|
53
71
|
|
54
72
|
```bash
|
55
|
-
pip install
|
73
|
+
pip install agenticaiframeworkframework
|
56
74
|
```
|
57
75
|
|
58
76
|
---
|
@@ -60,7 +78,7 @@ pip install agenticaiframework
|
|
60
78
|
## ⚡ Quick Start
|
61
79
|
|
62
80
|
```python
|
63
|
-
from
|
81
|
+
from agenticaiframeworkframework import Agent, AgentManager
|
64
82
|
|
65
83
|
# Create an agent
|
66
84
|
agent = Agent(
|
@@ -84,7 +102,7 @@ agent.start()
|
|
84
102
|
|
85
103
|
### 1. Creating and Running an Agent
|
86
104
|
```python
|
87
|
-
from
|
105
|
+
from agenticaiframeworkframework import Agent
|
88
106
|
|
89
107
|
agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
|
90
108
|
agent.start()
|
@@ -92,8 +110,8 @@ agent.start()
|
|
92
110
|
|
93
111
|
### 2. Using the Hub to Register and Retrieve Agents
|
94
112
|
```python
|
95
|
-
from
|
96
|
-
from
|
113
|
+
from agenticaiframeworkframework.hub import register_agent, get_agent
|
114
|
+
from agenticaiframeworkframework import Agent
|
97
115
|
|
98
116
|
agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
|
99
117
|
register_agent(agent)
|
@@ -104,7 +122,7 @@ print(retrieved_agent.name) # Output: DataBot
|
|
104
122
|
|
105
123
|
### 3. Memory Management
|
106
124
|
```python
|
107
|
-
from
|
125
|
+
from agenticaiframeworkframework.memory import Memory
|
108
126
|
|
109
127
|
memory = Memory()
|
110
128
|
memory.store("user_name", "Alice")
|
@@ -113,7 +131,7 @@ print(memory.retrieve("user_name")) # Output: Alice
|
|
113
131
|
|
114
132
|
### 4. Running Processes
|
115
133
|
```python
|
116
|
-
from
|
134
|
+
from agenticaiframeworkframework.processes import run_process
|
117
135
|
|
118
136
|
def greet():
|
119
137
|
return "Hello, World!"
|
@@ -127,13 +145,13 @@ print(result) # Output: Hello, World!
|
|
127
145
|
## 🛠 Configuration
|
128
146
|
|
129
147
|
You can configure agents and the framework using:
|
130
|
-
- **Programmatic configuration** via `
|
148
|
+
- **Programmatic configuration** via `agenticaiframeworkframework.configurations`
|
131
149
|
- **Environment variables**
|
132
150
|
- **Configuration files**
|
133
151
|
|
134
152
|
Example:
|
135
153
|
```python
|
136
|
-
from
|
154
|
+
from agenticaiframeworkframework.configurations import set_config
|
137
155
|
|
138
156
|
set_config("max_concurrent_tasks", 5)
|
139
157
|
```
|
@@ -149,7 +167,7 @@ pytest
|
|
149
167
|
|
150
168
|
Run with coverage:
|
151
169
|
```bash
|
152
|
-
pytest --cov=
|
170
|
+
pytest --cov=agenticaiframeworkframework --cov-report=term-missing
|
153
171
|
```
|
154
172
|
|
155
173
|
---
|
@@ -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.16.dist-info/licenses/LICENSE,sha256=fKYjpVuxF75tWQhzLkN90tDG4knIjDZKUMiPJbKWxIw,1079
|
17
|
+
agenticaiframework-1.0.16.dist-info/METADATA,sha256=O_7l1ZctC6zpWLiuLd7ZyjiBYe6geuq5bUXOuzt7LcU,4978
|
18
|
+
agenticaiframework-1.0.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
19
|
+
agenticaiframework-1.0.16.dist-info/top_level.txt,sha256=q30EgNdX3TPF02Aq6mVwI0LUBpgfH12X7pwBIwm0mPo,19
|
20
|
+
agenticaiframework-1.0.16.dist-info/RECORD,,
|
File without changes
|
{agenticaiframework-1.0.14.dist-info → agenticaiframework-1.0.16.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|