agenticaiframework 1.0.29__tar.gz → 1.0.31__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.29 → agenticaiframework-1.0.31}/PKG-INFO +31 -3
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/README.md +18 -1
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/PKG-INFO +31 -3
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/SOURCES.txt +1 -0
- agenticaiframework-1.0.31/agenticaiframework.egg-info/requires.txt +12 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/setup.py +15 -3
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/LICENSE +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/__init__.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/agents.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/communication.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/configurations.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/evaluation.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/guardrails.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/hub.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/knowledge.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/llms.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/mcp_tools.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/memory.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/monitoring.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/processes.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/prompts.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework/tasks.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/dependency_links.txt +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/top_level.txt +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/setup.cfg +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/tests/test_agenticai.py +0 -0
- {agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/tests/test_agenticai_additional.py +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,16 @@ 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
|
+
Requires-Dist: mkdocs>=1.5.0; extra == "docs"
|
16
|
+
Requires-Dist: mkdocs-material>=9.0.0; extra == "docs"
|
17
|
+
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == "docs"
|
18
|
+
Requires-Dist: pymdown-extensions>=10.0.0; extra == "docs"
|
19
|
+
Provides-Extra: all
|
20
|
+
Requires-Dist: mkdocs>=1.5.0; extra == "all"
|
21
|
+
Requires-Dist: mkdocs-material>=9.0.0; extra == "all"
|
22
|
+
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == "all"
|
23
|
+
Requires-Dist: pymdown-extensions>=10.0.0; extra == "all"
|
14
24
|
Dynamic: author
|
15
25
|
Dynamic: author-email
|
16
26
|
Dynamic: classifier
|
@@ -18,6 +28,7 @@ Dynamic: description
|
|
18
28
|
Dynamic: description-content-type
|
19
29
|
Dynamic: home-page
|
20
30
|
Dynamic: license-file
|
31
|
+
Dynamic: provides-extra
|
21
32
|
Dynamic: requires-python
|
22
33
|
Dynamic: summary
|
23
34
|
|
@@ -210,10 +221,19 @@ pip install "agenticaiframework[monitoring]"
|
|
210
221
|
# For advanced memory features
|
211
222
|
pip install "agenticaiframework[memory]"
|
212
223
|
|
224
|
+
# For documentation building
|
225
|
+
pip install "agenticaiframework[docs]"
|
226
|
+
|
213
227
|
# For all optional dependencies
|
214
228
|
pip install "agenticaiframework[all]"
|
215
229
|
```
|
216
230
|
|
231
|
+
### Documentation Dependencies
|
232
|
+
```bash
|
233
|
+
# Install only documentation dependencies
|
234
|
+
pip install -r requirements-docs.txt
|
235
|
+
```
|
236
|
+
|
217
237
|
---
|
218
238
|
|
219
239
|
## ⚡ Quick Start Examples
|
@@ -419,11 +439,19 @@ source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
|
419
439
|
# Install development dependencies
|
420
440
|
pip install -e ".[dev]"
|
421
441
|
|
442
|
+
# Install documentation dependencies
|
443
|
+
pip install -r requirements-docs.txt
|
444
|
+
|
422
445
|
# Run tests
|
423
446
|
pytest
|
424
447
|
|
425
|
-
#
|
448
|
+
# Build documentation locally
|
449
|
+
mkdocs build
|
450
|
+
|
451
|
+
# Serve documentation for development
|
426
452
|
mkdocs serve
|
453
|
+
|
454
|
+
# View documentation at http://127.0.0.1:8000
|
427
455
|
```
|
428
456
|
|
429
457
|
### Production Deployment
|
@@ -187,10 +187,19 @@ pip install "agenticaiframework[monitoring]"
|
|
187
187
|
# For advanced memory features
|
188
188
|
pip install "agenticaiframework[memory]"
|
189
189
|
|
190
|
+
# For documentation building
|
191
|
+
pip install "agenticaiframework[docs]"
|
192
|
+
|
190
193
|
# For all optional dependencies
|
191
194
|
pip install "agenticaiframework[all]"
|
192
195
|
```
|
193
196
|
|
197
|
+
### Documentation Dependencies
|
198
|
+
```bash
|
199
|
+
# Install only documentation dependencies
|
200
|
+
pip install -r requirements-docs.txt
|
201
|
+
```
|
202
|
+
|
194
203
|
---
|
195
204
|
|
196
205
|
## ⚡ Quick Start Examples
|
@@ -396,11 +405,19 @@ source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
|
396
405
|
# Install development dependencies
|
397
406
|
pip install -e ".[dev]"
|
398
407
|
|
408
|
+
# Install documentation dependencies
|
409
|
+
pip install -r requirements-docs.txt
|
410
|
+
|
399
411
|
# Run tests
|
400
412
|
pytest
|
401
413
|
|
402
|
-
#
|
414
|
+
# Build documentation locally
|
415
|
+
mkdocs build
|
416
|
+
|
417
|
+
# Serve documentation for development
|
403
418
|
mkdocs serve
|
419
|
+
|
420
|
+
# View documentation at http://127.0.0.1:8000
|
404
421
|
```
|
405
422
|
|
406
423
|
### Production Deployment
|
{agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/PKG-INFO
RENAMED
@@ -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,16 @@ 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
|
+
Requires-Dist: mkdocs>=1.5.0; extra == "docs"
|
16
|
+
Requires-Dist: mkdocs-material>=9.0.0; extra == "docs"
|
17
|
+
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == "docs"
|
18
|
+
Requires-Dist: pymdown-extensions>=10.0.0; extra == "docs"
|
19
|
+
Provides-Extra: all
|
20
|
+
Requires-Dist: mkdocs>=1.5.0; extra == "all"
|
21
|
+
Requires-Dist: mkdocs-material>=9.0.0; extra == "all"
|
22
|
+
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == "all"
|
23
|
+
Requires-Dist: pymdown-extensions>=10.0.0; extra == "all"
|
14
24
|
Dynamic: author
|
15
25
|
Dynamic: author-email
|
16
26
|
Dynamic: classifier
|
@@ -18,6 +28,7 @@ Dynamic: description
|
|
18
28
|
Dynamic: description-content-type
|
19
29
|
Dynamic: home-page
|
20
30
|
Dynamic: license-file
|
31
|
+
Dynamic: provides-extra
|
21
32
|
Dynamic: requires-python
|
22
33
|
Dynamic: summary
|
23
34
|
|
@@ -210,10 +221,19 @@ pip install "agenticaiframework[monitoring]"
|
|
210
221
|
# For advanced memory features
|
211
222
|
pip install "agenticaiframework[memory]"
|
212
223
|
|
224
|
+
# For documentation building
|
225
|
+
pip install "agenticaiframework[docs]"
|
226
|
+
|
213
227
|
# For all optional dependencies
|
214
228
|
pip install "agenticaiframework[all]"
|
215
229
|
```
|
216
230
|
|
231
|
+
### Documentation Dependencies
|
232
|
+
```bash
|
233
|
+
# Install only documentation dependencies
|
234
|
+
pip install -r requirements-docs.txt
|
235
|
+
```
|
236
|
+
|
217
237
|
---
|
218
238
|
|
219
239
|
## ⚡ Quick Start Examples
|
@@ -419,11 +439,19 @@ source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
|
419
439
|
# Install development dependencies
|
420
440
|
pip install -e ".[dev]"
|
421
441
|
|
442
|
+
# Install documentation dependencies
|
443
|
+
pip install -r requirements-docs.txt
|
444
|
+
|
422
445
|
# Run tests
|
423
446
|
pytest
|
424
447
|
|
425
|
-
#
|
448
|
+
# Build documentation locally
|
449
|
+
mkdocs build
|
450
|
+
|
451
|
+
# Serve documentation for development
|
426
452
|
mkdocs serve
|
453
|
+
|
454
|
+
# View documentation at http://127.0.0.1:8000
|
427
455
|
```
|
428
456
|
|
429
457
|
### Production Deployment
|
{agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/SOURCES.txt
RENAMED
@@ -19,6 +19,7 @@ agenticaiframework/tasks.py
|
|
19
19
|
agenticaiframework.egg-info/PKG-INFO
|
20
20
|
agenticaiframework.egg-info/SOURCES.txt
|
21
21
|
agenticaiframework.egg-info/dependency_links.txt
|
22
|
+
agenticaiframework.egg-info/requires.txt
|
22
23
|
agenticaiframework.egg-info/top_level.txt
|
23
24
|
tests/test_agenticai.py
|
24
25
|
tests/test_agenticai_additional.py
|
@@ -1,16 +1,28 @@
|
|
1
1
|
from setuptools import setup, find_packages
|
2
2
|
|
3
|
+
# Read requirements from files
|
4
|
+
def read_requirements(filename):
|
5
|
+
try:
|
6
|
+
with open(filename, 'r', encoding='utf-8') as f:
|
7
|
+
return [line.strip() for line in f if line.strip() and not line.startswith('#')]
|
8
|
+
except FileNotFoundError:
|
9
|
+
return []
|
10
|
+
|
3
11
|
setup(
|
4
12
|
name="agenticaiframework",
|
5
|
-
version="1.0.
|
13
|
+
version="1.0.31",
|
6
14
|
author="Sathishkumar Nagarajan",
|
7
15
|
author_email="mail@sathishkumarnagarajan.com",
|
8
16
|
description="AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.",
|
9
|
-
long_description=open("README.md").read() if __import__("os").path.exists("README.md") else "",
|
17
|
+
long_description=open("README.md", encoding='utf-8').read() if __import__("os").path.exists("README.md") else "",
|
10
18
|
long_description_content_type="text/markdown",
|
11
|
-
url="https://github.com/isathish/
|
19
|
+
url="https://github.com/isathish/agenticaiframework",
|
12
20
|
packages=find_packages(),
|
13
21
|
install_requires=[],
|
22
|
+
extras_require={
|
23
|
+
'docs': read_requirements('requirements-docs.txt'),
|
24
|
+
'all': read_requirements('requirements-docs.txt'),
|
25
|
+
},
|
14
26
|
classifiers=[
|
15
27
|
"Programming Language :: Python :: 3",
|
16
28
|
"License :: OSI Approved :: MIT License",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/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
|
File without changes
|
{agenticaiframework-1.0.29 → agenticaiframework-1.0.31}/agenticaiframework.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|