agenticaiframework 1.0.15__tar.gz → 1.0.17__tar.gz
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.15 → agenticaiframework-1.0.17}/PKG-INFO +30 -12
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/README.md +29 -11
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/PKG-INFO +30 -12
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/setup.py +1 -1
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/LICENSE +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/__init__.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/agents.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/communication.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/configurations.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/evaluation.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/guardrails.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/hub.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/knowledge.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/llms.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/mcp_tools.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/memory.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/monitoring.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/processes.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/prompts.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/tasks.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/SOURCES.txt +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/dependency_links.txt +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/top_level.txt +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/setup.cfg +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/tests/test_agenticai.py +0 -0
- {agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/tests/test_agenticai_additional.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: agenticaiframework
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.17
|
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 (`agenticaiframework`) 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 agenticaiframework
|
56
74
|
```
|
57
75
|
|
58
76
|
---
|
@@ -60,7 +78,7 @@ pip install agenticaiframeworkframework
|
|
60
78
|
## ⚡ Quick Start
|
61
79
|
|
62
80
|
```python
|
63
|
-
from
|
81
|
+
from agenticaiframework 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 agenticaiframework 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 agenticaiframework.hub import register_agent, get_agent
|
114
|
+
from agenticaiframework 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 agenticaiframework.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 agenticaiframework.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 `agenticaiframework.configurations`
|
131
149
|
- **Environment variables**
|
132
150
|
- **Configuration files**
|
133
151
|
|
134
152
|
Example:
|
135
153
|
```python
|
136
|
-
from
|
154
|
+
from agenticaiframework.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=agenticaiframework --cov-report=term-missing
|
153
171
|
```
|
154
172
|
|
155
173
|
---
|
@@ -1,6 +1,24 @@
|
|
1
|
+
<!-- PROJECT LOGO -->
|
2
|
+
<br />
|
3
|
+
<div align="center">
|
4
|
+
<a href="https://isathish.github.io/agenticaiframework/">
|
5
|
+
<img src="https://img.shields.io/pypi/v/agenticaiframework?color=blue&label=PyPI%20Version&logo=python&logoColor=white" alt="PyPI Version">
|
6
|
+
</a>
|
7
|
+
<a href="https://pypi.org/project/agenticaiframework/">
|
8
|
+
<img src="https://img.shields.io/pypi/dm/agenticaiframework?color=green&label=Downloads&logo=python&logoColor=white" alt="Downloads">
|
9
|
+
</a>
|
10
|
+
<a href="https://github.com/isathish/agenticaiframework/actions">
|
11
|
+
<img src="https://img.shields.io/github/actions/workflow/status/isathish/agenticaiframework/python-package.yml?branch=main&label=Build&logo=github" alt="Build Status">
|
12
|
+
</a>
|
13
|
+
<a href="https://isathish.github.io/agenticaiframework/">
|
14
|
+
<img src="https://img.shields.io/badge/Documentation-Online-blue?logo=readthedocs&logoColor=white" alt="Documentation">
|
15
|
+
</a>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
---
|
1
19
|
# AgenticAI Framework
|
2
20
|
|
3
|
-
AgenticAI Framework (`
|
21
|
+
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
4
22
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
5
23
|
|
6
24
|
---
|
@@ -29,7 +47,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
29
47
|
## 📦 Installation
|
30
48
|
|
31
49
|
```bash
|
32
|
-
pip install
|
50
|
+
pip install agenticaiframework
|
33
51
|
```
|
34
52
|
|
35
53
|
---
|
@@ -37,7 +55,7 @@ pip install agenticaiframeworkframework
|
|
37
55
|
## ⚡ Quick Start
|
38
56
|
|
39
57
|
```python
|
40
|
-
from
|
58
|
+
from agenticaiframework import Agent, AgentManager
|
41
59
|
|
42
60
|
# Create an agent
|
43
61
|
agent = Agent(
|
@@ -61,7 +79,7 @@ agent.start()
|
|
61
79
|
|
62
80
|
### 1. Creating and Running an Agent
|
63
81
|
```python
|
64
|
-
from
|
82
|
+
from agenticaiframework import Agent
|
65
83
|
|
66
84
|
agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
|
67
85
|
agent.start()
|
@@ -69,8 +87,8 @@ agent.start()
|
|
69
87
|
|
70
88
|
### 2. Using the Hub to Register and Retrieve Agents
|
71
89
|
```python
|
72
|
-
from
|
73
|
-
from
|
90
|
+
from agenticaiframework.hub import register_agent, get_agent
|
91
|
+
from agenticaiframework import Agent
|
74
92
|
|
75
93
|
agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
|
76
94
|
register_agent(agent)
|
@@ -81,7 +99,7 @@ print(retrieved_agent.name) # Output: DataBot
|
|
81
99
|
|
82
100
|
### 3. Memory Management
|
83
101
|
```python
|
84
|
-
from
|
102
|
+
from agenticaiframework.memory import Memory
|
85
103
|
|
86
104
|
memory = Memory()
|
87
105
|
memory.store("user_name", "Alice")
|
@@ -90,7 +108,7 @@ print(memory.retrieve("user_name")) # Output: Alice
|
|
90
108
|
|
91
109
|
### 4. Running Processes
|
92
110
|
```python
|
93
|
-
from
|
111
|
+
from agenticaiframework.processes import run_process
|
94
112
|
|
95
113
|
def greet():
|
96
114
|
return "Hello, World!"
|
@@ -104,13 +122,13 @@ print(result) # Output: Hello, World!
|
|
104
122
|
## 🛠 Configuration
|
105
123
|
|
106
124
|
You can configure agents and the framework using:
|
107
|
-
- **Programmatic configuration** via `
|
125
|
+
- **Programmatic configuration** via `agenticaiframework.configurations`
|
108
126
|
- **Environment variables**
|
109
127
|
- **Configuration files**
|
110
128
|
|
111
129
|
Example:
|
112
130
|
```python
|
113
|
-
from
|
131
|
+
from agenticaiframework.configurations import set_config
|
114
132
|
|
115
133
|
set_config("max_concurrent_tasks", 5)
|
116
134
|
```
|
@@ -126,7 +144,7 @@ pytest
|
|
126
144
|
|
127
145
|
Run with coverage:
|
128
146
|
```bash
|
129
|
-
pytest --cov=
|
147
|
+
pytest --cov=agenticaiframework --cov-report=term-missing
|
130
148
|
```
|
131
149
|
|
132
150
|
---
|
{agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: agenticaiframework
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.17
|
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 (`agenticaiframework`) 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 agenticaiframework
|
56
74
|
```
|
57
75
|
|
58
76
|
---
|
@@ -60,7 +78,7 @@ pip install agenticaiframeworkframework
|
|
60
78
|
## ⚡ Quick Start
|
61
79
|
|
62
80
|
```python
|
63
|
-
from
|
81
|
+
from agenticaiframework 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 agenticaiframework 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 agenticaiframework.hub import register_agent, get_agent
|
114
|
+
from agenticaiframework 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 agenticaiframework.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 agenticaiframework.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 `agenticaiframework.configurations`
|
131
149
|
- **Environment variables**
|
132
150
|
- **Configuration files**
|
133
151
|
|
134
152
|
Example:
|
135
153
|
```python
|
136
|
-
from
|
154
|
+
from agenticaiframework.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=agenticaiframework --cov-report=term-missing
|
153
171
|
```
|
154
172
|
|
155
173
|
---
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="agenticaiframework",
|
5
|
-
version="1.0.
|
5
|
+
version="1.0.17",
|
6
6
|
author="Sathishkumar Nagarajan",
|
7
7
|
author_email="mail@sathishkumarnagarajan.com",
|
8
8
|
description="AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework/configurations.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{agenticaiframework-1.0.15 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|