agenticaiframework 1.0.19__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.19.dist-info → agenticaiframework-1.0.20.dist-info}/METADATA +38 -8
- {agenticaiframework-1.0.19.dist-info → agenticaiframework-1.0.20.dist-info}/RECORD +5 -5
- {agenticaiframework-1.0.19.dist-info → agenticaiframework-1.0.20.dist-info}/WHEEL +0 -0
- {agenticaiframework-1.0.19.dist-info → agenticaiframework-1.0.20.dist-info}/licenses/LICENSE +0 -0
- {agenticaiframework-1.0.19.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
|
@@ -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.
|
@@ -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.19.dist-info → agenticaiframework-1.0.20.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|