agenticaiframework 1.0.29__py3-none-any.whl → 1.0.31__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.29.dist-info → agenticaiframework-1.0.31.dist-info}/METADATA +23 -3
- {agenticaiframework-1.0.29.dist-info → agenticaiframework-1.0.31.dist-info}/RECORD +5 -5
- {agenticaiframework-1.0.29.dist-info → agenticaiframework-1.0.31.dist-info}/WHEEL +0 -0
- {agenticaiframework-1.0.29.dist-info → agenticaiframework-1.0.31.dist-info}/licenses/LICENSE +0 -0
- {agenticaiframework-1.0.29.dist-info → agenticaiframework-1.0.31.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: agenticaiframework
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.31
|
4
4
|
Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
|
5
|
-
Home-page: https://github.com/isathish/
|
5
|
+
Home-page: https://github.com/isathish/agenticaiframework
|
6
6
|
Author: Sathishkumar Nagarajan
|
7
7
|
Author-email: mail@sathishkumarnagarajan.com
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
@@ -11,6 +11,8 @@ Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.7
|
12
12
|
Description-Content-Type: text/markdown
|
13
13
|
License-File: LICENSE
|
14
|
+
Provides-Extra: docs
|
15
|
+
Provides-Extra: all
|
14
16
|
Dynamic: author
|
15
17
|
Dynamic: author-email
|
16
18
|
Dynamic: classifier
|
@@ -18,6 +20,7 @@ Dynamic: description
|
|
18
20
|
Dynamic: description-content-type
|
19
21
|
Dynamic: home-page
|
20
22
|
Dynamic: license-file
|
23
|
+
Dynamic: provides-extra
|
21
24
|
Dynamic: requires-python
|
22
25
|
Dynamic: summary
|
23
26
|
|
@@ -210,10 +213,19 @@ pip install "agenticaiframework[monitoring]"
|
|
210
213
|
# For advanced memory features
|
211
214
|
pip install "agenticaiframework[memory]"
|
212
215
|
|
216
|
+
# For documentation building
|
217
|
+
pip install "agenticaiframework[docs]"
|
218
|
+
|
213
219
|
# For all optional dependencies
|
214
220
|
pip install "agenticaiframework[all]"
|
215
221
|
```
|
216
222
|
|
223
|
+
### Documentation Dependencies
|
224
|
+
```bash
|
225
|
+
# Install only documentation dependencies
|
226
|
+
pip install -r requirements-docs.txt
|
227
|
+
```
|
228
|
+
|
217
229
|
---
|
218
230
|
|
219
231
|
## ⚡ Quick Start Examples
|
@@ -419,11 +431,19 @@ source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
|
419
431
|
# Install development dependencies
|
420
432
|
pip install -e ".[dev]"
|
421
433
|
|
434
|
+
# Install documentation dependencies
|
435
|
+
pip install -r requirements-docs.txt
|
436
|
+
|
422
437
|
# Run tests
|
423
438
|
pytest
|
424
439
|
|
425
|
-
#
|
440
|
+
# Build documentation locally
|
441
|
+
mkdocs build
|
442
|
+
|
443
|
+
# Serve documentation for development
|
426
444
|
mkdocs serve
|
445
|
+
|
446
|
+
# View documentation at http://127.0.0.1:8000
|
427
447
|
```
|
428
448
|
|
429
449
|
### Production Deployment
|
@@ -13,8 +13,8 @@ agenticaiframework/monitoring.py,sha256=Fn_ajaFWIRucKffFHc4gzxmmFKUJYL1E2DA_8MQY
|
|
13
13
|
agenticaiframework/processes.py,sha256=A4HPi9dZAAY2HaXmgDUp8Wggmy8E4iD2BRq-RLLvGh0,2085
|
14
14
|
agenticaiframework/prompts.py,sha256=UwMUVAcI-GIGrpmJXjsk5_KeOR8x6VcgmW3DgatIw3A,2046
|
15
15
|
agenticaiframework/tasks.py,sha256=IY1HHSzYK10jXS72Ll-1lROeQRmpWG2a_ovgYU05uws,2336
|
16
|
-
agenticaiframework-1.0.
|
17
|
-
agenticaiframework-1.0.
|
18
|
-
agenticaiframework-1.0.
|
19
|
-
agenticaiframework-1.0.
|
20
|
-
agenticaiframework-1.0.
|
16
|
+
agenticaiframework-1.0.31.dist-info/licenses/LICENSE,sha256=fKYjpVuxF75tWQhzLkN90tDG4knIjDZKUMiPJbKWxIw,1079
|
17
|
+
agenticaiframework-1.0.31.dist-info/METADATA,sha256=qnkYEzhR49QrpQx1m86JU_V56KCh0RRzv-bjU8_Qyg8,20801
|
18
|
+
agenticaiframework-1.0.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
19
|
+
agenticaiframework-1.0.31.dist-info/top_level.txt,sha256=q30EgNdX3TPF02Aq6mVwI0LUBpgfH12X7pwBIwm0mPo,19
|
20
|
+
agenticaiframework-1.0.31.dist-info/RECORD,,
|
File without changes
|
{agenticaiframework-1.0.29.dist-info → agenticaiframework-1.0.31.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|