agenticaiframework 1.0.16__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.16 → agenticaiframework-1.0.17}/PKG-INFO +12 -12
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/README.md +11 -11
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/PKG-INFO +12 -12
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/setup.py +1 -1
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/LICENSE +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/__init__.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/agents.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/communication.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/configurations.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/evaluation.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/guardrails.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/hub.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/knowledge.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/llms.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/mcp_tools.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/memory.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/monitoring.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/processes.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/prompts.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework/tasks.py +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/SOURCES.txt +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/dependency_links.txt +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/top_level.txt +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/setup.cfg +0 -0
- {agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/tests/test_agenticai.py +0 -0
- {agenticaiframework-1.0.16 → 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
|
@@ -41,7 +41,7 @@ Dynamic: summary
|
|
41
41
|
---
|
42
42
|
# AgenticAI Framework
|
43
43
|
|
44
|
-
AgenticAI Framework (`
|
44
|
+
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
45
45
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
46
46
|
|
47
47
|
---
|
@@ -70,7 +70,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
70
70
|
## 📦 Installation
|
71
71
|
|
72
72
|
```bash
|
73
|
-
pip install
|
73
|
+
pip install agenticaiframework
|
74
74
|
```
|
75
75
|
|
76
76
|
---
|
@@ -78,7 +78,7 @@ pip install agenticaiframeworkframework
|
|
78
78
|
## ⚡ Quick Start
|
79
79
|
|
80
80
|
```python
|
81
|
-
from
|
81
|
+
from agenticaiframework import Agent, AgentManager
|
82
82
|
|
83
83
|
# Create an agent
|
84
84
|
agent = Agent(
|
@@ -102,7 +102,7 @@ agent.start()
|
|
102
102
|
|
103
103
|
### 1. Creating and Running an Agent
|
104
104
|
```python
|
105
|
-
from
|
105
|
+
from agenticaiframework import Agent
|
106
106
|
|
107
107
|
agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
|
108
108
|
agent.start()
|
@@ -110,8 +110,8 @@ agent.start()
|
|
110
110
|
|
111
111
|
### 2. Using the Hub to Register and Retrieve Agents
|
112
112
|
```python
|
113
|
-
from
|
114
|
-
from
|
113
|
+
from agenticaiframework.hub import register_agent, get_agent
|
114
|
+
from agenticaiframework import Agent
|
115
115
|
|
116
116
|
agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
|
117
117
|
register_agent(agent)
|
@@ -122,7 +122,7 @@ print(retrieved_agent.name) # Output: DataBot
|
|
122
122
|
|
123
123
|
### 3. Memory Management
|
124
124
|
```python
|
125
|
-
from
|
125
|
+
from agenticaiframework.memory import Memory
|
126
126
|
|
127
127
|
memory = Memory()
|
128
128
|
memory.store("user_name", "Alice")
|
@@ -131,7 +131,7 @@ print(memory.retrieve("user_name")) # Output: Alice
|
|
131
131
|
|
132
132
|
### 4. Running Processes
|
133
133
|
```python
|
134
|
-
from
|
134
|
+
from agenticaiframework.processes import run_process
|
135
135
|
|
136
136
|
def greet():
|
137
137
|
return "Hello, World!"
|
@@ -145,13 +145,13 @@ print(result) # Output: Hello, World!
|
|
145
145
|
## 🛠 Configuration
|
146
146
|
|
147
147
|
You can configure agents and the framework using:
|
148
|
-
- **Programmatic configuration** via `
|
148
|
+
- **Programmatic configuration** via `agenticaiframework.configurations`
|
149
149
|
- **Environment variables**
|
150
150
|
- **Configuration files**
|
151
151
|
|
152
152
|
Example:
|
153
153
|
```python
|
154
|
-
from
|
154
|
+
from agenticaiframework.configurations import set_config
|
155
155
|
|
156
156
|
set_config("max_concurrent_tasks", 5)
|
157
157
|
```
|
@@ -167,7 +167,7 @@ pytest
|
|
167
167
|
|
168
168
|
Run with coverage:
|
169
169
|
```bash
|
170
|
-
pytest --cov=
|
170
|
+
pytest --cov=agenticaiframework --cov-report=term-missing
|
171
171
|
```
|
172
172
|
|
173
173
|
---
|
@@ -18,7 +18,7 @@
|
|
18
18
|
---
|
19
19
|
# AgenticAI Framework
|
20
20
|
|
21
|
-
AgenticAI Framework (`
|
21
|
+
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
22
22
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
23
23
|
|
24
24
|
---
|
@@ -47,7 +47,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
47
47
|
## 📦 Installation
|
48
48
|
|
49
49
|
```bash
|
50
|
-
pip install
|
50
|
+
pip install agenticaiframework
|
51
51
|
```
|
52
52
|
|
53
53
|
---
|
@@ -55,7 +55,7 @@ pip install agenticaiframeworkframework
|
|
55
55
|
## ⚡ Quick Start
|
56
56
|
|
57
57
|
```python
|
58
|
-
from
|
58
|
+
from agenticaiframework import Agent, AgentManager
|
59
59
|
|
60
60
|
# Create an agent
|
61
61
|
agent = Agent(
|
@@ -79,7 +79,7 @@ agent.start()
|
|
79
79
|
|
80
80
|
### 1. Creating and Running an Agent
|
81
81
|
```python
|
82
|
-
from
|
82
|
+
from agenticaiframework import Agent
|
83
83
|
|
84
84
|
agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
|
85
85
|
agent.start()
|
@@ -87,8 +87,8 @@ agent.start()
|
|
87
87
|
|
88
88
|
### 2. Using the Hub to Register and Retrieve Agents
|
89
89
|
```python
|
90
|
-
from
|
91
|
-
from
|
90
|
+
from agenticaiframework.hub import register_agent, get_agent
|
91
|
+
from agenticaiframework import Agent
|
92
92
|
|
93
93
|
agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
|
94
94
|
register_agent(agent)
|
@@ -99,7 +99,7 @@ print(retrieved_agent.name) # Output: DataBot
|
|
99
99
|
|
100
100
|
### 3. Memory Management
|
101
101
|
```python
|
102
|
-
from
|
102
|
+
from agenticaiframework.memory import Memory
|
103
103
|
|
104
104
|
memory = Memory()
|
105
105
|
memory.store("user_name", "Alice")
|
@@ -108,7 +108,7 @@ print(memory.retrieve("user_name")) # Output: Alice
|
|
108
108
|
|
109
109
|
### 4. Running Processes
|
110
110
|
```python
|
111
|
-
from
|
111
|
+
from agenticaiframework.processes import run_process
|
112
112
|
|
113
113
|
def greet():
|
114
114
|
return "Hello, World!"
|
@@ -122,13 +122,13 @@ print(result) # Output: Hello, World!
|
|
122
122
|
## 🛠 Configuration
|
123
123
|
|
124
124
|
You can configure agents and the framework using:
|
125
|
-
- **Programmatic configuration** via `
|
125
|
+
- **Programmatic configuration** via `agenticaiframework.configurations`
|
126
126
|
- **Environment variables**
|
127
127
|
- **Configuration files**
|
128
128
|
|
129
129
|
Example:
|
130
130
|
```python
|
131
|
-
from
|
131
|
+
from agenticaiframework.configurations import set_config
|
132
132
|
|
133
133
|
set_config("max_concurrent_tasks", 5)
|
134
134
|
```
|
@@ -144,7 +144,7 @@ pytest
|
|
144
144
|
|
145
145
|
Run with coverage:
|
146
146
|
```bash
|
147
|
-
pytest --cov=
|
147
|
+
pytest --cov=agenticaiframework --cov-report=term-missing
|
148
148
|
```
|
149
149
|
|
150
150
|
---
|
{agenticaiframework-1.0.16 → 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
|
@@ -41,7 +41,7 @@ Dynamic: summary
|
|
41
41
|
---
|
42
42
|
# AgenticAI Framework
|
43
43
|
|
44
|
-
AgenticAI Framework (`
|
44
|
+
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
45
45
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
46
46
|
|
47
47
|
---
|
@@ -70,7 +70,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
70
70
|
## 📦 Installation
|
71
71
|
|
72
72
|
```bash
|
73
|
-
pip install
|
73
|
+
pip install agenticaiframework
|
74
74
|
```
|
75
75
|
|
76
76
|
---
|
@@ -78,7 +78,7 @@ pip install agenticaiframeworkframework
|
|
78
78
|
## ⚡ Quick Start
|
79
79
|
|
80
80
|
```python
|
81
|
-
from
|
81
|
+
from agenticaiframework import Agent, AgentManager
|
82
82
|
|
83
83
|
# Create an agent
|
84
84
|
agent = Agent(
|
@@ -102,7 +102,7 @@ agent.start()
|
|
102
102
|
|
103
103
|
### 1. Creating and Running an Agent
|
104
104
|
```python
|
105
|
-
from
|
105
|
+
from agenticaiframework import Agent
|
106
106
|
|
107
107
|
agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
|
108
108
|
agent.start()
|
@@ -110,8 +110,8 @@ agent.start()
|
|
110
110
|
|
111
111
|
### 2. Using the Hub to Register and Retrieve Agents
|
112
112
|
```python
|
113
|
-
from
|
114
|
-
from
|
113
|
+
from agenticaiframework.hub import register_agent, get_agent
|
114
|
+
from agenticaiframework import Agent
|
115
115
|
|
116
116
|
agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
|
117
117
|
register_agent(agent)
|
@@ -122,7 +122,7 @@ print(retrieved_agent.name) # Output: DataBot
|
|
122
122
|
|
123
123
|
### 3. Memory Management
|
124
124
|
```python
|
125
|
-
from
|
125
|
+
from agenticaiframework.memory import Memory
|
126
126
|
|
127
127
|
memory = Memory()
|
128
128
|
memory.store("user_name", "Alice")
|
@@ -131,7 +131,7 @@ print(memory.retrieve("user_name")) # Output: Alice
|
|
131
131
|
|
132
132
|
### 4. Running Processes
|
133
133
|
```python
|
134
|
-
from
|
134
|
+
from agenticaiframework.processes import run_process
|
135
135
|
|
136
136
|
def greet():
|
137
137
|
return "Hello, World!"
|
@@ -145,13 +145,13 @@ print(result) # Output: Hello, World!
|
|
145
145
|
## 🛠 Configuration
|
146
146
|
|
147
147
|
You can configure agents and the framework using:
|
148
|
-
- **Programmatic configuration** via `
|
148
|
+
- **Programmatic configuration** via `agenticaiframework.configurations`
|
149
149
|
- **Environment variables**
|
150
150
|
- **Configuration files**
|
151
151
|
|
152
152
|
Example:
|
153
153
|
```python
|
154
|
-
from
|
154
|
+
from agenticaiframework.configurations import set_config
|
155
155
|
|
156
156
|
set_config("max_concurrent_tasks", 5)
|
157
157
|
```
|
@@ -167,7 +167,7 @@ pytest
|
|
167
167
|
|
168
168
|
Run with coverage:
|
169
169
|
```bash
|
170
|
-
pytest --cov=
|
170
|
+
pytest --cov=agenticaiframework --cov-report=term-missing
|
171
171
|
```
|
172
172
|
|
173
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.16 → 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.16 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{agenticaiframework-1.0.16 → agenticaiframework-1.0.17}/agenticaiframework.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|