hamtaa-texttools 1.0.0__tar.gz → 1.0.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.

Potentially problematic release.


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

Files changed (24) hide show
  1. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/PKG-INFO +1 -1
  2. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/hamtaa_texttools.egg-info/PKG-INFO +1 -1
  3. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/hamtaa_texttools.egg-info/SOURCES.txt +1 -0
  4. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/pyproject.toml +1 -1
  5. hamtaa_texttools-1.0.1/texttools/prompts/__init__.py +0 -0
  6. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/LICENSE +0 -0
  7. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/README.md +0 -0
  8. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/hamtaa_texttools.egg-info/dependency_links.txt +0 -0
  9. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/hamtaa_texttools.egg-info/requires.txt +0 -0
  10. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/hamtaa_texttools.egg-info/top_level.txt +0 -0
  11. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/setup.cfg +0 -0
  12. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/tests/test_tools.py +0 -0
  13. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/__init__.py +0 -0
  14. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/formatters/base_formatter.py +0 -0
  15. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/formatters/user_merge_formatter/user_merge_formatter.py +0 -0
  16. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/tools/__init__.py +0 -0
  17. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/tools/operator.py +0 -0
  18. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/tools/output_models.py +0 -0
  19. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/tools/prompt_loader.py +0 -0
  20. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/tools/the_tool.py +0 -0
  21. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/utils/__init__.py +0 -0
  22. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/utils/batch_manager/__init__.py +0 -0
  23. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/utils/batch_manager/batch_manager.py +0 -0
  24. {hamtaa_texttools-1.0.0 → hamtaa_texttools-1.0.1}/texttools/utils/batch_manager/batch_runner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hamtaa-texttools
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: TextTools is a high-level NLP toolkit built on top of modern LLMs.
5
5
  Author-email: Tohidi <the.mohammad.tohidi@gmail.com>, Montazer <montazerh82@gmail.com>, Givechi <mohamad.m.givechi@gmail.com>, MoosaviNejad <erfanmoosavi84@gmail.com>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hamtaa-texttools
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: TextTools is a high-level NLP toolkit built on top of modern LLMs.
5
5
  Author-email: Tohidi <the.mohammad.tohidi@gmail.com>, Montazer <montazerh82@gmail.com>, Givechi <mohamad.m.givechi@gmail.com>, MoosaviNejad <erfanmoosavi84@gmail.com>
6
6
  License: MIT License
@@ -10,6 +10,7 @@ tests/test_tools.py
10
10
  texttools/__init__.py
11
11
  texttools/formatters/base_formatter.py
12
12
  texttools/formatters/user_merge_formatter/user_merge_formatter.py
13
+ texttools/prompts/__init__.py
13
14
  texttools/tools/__init__.py
14
15
  texttools/tools/operator.py
15
16
  texttools/tools/output_models.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hamtaa-texttools"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  authors = [
9
9
  { name = "Tohidi", email = "the.mohammad.tohidi@gmail.com" },
10
10
  { name = "Montazer", email = "montazerh82@gmail.com" },
File without changes