agenticaiframework 1.0.19__tar.gz → 1.0.20__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.19 → agenticaiframework-1.0.20}/PKG-INFO +38 -8
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/README.md +37 -7
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework.egg-info/PKG-INFO +38 -8
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/setup.py +1 -1
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/LICENSE +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/__init__.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/agents.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/communication.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/configurations.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/evaluation.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/guardrails.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/hub.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/knowledge.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/llms.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/mcp_tools.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/memory.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/monitoring.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/processes.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/prompts.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework/tasks.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework.egg-info/SOURCES.txt +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework.egg-info/dependency_links.txt +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework.egg-info/top_level.txt +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/setup.cfg +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/tests/test_agenticai.py +0 -0
- {agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/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.20
|
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
|
@@ -44,14 +44,14 @@ Dynamic: summary
|
|
44
44
|
|
45
45
|
</div>
|
46
46
|
---
|
47
|
-
# AgenticAI Framework
|
47
|
+
# 🌟 AgenticAI Framework
|
48
48
|
|
49
49
|
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
50
50
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
51
51
|
|
52
52
|
---
|
53
53
|
|
54
|
-
##
|
54
|
+
## ✨ Key Features
|
55
55
|
|
56
56
|
- **Python-based SDK** for building agentic applications
|
57
57
|
- **Lightweight, high-performance agents** for efficient execution
|
@@ -72,7 +72,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
72
72
|
|
73
73
|
---
|
74
74
|
|
75
|
-
## 📦 Installation
|
75
|
+
## 📦 Installation & Setup
|
76
76
|
|
77
77
|
```bash
|
78
78
|
pip install agenticaiframework
|
@@ -80,7 +80,7 @@ pip install agenticaiframework
|
|
80
80
|
|
81
81
|
---
|
82
82
|
|
83
|
-
## ⚡ Quick Start
|
83
|
+
## ⚡ Quick Start in 3 Steps
|
84
84
|
|
85
85
|
```python
|
86
86
|
from agenticaiframework import Agent, AgentManager
|
@@ -103,7 +103,10 @@ agent.start()
|
|
103
103
|
|
104
104
|
---
|
105
105
|
|
106
|
-
## 📚 Usage Examples
|
106
|
+
## 📚 Usage Examples & Tutorials
|
107
|
+
|
108
|
+
For more detailed examples, see the [docs/EXAMPLES.md](docs/EXAMPLES.md) file.
|
109
|
+
|
107
110
|
|
108
111
|
### 1. Creating and Running an Agent
|
109
112
|
```python
|
@@ -147,7 +150,22 @@ print(result) # Output: Hello, World!
|
|
147
150
|
|
148
151
|
---
|
149
152
|
|
150
|
-
##
|
153
|
+
## 📖 Extended Documentation & Resources
|
154
|
+
|
155
|
+
The `docs` folder contains in-depth guides and examples:
|
156
|
+
|
157
|
+
- [API Reference](docs/API_REFERENCE.md) — Detailed API documentation for all modules.
|
158
|
+
- [Configuration Guide](docs/CONFIGURATION.md) — How to configure agents, processes, and the framework.
|
159
|
+
- [Usage Guide](docs/USAGE.md) — Step-by-step instructions for common workflows.
|
160
|
+
- [Extending the Framework](docs/EXTENDING.md) — How to add new agents, tools, and capabilities.
|
161
|
+
- [Examples](docs/EXAMPLES.md) — Practical code examples for various use cases.
|
162
|
+
- [Troubleshooting](docs/TROUBLESHOOTING.md) — Common issues and solutions.
|
163
|
+
|
164
|
+
You can also view the online documentation at: [https://isathish.github.io/agenticaiframework/](https://isathish.github.io/agenticaiframework/)
|
165
|
+
|
166
|
+
---
|
167
|
+
|
168
|
+
## 🛠 Configuration Made Easy
|
151
169
|
|
152
170
|
You can configure agents and the framework using:
|
153
171
|
- **Programmatic configuration** via `agenticaiframework.configurations`
|
@@ -163,7 +181,7 @@ set_config("max_concurrent_tasks", 5)
|
|
163
181
|
|
164
182
|
---
|
165
183
|
|
166
|
-
## 🧪 Testing
|
184
|
+
## 🧪 Testing & Quality Assurance
|
167
185
|
|
168
186
|
Run the test suite with:
|
169
187
|
```bash
|
@@ -177,6 +195,18 @@ pytest --cov=agenticaiframework --cov-report=term-missing
|
|
177
195
|
|
178
196
|
---
|
179
197
|
|
198
|
+
## 🤝 Contributing
|
199
|
+
|
200
|
+
We welcome contributions from the community!
|
201
|
+
1. Fork the repository.
|
202
|
+
2. Create a feature branch.
|
203
|
+
3. Implement your changes with tests.
|
204
|
+
4. Submit a pull request.
|
205
|
+
|
206
|
+
For more details, see the [Contributing Guidelines](docs/CONTRIBUTING.md) (if available).
|
207
|
+
|
208
|
+
---
|
209
|
+
|
180
210
|
## 📄 License
|
181
211
|
|
182
212
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
@@ -21,14 +21,14 @@
|
|
21
21
|
|
22
22
|
</div>
|
23
23
|
---
|
24
|
-
# AgenticAI Framework
|
24
|
+
# 🌟 AgenticAI Framework
|
25
25
|
|
26
26
|
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
27
27
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
28
28
|
|
29
29
|
---
|
30
30
|
|
31
|
-
##
|
31
|
+
## ✨ Key Features
|
32
32
|
|
33
33
|
- **Python-based SDK** for building agentic applications
|
34
34
|
- **Lightweight, high-performance agents** for efficient execution
|
@@ -49,7 +49,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
49
49
|
|
50
50
|
---
|
51
51
|
|
52
|
-
## 📦 Installation
|
52
|
+
## 📦 Installation & Setup
|
53
53
|
|
54
54
|
```bash
|
55
55
|
pip install agenticaiframework
|
@@ -57,7 +57,7 @@ pip install agenticaiframework
|
|
57
57
|
|
58
58
|
---
|
59
59
|
|
60
|
-
## ⚡ Quick Start
|
60
|
+
## ⚡ Quick Start in 3 Steps
|
61
61
|
|
62
62
|
```python
|
63
63
|
from agenticaiframework import Agent, AgentManager
|
@@ -80,7 +80,10 @@ agent.start()
|
|
80
80
|
|
81
81
|
---
|
82
82
|
|
83
|
-
## 📚 Usage Examples
|
83
|
+
## 📚 Usage Examples & Tutorials
|
84
|
+
|
85
|
+
For more detailed examples, see the [docs/EXAMPLES.md](docs/EXAMPLES.md) file.
|
86
|
+
|
84
87
|
|
85
88
|
### 1. Creating and Running an Agent
|
86
89
|
```python
|
@@ -124,7 +127,22 @@ print(result) # Output: Hello, World!
|
|
124
127
|
|
125
128
|
---
|
126
129
|
|
127
|
-
##
|
130
|
+
## 📖 Extended Documentation & Resources
|
131
|
+
|
132
|
+
The `docs` folder contains in-depth guides and examples:
|
133
|
+
|
134
|
+
- [API Reference](docs/API_REFERENCE.md) — Detailed API documentation for all modules.
|
135
|
+
- [Configuration Guide](docs/CONFIGURATION.md) — How to configure agents, processes, and the framework.
|
136
|
+
- [Usage Guide](docs/USAGE.md) — Step-by-step instructions for common workflows.
|
137
|
+
- [Extending the Framework](docs/EXTENDING.md) — How to add new agents, tools, and capabilities.
|
138
|
+
- [Examples](docs/EXAMPLES.md) — Practical code examples for various use cases.
|
139
|
+
- [Troubleshooting](docs/TROUBLESHOOTING.md) — Common issues and solutions.
|
140
|
+
|
141
|
+
You can also view the online documentation at: [https://isathish.github.io/agenticaiframework/](https://isathish.github.io/agenticaiframework/)
|
142
|
+
|
143
|
+
---
|
144
|
+
|
145
|
+
## 🛠 Configuration Made Easy
|
128
146
|
|
129
147
|
You can configure agents and the framework using:
|
130
148
|
- **Programmatic configuration** via `agenticaiframework.configurations`
|
@@ -140,7 +158,7 @@ set_config("max_concurrent_tasks", 5)
|
|
140
158
|
|
141
159
|
---
|
142
160
|
|
143
|
-
## 🧪 Testing
|
161
|
+
## 🧪 Testing & Quality Assurance
|
144
162
|
|
145
163
|
Run the test suite with:
|
146
164
|
```bash
|
@@ -154,6 +172,18 @@ pytest --cov=agenticaiframework --cov-report=term-missing
|
|
154
172
|
|
155
173
|
---
|
156
174
|
|
175
|
+
## 🤝 Contributing
|
176
|
+
|
177
|
+
We welcome contributions from the community!
|
178
|
+
1. Fork the repository.
|
179
|
+
2. Create a feature branch.
|
180
|
+
3. Implement your changes with tests.
|
181
|
+
4. Submit a pull request.
|
182
|
+
|
183
|
+
For more details, see the [Contributing Guidelines](docs/CONTRIBUTING.md) (if available).
|
184
|
+
|
185
|
+
---
|
186
|
+
|
157
187
|
## 📄 License
|
158
188
|
|
159
189
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
{agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/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.20
|
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
|
@@ -44,14 +44,14 @@ Dynamic: summary
|
|
44
44
|
|
45
45
|
</div>
|
46
46
|
---
|
47
|
-
# AgenticAI Framework
|
47
|
+
# 🌟 AgenticAI Framework
|
48
48
|
|
49
49
|
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
50
50
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
51
51
|
|
52
52
|
---
|
53
53
|
|
54
|
-
##
|
54
|
+
## ✨ Key Features
|
55
55
|
|
56
56
|
- **Python-based SDK** for building agentic applications
|
57
57
|
- **Lightweight, high-performance agents** for efficient execution
|
@@ -72,7 +72,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
72
72
|
|
73
73
|
---
|
74
74
|
|
75
|
-
## 📦 Installation
|
75
|
+
## 📦 Installation & Setup
|
76
76
|
|
77
77
|
```bash
|
78
78
|
pip install agenticaiframework
|
@@ -80,7 +80,7 @@ pip install agenticaiframework
|
|
80
80
|
|
81
81
|
---
|
82
82
|
|
83
|
-
## ⚡ Quick Start
|
83
|
+
## ⚡ Quick Start in 3 Steps
|
84
84
|
|
85
85
|
```python
|
86
86
|
from agenticaiframework import Agent, AgentManager
|
@@ -103,7 +103,10 @@ agent.start()
|
|
103
103
|
|
104
104
|
---
|
105
105
|
|
106
|
-
## 📚 Usage Examples
|
106
|
+
## 📚 Usage Examples & Tutorials
|
107
|
+
|
108
|
+
For more detailed examples, see the [docs/EXAMPLES.md](docs/EXAMPLES.md) file.
|
109
|
+
|
107
110
|
|
108
111
|
### 1. Creating and Running an Agent
|
109
112
|
```python
|
@@ -147,7 +150,22 @@ print(result) # Output: Hello, World!
|
|
147
150
|
|
148
151
|
---
|
149
152
|
|
150
|
-
##
|
153
|
+
## 📖 Extended Documentation & Resources
|
154
|
+
|
155
|
+
The `docs` folder contains in-depth guides and examples:
|
156
|
+
|
157
|
+
- [API Reference](docs/API_REFERENCE.md) — Detailed API documentation for all modules.
|
158
|
+
- [Configuration Guide](docs/CONFIGURATION.md) — How to configure agents, processes, and the framework.
|
159
|
+
- [Usage Guide](docs/USAGE.md) — Step-by-step instructions for common workflows.
|
160
|
+
- [Extending the Framework](docs/EXTENDING.md) — How to add new agents, tools, and capabilities.
|
161
|
+
- [Examples](docs/EXAMPLES.md) — Practical code examples for various use cases.
|
162
|
+
- [Troubleshooting](docs/TROUBLESHOOTING.md) — Common issues and solutions.
|
163
|
+
|
164
|
+
You can also view the online documentation at: [https://isathish.github.io/agenticaiframework/](https://isathish.github.io/agenticaiframework/)
|
165
|
+
|
166
|
+
---
|
167
|
+
|
168
|
+
## 🛠 Configuration Made Easy
|
151
169
|
|
152
170
|
You can configure agents and the framework using:
|
153
171
|
- **Programmatic configuration** via `agenticaiframework.configurations`
|
@@ -163,7 +181,7 @@ set_config("max_concurrent_tasks", 5)
|
|
163
181
|
|
164
182
|
---
|
165
183
|
|
166
|
-
## 🧪 Testing
|
184
|
+
## 🧪 Testing & Quality Assurance
|
167
185
|
|
168
186
|
Run the test suite with:
|
169
187
|
```bash
|
@@ -177,6 +195,18 @@ pytest --cov=agenticaiframework --cov-report=term-missing
|
|
177
195
|
|
178
196
|
---
|
179
197
|
|
198
|
+
## 🤝 Contributing
|
199
|
+
|
200
|
+
We welcome contributions from the community!
|
201
|
+
1. Fork the repository.
|
202
|
+
2. Create a feature branch.
|
203
|
+
3. Implement your changes with tests.
|
204
|
+
4. Submit a pull request.
|
205
|
+
|
206
|
+
For more details, see the [Contributing Guidelines](docs/CONTRIBUTING.md) (if available).
|
207
|
+
|
208
|
+
---
|
209
|
+
|
180
210
|
## 📄 License
|
181
211
|
|
182
212
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
@@ -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.20",
|
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.19 → agenticaiframework-1.0.20}/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.19 → agenticaiframework-1.0.20}/agenticaiframework.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{agenticaiframework-1.0.19 → agenticaiframework-1.0.20}/agenticaiframework.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|