AbstractIntegratedModule 0.1.9__tar.gz → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractIntegratedModule
3
- Version: 0.1.9
3
+ Version: 0.2.1
4
4
  Summary: Advanced Integrated Non-LLM AI Module - Backend Framework for Non-LLM AI Agent Framework
5
5
  Author: Micro-Novelty
6
6
  Author-email: hernikpuspita5@gmail.com
@@ -37,6 +37,15 @@ Dynamic: summary
37
37
  #### Github Repo (if you want to know or contribute)
38
38
  https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent-Framework
39
39
 
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
+
42
+ ### Library Short Description:
43
+ - Development Stage: Beta, 0.2.0.
44
+ - Maintainer: Micro-Novelty.
45
+ - library Source-Code is Open-sourced on github.
46
+ - Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
47
+ --------
48
+
40
49
  <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" />
41
50
 
42
51
 
@@ -941,7 +941,7 @@ class Transformer:
941
941
  mask = (input_ids != pad_token_id).astype(np.float32)
942
942
  return mask[:, np.newaxis, np.newaxis, :] # (B, 1, 1, T)
943
943
 
944
- def clip_gradients(self, grads: dict, max_norm: float = 1.0) -> dict:
944
+ def clip_gradients(self, grads: dict, max_norm: float = 1.0) -> Any:
945
945
  # Compute global norm across all gradient tensors
946
946
  total_norm = np.sqrt(sum(
947
947
  np.sum(g ** 2) for g in grads.values()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractIntegratedModule
3
- Version: 0.1.9
3
+ Version: 0.2.1
4
4
  Summary: Advanced Integrated Non-LLM AI Module - Backend Framework for Non-LLM AI Agent Framework
5
5
  Author: Micro-Novelty
6
6
  Author-email: hernikpuspita5@gmail.com
@@ -37,6 +37,15 @@ Dynamic: summary
37
37
  #### Github Repo (if you want to know or contribute)
38
38
  https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent-Framework
39
39
 
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
+
42
+ ### Library Short Description:
43
+ - Development Stage: Beta, 0.2.0.
44
+ - Maintainer: Micro-Novelty.
45
+ - library Source-Code is Open-sourced on github.
46
+ - Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
47
+ --------
48
+
40
49
  <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" />
41
50
 
42
51
 
@@ -5,6 +5,15 @@
5
5
  #### Github Repo (if you want to know or contribute)
6
6
  https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent-Framework
7
7
 
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
+
10
+ ### Library Short Description:
11
+ - Development Stage: Beta, 0.2.0.
12
+ - Maintainer: Micro-Novelty.
13
+ - library Source-Code is Open-sourced on github.
14
+ - Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
15
+ --------
16
+
8
17
  <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" />
9
18
 
10
19
 
@@ -3,7 +3,7 @@ from setuptools import setup
3
3
 
4
4
  setup(
5
5
  name="AbstractIntegratedModule",
6
- version="0.1.9",
6
+ version="0.2.1",
7
7
  description="Advanced Integrated Non-LLM AI Module - 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",