AbstractIntegratedModule 0.2.4__tar.gz → 0.2.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractIntegratedModule
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Framework forAdvanced 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
@@ -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.2.4.
43
+ - Development Stage: Beta, 0.2.5.
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.
@@ -729,6 +729,8 @@ try:
729
729
  disable_sync=True
730
730
  ) # await using asyncio, multi_modal_peer_ensemble is already async by design (Inside ConsecutivePeerAgent), no need to put asyncio.run()
731
731
 
732
+ # must have agent2 peer ensemble function after agent1 peer ensemble prediction function,
733
+ # so agent1 can receive agent2 peer ensemble prediction request.
732
734
  result2 = await agent2.multi_modal_peer_ensemble_prediction(
733
735
  texts=texts,
734
736
  api_key=api_key,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractIntegratedModule
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Framework forAdvanced 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
@@ -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.2.4.
43
+ - Development Stage: Beta, 0.2.5.
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.
@@ -729,6 +729,8 @@ try:
729
729
  disable_sync=True
730
730
  ) # await using asyncio, multi_modal_peer_ensemble is already async by design (Inside ConsecutivePeerAgent), no need to put asyncio.run()
731
731
 
732
+ # must have agent2 peer ensemble function after agent1 peer ensemble prediction function,
733
+ # so agent1 can receive agent2 peer ensemble prediction request.
732
734
  result2 = await agent2.multi_modal_peer_ensemble_prediction(
733
735
  texts=texts,
734
736
  api_key=api_key,
@@ -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.2.4.
11
+ - Development Stage: Beta, 0.2.5.
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.
@@ -697,6 +697,8 @@ try:
697
697
  disable_sync=True
698
698
  ) # await using asyncio, multi_modal_peer_ensemble is already async by design (Inside ConsecutivePeerAgent), no need to put asyncio.run()
699
699
 
700
+ # must have agent2 peer ensemble function after agent1 peer ensemble prediction function,
701
+ # so agent1 can receive agent2 peer ensemble prediction request.
700
702
  result2 = await agent2.multi_modal_peer_ensemble_prediction(
701
703
  texts=texts,
702
704
  api_key=api_key,
@@ -3,7 +3,7 @@ from setuptools import setup
3
3
 
4
4
  setup(
5
5
  name="AbstractIntegratedModule",
6
- version="0.2.4",
6
+ version="0.2.5",
7
7
  description="Framework forAdvanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework",
8
8
  long_description=open("README.md", encoding="utf-8").read(),
9
9
  long_description_content_type="text/markdown",