dynamic-learning-model 4.0.3__tar.gz → 4.0.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: dynamic-learning-model
3
- Version: 4.0.3
3
+ Version: 4.0.5
4
4
  Summary: A Dynamic-Learning Model (DLM) chatbot with memory and compute reasoning modes.
5
5
  Author-email: Vignesh Thondikulam <vignesh.tho2006@gmail.com>
6
6
  License: MIT
@@ -1,12 +1,20 @@
1
+ import os
2
+ os.environ["HF_HUB_DISABLE_TELEMETRY"] = "1"
3
+ os.environ["TOKENIZERS_PARALLELISM"] = "false"
4
+ os.environ["HF_HUB_VERBOSITY"] = "error"
5
+ import warnings
6
+ warnings.filterwarnings("ignore")
7
+ import logging
8
+ logging.getLogger("huggingface_hub").setLevel(logging.ERROR)
9
+ from transformers.utils import logging as hf_logging
10
+ hf_logging.disable_progress_bar()
11
+ hf_logging.set_verbosity_error()
1
12
  import difflib
2
13
  import string
3
14
  import random
4
15
  import spacy
5
16
  import time
6
17
  import sqlite3
7
- from transformers.utils import logging as hf_logging
8
- hf_logging.disable_progress_bar()
9
- hf_logging.set_verbosity_error()
10
18
  from .DLM_Compute_Model import perform_advanced_CoT
11
19
  from .DLM_Memory_Model import get_category
12
20
  from .DLM_Memory_Model import get_specific_question
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dynamic-learning-model
3
- Version: 4.0.3
3
+ Version: 4.0.5
4
4
  Summary: A Dynamic-Learning Model (DLM) chatbot with memory and compute reasoning modes.
5
5
  Author-email: Vignesh Thondikulam <vignesh.tho2006@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "dynamic-learning-model"
7
- version = "4.0.3"
7
+ version = "4.0.5"
8
8
  description = "A Dynamic-Learning Model (DLM) chatbot with memory and compute reasoning modes."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"