agenticaiframework 1.0.18__py3-none-any.whl → 1.0.20__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.18.dist-info → agenticaiframework-1.0.20.dist-info}/METADATA +45 -10
- {agenticaiframework-1.0.18.dist-info → agenticaiframework-1.0.20.dist-info}/RECORD +5 -5
- {agenticaiframework-1.0.18.dist-info → agenticaiframework-1.0.20.dist-info}/WHEEL +0 -0
- {agenticaiframework-1.0.18.dist-info → agenticaiframework-1.0.20.dist-info}/licenses/LICENSE +0 -0
- {agenticaiframework-1.0.18.dist-info → agenticaiframework-1.0.20.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.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
|
@@ -33,20 +33,25 @@ Dynamic: summary
|
|
33
33
|
<a href="https://github.com/isathish/agenticaiframework/actions">
|
34
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
35
|
</a>
|
36
|
-
|
36
|
+
|
37
|
+
</div>
|
38
|
+
|
39
|
+
|
40
|
+
<div align="center">
|
41
|
+
<a href="https://isathish.github.io/agenticaiframework">
|
37
42
|
<img src="https://img.shields.io/badge/Documentation-Online-blue?logo=readthedocs&logoColor=white" alt="Documentation">
|
38
43
|
</a>
|
39
|
-
</div>
|
40
44
|
|
45
|
+
</div>
|
41
46
|
---
|
42
|
-
# AgenticAI Framework
|
47
|
+
# 🌟 AgenticAI Framework
|
43
48
|
|
44
49
|
AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
|
45
50
|
It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
|
46
51
|
|
47
52
|
---
|
48
53
|
|
49
|
-
##
|
54
|
+
## ✨ Key Features
|
50
55
|
|
51
56
|
- **Python-based SDK** for building agentic applications
|
52
57
|
- **Lightweight, high-performance agents** for efficient execution
|
@@ -67,7 +72,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
|
|
67
72
|
|
68
73
|
---
|
69
74
|
|
70
|
-
## 📦 Installation
|
75
|
+
## 📦 Installation & Setup
|
71
76
|
|
72
77
|
```bash
|
73
78
|
pip install agenticaiframework
|
@@ -75,7 +80,7 @@ pip install agenticaiframework
|
|
75
80
|
|
76
81
|
---
|
77
82
|
|
78
|
-
## ⚡ Quick Start
|
83
|
+
## ⚡ Quick Start in 3 Steps
|
79
84
|
|
80
85
|
```python
|
81
86
|
from agenticaiframework import Agent, AgentManager
|
@@ -98,7 +103,10 @@ agent.start()
|
|
98
103
|
|
99
104
|
---
|
100
105
|
|
101
|
-
## 📚 Usage Examples
|
106
|
+
## 📚 Usage Examples & Tutorials
|
107
|
+
|
108
|
+
For more detailed examples, see the [docs/EXAMPLES.md](docs/EXAMPLES.md) file.
|
109
|
+
|
102
110
|
|
103
111
|
### 1. Creating and Running an Agent
|
104
112
|
```python
|
@@ -142,7 +150,22 @@ print(result) # Output: Hello, World!
|
|
142
150
|
|
143
151
|
---
|
144
152
|
|
145
|
-
##
|
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
|
146
169
|
|
147
170
|
You can configure agents and the framework using:
|
148
171
|
- **Programmatic configuration** via `agenticaiframework.configurations`
|
@@ -158,7 +181,7 @@ set_config("max_concurrent_tasks", 5)
|
|
158
181
|
|
159
182
|
---
|
160
183
|
|
161
|
-
## 🧪 Testing
|
184
|
+
## 🧪 Testing & Quality Assurance
|
162
185
|
|
163
186
|
Run the test suite with:
|
164
187
|
```bash
|
@@ -172,6 +195,18 @@ pytest --cov=agenticaiframework --cov-report=term-missing
|
|
172
195
|
|
173
196
|
---
|
174
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
|
+
|
175
210
|
## 📄 License
|
176
211
|
|
177
212
|
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.20.dist-info/licenses/LICENSE,sha256=fKYjpVuxF75tWQhzLkN90tDG4knIjDZKUMiPJbKWxIw,1079
|
17
|
+
agenticaiframework-1.0.20.dist-info/METADATA,sha256=OC5ENUqvJCX7P14er2tR-YKZs1RzS17VjA16t7_tcSA,6139
|
18
|
+
agenticaiframework-1.0.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
19
|
+
agenticaiframework-1.0.20.dist-info/top_level.txt,sha256=q30EgNdX3TPF02Aq6mVwI0LUBpgfH12X7pwBIwm0mPo,19
|
20
|
+
agenticaiframework-1.0.20.dist-info/RECORD,,
|
File without changes
|
{agenticaiframework-1.0.18.dist-info → agenticaiframework-1.0.20.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|