AbstractIntegratedModule 0.3.0__tar.gz → 0.3.1__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.
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1/AbstractIntegratedModule.egg-info}/PKG-INFO +15 -5
- {abstractintegratedmodule-0.3.0/AbstractIntegratedModule.egg-info → abstractintegratedmodule-0.3.1}/PKG-INFO +15 -5
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/README.md +13 -3
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/setup.py +2 -2
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.cp313-win_amd64.pyd +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.cpython-310-aarch64-linux-gnu.so +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.cpython-312-x86_64-linux-gnu.so +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/SOURCES.txt +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/dependency_links.txt +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/requires.txt +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/top_level.txt +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.py +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/MANIFEST.in +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/pyproject.toml +0 -0
- {abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractIntegratedModule
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary: Framework
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Framework for Advanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework
|
|
5
5
|
Author: Micro-Novelty
|
|
6
6
|
Author-email: hernikpuspita5@gmail.com
|
|
7
7
|
License: MIT
|
|
@@ -40,7 +40,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
40
40
|
#### Note: The README here you are reading is a direct copy from my README Repository, to download the necessary files, you can visit my Repository with the provided link above.
|
|
41
41
|
|
|
42
42
|
### Library Short Description:
|
|
43
|
-
- Development Stage: Beta, 0.
|
|
43
|
+
- Development Stage: Beta, 0.3.1.
|
|
44
44
|
- Maintainer: Micro-Novelty.
|
|
45
45
|
- library Source-Code is Open-sourced on github.
|
|
46
46
|
- Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
|
|
@@ -56,7 +56,10 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
56
56
|
- win_amd64 windows 64-bit architecture: only supports python version 3.13.
|
|
57
57
|
if you don't have the necessary python, don't worry since you could use our regular pip download.
|
|
58
58
|
|
|
59
|
-
- Proven Capabilities:
|
|
59
|
+
- Proven Capabilities:
|
|
60
|
+
- Proven Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
|
|
61
|
+
- P2P Works efficiently in ARM64 Docker + QEMU, No conflicting socket and all prediction works efficiently.
|
|
62
|
+
|
|
60
63
|
-----
|
|
61
64
|
|
|
62
65
|
<img width="1280" height="600" alt="WhatsApp Image 2026-05-27 at 07 16 32" src="https://github.com/user-attachments/assets/4b58a556-45a3-419b-96fd-9c1b76cac574" />
|
|
@@ -653,6 +656,10 @@ import traceback
|
|
|
653
656
|
|
|
654
657
|
prediction_manager = PipelinePredictionManager(main_model, label_csv=<your_training_labels.txt>, target_title=<target_title>, label=<target_label>)
|
|
655
658
|
|
|
659
|
+
secondary_model = IntegratedPipeline(memory_name=memory_name, use_async=True, agent_port=8080, singleton_permitted=True, ssl_cert_file=cert_file, ssl_key_file=key_file) # provide cert_file path or key_file path (optional)
|
|
660
|
+
# secondary model of integrated pipeline is critical for ARM64 environment to prevent socket conflict during P2P with the first Integrated pipeline instance.
|
|
661
|
+
# make sure that the agent_port in secondary_model must be different from agent_port in first IntegratedPipeline instance you initialized.
|
|
662
|
+
|
|
656
663
|
print("=== SECURE PEER-TO-PEER CLUSTER ===")
|
|
657
664
|
|
|
658
665
|
# CohesiveAgentDeployment is deeply tied and coupled with AgentDistributedInference,
|
|
@@ -660,6 +667,7 @@ print("=== SECURE PEER-TO-PEER CLUSTER ===")
|
|
|
660
667
|
# allowing secure socket to be used directly by CohesiveAgentDeployment
|
|
661
668
|
|
|
662
669
|
main_model.distribution.enable_ssl = False # set to false if you dont have SSL key and CERT, this code would instruct AgentDistributedInference that you don't have SSL, and provide you a regular unsecured socket (Not necessary for production)
|
|
670
|
+
secondary_model.distribution.enable_ssl = False
|
|
663
671
|
|
|
664
672
|
# Agent 1 - Primary (Port 5555)
|
|
665
673
|
agent1 = CohesiveAgentDeployment(
|
|
@@ -681,7 +689,7 @@ agent1 = CohesiveAgentDeployment(
|
|
|
681
689
|
|
|
682
690
|
# Agent 2 - Secondary (Port 5556)
|
|
683
691
|
agent2 = CohesiveAgentDeployment(
|
|
684
|
-
pipeline=
|
|
692
|
+
pipeline=secondary_model,
|
|
685
693
|
memory_name="agent_secondary",
|
|
686
694
|
filename=<filename>,
|
|
687
695
|
target_title=<title_name>,
|
|
@@ -709,6 +717,8 @@ agent2 = CohesiveAgentDeployment(
|
|
|
709
717
|
# ]
|
|
710
718
|
# }
|
|
711
719
|
|
|
720
|
+
agent1.pipeline.use_transformer = False # set agent1 pipeline to not use transformer for efficient processing in ARM64 env.
|
|
721
|
+
agent2.pipeline.use_transformer = False
|
|
712
722
|
|
|
713
723
|
try:
|
|
714
724
|
# Start both agents
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractIntegratedModule
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary: Framework
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Framework for Advanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework
|
|
5
5
|
Author: Micro-Novelty
|
|
6
6
|
Author-email: hernikpuspita5@gmail.com
|
|
7
7
|
License: MIT
|
|
@@ -40,7 +40,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
40
40
|
#### Note: The README here you are reading is a direct copy from my README Repository, to download the necessary files, you can visit my Repository with the provided link above.
|
|
41
41
|
|
|
42
42
|
### Library Short Description:
|
|
43
|
-
- Development Stage: Beta, 0.
|
|
43
|
+
- Development Stage: Beta, 0.3.1.
|
|
44
44
|
- Maintainer: Micro-Novelty.
|
|
45
45
|
- library Source-Code is Open-sourced on github.
|
|
46
46
|
- Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
|
|
@@ -56,7 +56,10 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
56
56
|
- win_amd64 windows 64-bit architecture: only supports python version 3.13.
|
|
57
57
|
if you don't have the necessary python, don't worry since you could use our regular pip download.
|
|
58
58
|
|
|
59
|
-
- Proven Capabilities:
|
|
59
|
+
- Proven Capabilities:
|
|
60
|
+
- Proven Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
|
|
61
|
+
- P2P Works efficiently in ARM64 Docker + QEMU, No conflicting socket and all prediction works efficiently.
|
|
62
|
+
|
|
60
63
|
-----
|
|
61
64
|
|
|
62
65
|
<img width="1280" height="600" alt="WhatsApp Image 2026-05-27 at 07 16 32" src="https://github.com/user-attachments/assets/4b58a556-45a3-419b-96fd-9c1b76cac574" />
|
|
@@ -653,6 +656,10 @@ import traceback
|
|
|
653
656
|
|
|
654
657
|
prediction_manager = PipelinePredictionManager(main_model, label_csv=<your_training_labels.txt>, target_title=<target_title>, label=<target_label>)
|
|
655
658
|
|
|
659
|
+
secondary_model = IntegratedPipeline(memory_name=memory_name, use_async=True, agent_port=8080, singleton_permitted=True, ssl_cert_file=cert_file, ssl_key_file=key_file) # provide cert_file path or key_file path (optional)
|
|
660
|
+
# secondary model of integrated pipeline is critical for ARM64 environment to prevent socket conflict during P2P with the first Integrated pipeline instance.
|
|
661
|
+
# make sure that the agent_port in secondary_model must be different from agent_port in first IntegratedPipeline instance you initialized.
|
|
662
|
+
|
|
656
663
|
print("=== SECURE PEER-TO-PEER CLUSTER ===")
|
|
657
664
|
|
|
658
665
|
# CohesiveAgentDeployment is deeply tied and coupled with AgentDistributedInference,
|
|
@@ -660,6 +667,7 @@ print("=== SECURE PEER-TO-PEER CLUSTER ===")
|
|
|
660
667
|
# allowing secure socket to be used directly by CohesiveAgentDeployment
|
|
661
668
|
|
|
662
669
|
main_model.distribution.enable_ssl = False # set to false if you dont have SSL key and CERT, this code would instruct AgentDistributedInference that you don't have SSL, and provide you a regular unsecured socket (Not necessary for production)
|
|
670
|
+
secondary_model.distribution.enable_ssl = False
|
|
663
671
|
|
|
664
672
|
# Agent 1 - Primary (Port 5555)
|
|
665
673
|
agent1 = CohesiveAgentDeployment(
|
|
@@ -681,7 +689,7 @@ agent1 = CohesiveAgentDeployment(
|
|
|
681
689
|
|
|
682
690
|
# Agent 2 - Secondary (Port 5556)
|
|
683
691
|
agent2 = CohesiveAgentDeployment(
|
|
684
|
-
pipeline=
|
|
692
|
+
pipeline=secondary_model,
|
|
685
693
|
memory_name="agent_secondary",
|
|
686
694
|
filename=<filename>,
|
|
687
695
|
target_title=<title_name>,
|
|
@@ -709,6 +717,8 @@ agent2 = CohesiveAgentDeployment(
|
|
|
709
717
|
# ]
|
|
710
718
|
# }
|
|
711
719
|
|
|
720
|
+
agent1.pipeline.use_transformer = False # set agent1 pipeline to not use transformer for efficient processing in ARM64 env.
|
|
721
|
+
agent2.pipeline.use_transformer = False
|
|
712
722
|
|
|
713
723
|
try:
|
|
714
724
|
# Start both agents
|
|
@@ -8,7 +8,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
8
8
|
#### Note: The README here you are reading is a direct copy from my README Repository, to download the necessary files, you can visit my Repository with the provided link above.
|
|
9
9
|
|
|
10
10
|
### Library Short Description:
|
|
11
|
-
- Development Stage: Beta, 0.
|
|
11
|
+
- Development Stage: Beta, 0.3.1.
|
|
12
12
|
- Maintainer: Micro-Novelty.
|
|
13
13
|
- library Source-Code is Open-sourced on github.
|
|
14
14
|
- Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
|
|
@@ -24,7 +24,10 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
24
24
|
- win_amd64 windows 64-bit architecture: only supports python version 3.13.
|
|
25
25
|
if you don't have the necessary python, don't worry since you could use our regular pip download.
|
|
26
26
|
|
|
27
|
-
- Proven Capabilities:
|
|
27
|
+
- Proven Capabilities:
|
|
28
|
+
- Proven Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
|
|
29
|
+
- P2P Works efficiently in ARM64 Docker + QEMU, No conflicting socket and all prediction works efficiently.
|
|
30
|
+
|
|
28
31
|
-----
|
|
29
32
|
|
|
30
33
|
<img width="1280" height="600" alt="WhatsApp Image 2026-05-27 at 07 16 32" src="https://github.com/user-attachments/assets/4b58a556-45a3-419b-96fd-9c1b76cac574" />
|
|
@@ -621,6 +624,10 @@ import traceback
|
|
|
621
624
|
|
|
622
625
|
prediction_manager = PipelinePredictionManager(main_model, label_csv=<your_training_labels.txt>, target_title=<target_title>, label=<target_label>)
|
|
623
626
|
|
|
627
|
+
secondary_model = IntegratedPipeline(memory_name=memory_name, use_async=True, agent_port=8080, singleton_permitted=True, ssl_cert_file=cert_file, ssl_key_file=key_file) # provide cert_file path or key_file path (optional)
|
|
628
|
+
# secondary model of integrated pipeline is critical for ARM64 environment to prevent socket conflict during P2P with the first Integrated pipeline instance.
|
|
629
|
+
# make sure that the agent_port in secondary_model must be different from agent_port in first IntegratedPipeline instance you initialized.
|
|
630
|
+
|
|
624
631
|
print("=== SECURE PEER-TO-PEER CLUSTER ===")
|
|
625
632
|
|
|
626
633
|
# CohesiveAgentDeployment is deeply tied and coupled with AgentDistributedInference,
|
|
@@ -628,6 +635,7 @@ print("=== SECURE PEER-TO-PEER CLUSTER ===")
|
|
|
628
635
|
# allowing secure socket to be used directly by CohesiveAgentDeployment
|
|
629
636
|
|
|
630
637
|
main_model.distribution.enable_ssl = False # set to false if you dont have SSL key and CERT, this code would instruct AgentDistributedInference that you don't have SSL, and provide you a regular unsecured socket (Not necessary for production)
|
|
638
|
+
secondary_model.distribution.enable_ssl = False
|
|
631
639
|
|
|
632
640
|
# Agent 1 - Primary (Port 5555)
|
|
633
641
|
agent1 = CohesiveAgentDeployment(
|
|
@@ -649,7 +657,7 @@ agent1 = CohesiveAgentDeployment(
|
|
|
649
657
|
|
|
650
658
|
# Agent 2 - Secondary (Port 5556)
|
|
651
659
|
agent2 = CohesiveAgentDeployment(
|
|
652
|
-
pipeline=
|
|
660
|
+
pipeline=secondary_model,
|
|
653
661
|
memory_name="agent_secondary",
|
|
654
662
|
filename=<filename>,
|
|
655
663
|
target_title=<title_name>,
|
|
@@ -677,6 +685,8 @@ agent2 = CohesiveAgentDeployment(
|
|
|
677
685
|
# ]
|
|
678
686
|
# }
|
|
679
687
|
|
|
688
|
+
agent1.pipeline.use_transformer = False # set agent1 pipeline to not use transformer for efficient processing in ARM64 env.
|
|
689
|
+
agent2.pipeline.use_transformer = False
|
|
680
690
|
|
|
681
691
|
try:
|
|
682
692
|
# Start both agents
|
|
@@ -8,8 +8,8 @@ class BinaryDistribution(Distribution):
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="AbstractIntegratedModule",
|
|
11
|
-
version="0.3.
|
|
12
|
-
description="Framework
|
|
11
|
+
version="0.3.1",
|
|
12
|
+
description="Framework for Advanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework",
|
|
13
13
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
14
14
|
long_description_content_type="text/markdown",
|
|
15
15
|
author="Micro-Novelty",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{abstractintegratedmodule-0.3.0 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|