hamtaa-texttools 0.1.47__py3-none-any.whl → 0.1.48__py3-none-any.whl

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.

Potentially problematic release.


This version of hamtaa-texttools might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hamtaa-texttools
3
- Version: 0.1.47
3
+ Version: 0.1.48
4
4
  Summary: A set of high-level NLP tools
5
5
  Author: Tohidi, Montazer, Givechi, Mousavinezhad
6
6
  Requires-Python: >=3.8
@@ -1,4 +1,4 @@
1
- texttools/__init__.py,sha256=cI10Q_zaM9DPUCVOM79gZceuyt6Pjgpj3R-AG7xgUM8,778
1
+ texttools/__init__.py,sha256=UEPcm1wKU7Hiqw1K_E2ojZSnyQrGyNLzN0spQ_ZXjJ4,784
2
2
  texttools/base/__init__.py,sha256=KUGm-Oe0BxlrRhPS-Jm2q1NCmwX8MdtZtloia7bcLaM,189
3
3
  texttools/base/base_categorizer.py,sha256=ojup94iXLxh92TjiJmrFXeRbsWKlon7PPAqez96B1bs,1130
4
4
  texttools/base/base_keyword_extractor.py,sha256=uKpxb3xI-sim-vXWe1R4_36QRhSNsWDR4IuVdpkZMME,868
@@ -55,7 +55,7 @@ texttools/utils/flex_processor.py,sha256=Y44uTracvXUJiUm5hh57Uk0933RU9GTc3dN_1Bo
55
55
  texttools/utils/batch_manager/__init__.py,sha256=3ZkxA395lRD4gNxJ1vp0fNuz_XuBr50GoP51rrwQ0Ks,87
56
56
  texttools/utils/batch_manager/batch_manager.py,sha256=jAmKskL3OTYwwsO1mWsWAB3VxMlOF07c2GW1Ev83ZhY,9283
57
57
  texttools/utils/batch_manager/batch_runner.py,sha256=kW0IPauI11xpssApMA7b4XI19FePImywym3V7tBaa-o,7404
58
- hamtaa_texttools-0.1.47.dist-info/METADATA,sha256=2Sp7nCOvaX2uVPFGTYHo31dEbx6rDf_s4tdfRgs6Luo,1481
59
- hamtaa_texttools-0.1.47.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
60
- hamtaa_texttools-0.1.47.dist-info/top_level.txt,sha256=5Mh0jIxxZ5rOXHGJ6Mp-JPKviywwN0MYuH0xk5bEWqE,10
61
- hamtaa_texttools-0.1.47.dist-info/RECORD,,
58
+ hamtaa_texttools-0.1.48.dist-info/METADATA,sha256=cUMn4AfOaYObchCIOQ-xrj0vmF3VTsmHYnob3Xi7R2M,1481
59
+ hamtaa_texttools-0.1.48.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
60
+ hamtaa_texttools-0.1.48.dist-info/top_level.txt,sha256=5Mh0jIxxZ5rOXHGJ6Mp-JPKviywwN0MYuH0xk5bEWqE,10
61
+ hamtaa_texttools-0.1.48.dist-info/RECORD,,
texttools/__init__.py CHANGED
@@ -1,4 +1,3 @@
1
- from texttools.batch_manager import BatchJobRunner, SimpleBatchManager
2
1
  from texttools.handlers import (
3
2
  NoOpResultHandler,
4
3
  PrintResultHandler,
@@ -11,6 +10,7 @@ from texttools.tools.categorizer.encoder_model.encoder_vectorizer import (
11
10
  from texttools.tools.categorizer.llm.openai_categorizer import LLMCategorizer
12
11
  from texttools.tools.question_detector.llm_detector import LLMQuestionDetector
13
12
  from texttools.tools.summarizer import LLMSummarizer
13
+ from texttools.utils.batch_manager import BatchJobRunner, SimpleBatchManager
14
14
 
15
15
  __all__ = [
16
16
  "LLMQuestionDetector",