AbstractIntegratedModule 0.2.7__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.
Files changed (15) hide show
  1. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1/AbstractIntegratedModule.egg-info}/PKG-INFO +28 -6
  2. {abstractintegratedmodule-0.2.7/AbstractIntegratedModule.egg-info → abstractintegratedmodule-0.3.1}/PKG-INFO +28 -6
  3. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/README.md +25 -3
  4. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/setup.py +3 -3
  5. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.cp313-win_amd64.pyd +0 -0
  6. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.cpython-310-aarch64-linux-gnu.so +0 -0
  7. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.cpython-312-x86_64-linux-gnu.so +0 -0
  8. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/SOURCES.txt +0 -0
  9. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/dependency_links.txt +0 -0
  10. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/requires.txt +0 -0
  11. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.egg-info/top_level.txt +0 -0
  12. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/AbstractIntegratedModule.py +0 -0
  13. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/MANIFEST.in +0 -0
  14. {abstractintegratedmodule-0.2.7 → abstractintegratedmodule-0.3.1}/pyproject.toml +0 -0
  15. {abstractintegratedmodule-0.2.7 → 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.2.7
4
- Summary: Framework forAdvanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent 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
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: License :: OSI Approved :: MIT License
13
13
  Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.9
14
+ Requires-Python: > 3.9
15
15
  Description-Content-Type: text/markdown
16
16
  Requires-Dist: numpy>=1.21.0
17
17
  Requires-Dist: scikit-learn>=1.0.0
@@ -40,11 +40,26 @@ 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.2.5.
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.
47
- - Proven Capabilities: Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
47
+ - Library installation:
48
+ ```bash
49
+ pip install AbstractIntegratedModule
50
+ python -m install AbstractIntegratedModule
51
+ ```
52
+
53
+ - The library also includes precompiled binaries for:
54
+ - x86_64 linux architecture: only supports python version 3.12.
55
+ - aarch64 linux architecture: only supports python version 3.10.
56
+ - win_amd64 windows 64-bit architecture: only supports python version 3.13.
57
+ if you don't have the necessary python, don't worry since you could use our regular pip download.
58
+
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
+
48
63
  -----
49
64
 
50
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" />
@@ -641,6 +656,10 @@ import traceback
641
656
 
642
657
  prediction_manager = PipelinePredictionManager(main_model, label_csv=<your_training_labels.txt>, target_title=<target_title>, label=<target_label>)
643
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
+
644
663
  print("=== SECURE PEER-TO-PEER CLUSTER ===")
645
664
 
646
665
  # CohesiveAgentDeployment is deeply tied and coupled with AgentDistributedInference,
@@ -648,6 +667,7 @@ print("=== SECURE PEER-TO-PEER CLUSTER ===")
648
667
  # allowing secure socket to be used directly by CohesiveAgentDeployment
649
668
 
650
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
651
671
 
652
672
  # Agent 1 - Primary (Port 5555)
653
673
  agent1 = CohesiveAgentDeployment(
@@ -669,7 +689,7 @@ agent1 = CohesiveAgentDeployment(
669
689
 
670
690
  # Agent 2 - Secondary (Port 5556)
671
691
  agent2 = CohesiveAgentDeployment(
672
- pipeline=main_model,
692
+ pipeline=secondary_model,
673
693
  memory_name="agent_secondary",
674
694
  filename=<filename>,
675
695
  target_title=<title_name>,
@@ -697,6 +717,8 @@ agent2 = CohesiveAgentDeployment(
697
717
  # ]
698
718
  # }
699
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
700
722
 
701
723
  try:
702
724
  # Start both agents
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractIntegratedModule
3
- Version: 0.2.7
4
- Summary: Framework forAdvanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent 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
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: License :: OSI Approved :: MIT License
13
13
  Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.9
14
+ Requires-Python: > 3.9
15
15
  Description-Content-Type: text/markdown
16
16
  Requires-Dist: numpy>=1.21.0
17
17
  Requires-Dist: scikit-learn>=1.0.0
@@ -40,11 +40,26 @@ 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.2.5.
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.
47
- - Proven Capabilities: Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
47
+ - Library installation:
48
+ ```bash
49
+ pip install AbstractIntegratedModule
50
+ python -m install AbstractIntegratedModule
51
+ ```
52
+
53
+ - The library also includes precompiled binaries for:
54
+ - x86_64 linux architecture: only supports python version 3.12.
55
+ - aarch64 linux architecture: only supports python version 3.10.
56
+ - win_amd64 windows 64-bit architecture: only supports python version 3.13.
57
+ if you don't have the necessary python, don't worry since you could use our regular pip download.
58
+
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
+
48
63
  -----
49
64
 
50
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" />
@@ -641,6 +656,10 @@ import traceback
641
656
 
642
657
  prediction_manager = PipelinePredictionManager(main_model, label_csv=<your_training_labels.txt>, target_title=<target_title>, label=<target_label>)
643
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
+
644
663
  print("=== SECURE PEER-TO-PEER CLUSTER ===")
645
664
 
646
665
  # CohesiveAgentDeployment is deeply tied and coupled with AgentDistributedInference,
@@ -648,6 +667,7 @@ print("=== SECURE PEER-TO-PEER CLUSTER ===")
648
667
  # allowing secure socket to be used directly by CohesiveAgentDeployment
649
668
 
650
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
651
671
 
652
672
  # Agent 1 - Primary (Port 5555)
653
673
  agent1 = CohesiveAgentDeployment(
@@ -669,7 +689,7 @@ agent1 = CohesiveAgentDeployment(
669
689
 
670
690
  # Agent 2 - Secondary (Port 5556)
671
691
  agent2 = CohesiveAgentDeployment(
672
- pipeline=main_model,
692
+ pipeline=secondary_model,
673
693
  memory_name="agent_secondary",
674
694
  filename=<filename>,
675
695
  target_title=<title_name>,
@@ -697,6 +717,8 @@ agent2 = CohesiveAgentDeployment(
697
717
  # ]
698
718
  # }
699
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
700
722
 
701
723
  try:
702
724
  # Start both agents
@@ -8,11 +8,26 @@ 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.2.5.
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.
15
- - Proven Capabilities: Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
15
+ - Library installation:
16
+ ```bash
17
+ pip install AbstractIntegratedModule
18
+ python -m install AbstractIntegratedModule
19
+ ```
20
+
21
+ - The library also includes precompiled binaries for:
22
+ - x86_64 linux architecture: only supports python version 3.12.
23
+ - aarch64 linux architecture: only supports python version 3.10.
24
+ - win_amd64 windows 64-bit architecture: only supports python version 3.13.
25
+ if you don't have the necessary python, don't worry since you could use our regular pip download.
26
+
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
+
16
31
  -----
17
32
 
18
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" />
@@ -609,6 +624,10 @@ import traceback
609
624
 
610
625
  prediction_manager = PipelinePredictionManager(main_model, label_csv=<your_training_labels.txt>, target_title=<target_title>, label=<target_label>)
611
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
+
612
631
  print("=== SECURE PEER-TO-PEER CLUSTER ===")
613
632
 
614
633
  # CohesiveAgentDeployment is deeply tied and coupled with AgentDistributedInference,
@@ -616,6 +635,7 @@ print("=== SECURE PEER-TO-PEER CLUSTER ===")
616
635
  # allowing secure socket to be used directly by CohesiveAgentDeployment
617
636
 
618
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
619
639
 
620
640
  # Agent 1 - Primary (Port 5555)
621
641
  agent1 = CohesiveAgentDeployment(
@@ -637,7 +657,7 @@ agent1 = CohesiveAgentDeployment(
637
657
 
638
658
  # Agent 2 - Secondary (Port 5556)
639
659
  agent2 = CohesiveAgentDeployment(
640
- pipeline=main_model,
660
+ pipeline=secondary_model,
641
661
  memory_name="agent_secondary",
642
662
  filename=<filename>,
643
663
  target_title=<title_name>,
@@ -665,6 +685,8 @@ agent2 = CohesiveAgentDeployment(
665
685
  # ]
666
686
  # }
667
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
668
690
 
669
691
  try:
670
692
  # Start both agents
@@ -8,8 +8,8 @@ class BinaryDistribution(Distribution):
8
8
 
9
9
  setup(
10
10
  name="AbstractIntegratedModule",
11
- version="0.2.7",
12
- description="Framework forAdvanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent 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",
@@ -22,7 +22,7 @@ setup(
22
22
  "AbstractIntegratedModule.cpython-312-x86_64-linux-gnu.so"])
23
23
  ],
24
24
  distclass=BinaryDistribution,
25
- python_requires=">=3.9",
25
+ python_requires="> 3.9",
26
26
  install_requires=[
27
27
  "numpy>=1.21.0",
28
28
  "scikit-learn>=1.0.0",