dynamic-learning-model 4.0.4__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.4
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,17 +1,20 @@
1
1
  import os
2
- import warnings
3
2
  os.environ["HF_HUB_DISABLE_TELEMETRY"] = "1"
4
3
  os.environ["TOKENIZERS_PARALLELISM"] = "false"
4
+ os.environ["HF_HUB_VERBOSITY"] = "error"
5
+ import warnings
5
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()
6
12
  import difflib
7
13
  import string
8
14
  import random
9
15
  import spacy
10
16
  import time
11
17
  import sqlite3
12
- from transformers.utils import logging as hf_logging
13
- hf_logging.disable_progress_bar()
14
- hf_logging.set_verbosity_error()
15
18
  from .DLM_Compute_Model import perform_advanced_CoT
16
19
  from .DLM_Memory_Model import get_category
17
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.4
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.4"
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"