hamtaa-texttools 1.0.3__py3-none-any.whl → 1.0.4__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: 1.0.3
3
+ Version: 1.0.4
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,4 +1,4 @@
1
- hamtaa_texttools-1.0.3.dist-info/licenses/LICENSE,sha256=TJch8KUnfKaKJFkaRqgtghB7rtprhaHyGirYKr90U4o,1062
1
+ hamtaa_texttools-1.0.4.dist-info/licenses/LICENSE,sha256=TJch8KUnfKaKJFkaRqgtghB7rtprhaHyGirYKr90U4o,1062
2
2
  texttools/__init__.py,sha256=QqtaP7xjs0f1WgSFtIw8LqeFO6Lrr6uhGTvI2SAREBM,193
3
3
  texttools/batch/__init__.py,sha256=WcnujCd_5XotN6emVCfDaO_lMpyk8EwJYcFgNRks5q0,139
4
4
  texttools/batch/batch_manager.py,sha256=N7dg1bE0QpGYjHtM0E9DWtXErZR_z0byls9d8RQdUbs,9104
@@ -17,13 +17,13 @@ texttools/prompts/subject_question_generator.yaml,sha256=1Skrh4cM-F3w601L5C7uVAM
17
17
  texttools/prompts/summarizer.yaml,sha256=T2feIYGy7cDKcFTAPsjLJFLFB1sdRHv2lKaFSsVKbXU,376
18
18
  texttools/prompts/translator.yaml,sha256=fWuOsYd8ALcE7hanfB1BeSuSoemABll1rhpHwBK9228,630
19
19
  texttools/tools/__init__.py,sha256=3p0W4-P-v3nFqxj_g0RRMTrQKo53wd2uvAeWZ0gtvUs,110
20
- texttools/tools/async_the_tool.py,sha256=knoCJ-dxLrO8oiyI8G6taPzxPhvDNWRRg0cMjqo6Nww,8034
20
+ texttools/tools/async_the_tool.py,sha256=WZ3Z46ngVejga7PAIKZMGdjom1UUidq9EC3zNZwqNN0,8040
21
21
  texttools/tools/the_tool.py,sha256=XQYbktfLgx3-yc9lwi89txijcewrbvYJBzbakXjTsWU,12164
22
22
  texttools/tools/internals/async_operator.py,sha256=M0QdnczTNKIWSZzwpkVMNfS8ZHEP-qv9SA_KYBdN2x8,9344
23
23
  texttools/tools/internals/operator.py,sha256=8AN8d0AoulVer7a9aYfjIKdzY9RINxT0efdzrIH28cU,10116
24
24
  texttools/tools/internals/output_models.py,sha256=cNUWJVA-NFJIrSwBz-gEqPRARHGfPXH4cSXaFfQ0mdY,1210
25
25
  texttools/tools/internals/prompt_loader.py,sha256=I8dqbQ3yOtOnb4VbHQ8LCU9gSiRGhYRyF6p2alol7ZY,2652
26
- hamtaa_texttools-1.0.3.dist-info/METADATA,sha256=nyfrCqFbwBIuK_7gKnVo8-wMS9zpIGoxAmhHs8bvtb0,5975
27
- hamtaa_texttools-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
28
- hamtaa_texttools-1.0.3.dist-info/top_level.txt,sha256=5Mh0jIxxZ5rOXHGJ6Mp-JPKviywwN0MYuH0xk5bEWqE,10
29
- hamtaa_texttools-1.0.3.dist-info/RECORD,,
26
+ hamtaa_texttools-1.0.4.dist-info/METADATA,sha256=GjXW4xdNPwFj75SLb9_exKfuaE8uh0Wp_OYK3rrh75E,5975
27
+ hamtaa_texttools-1.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
28
+ hamtaa_texttools-1.0.4.dist-info/top_level.txt,sha256=5Mh0jIxxZ5rOXHGJ6Mp-JPKviywwN0MYuH0xk5bEWqE,10
29
+ hamtaa_texttools-1.0.4.dist-info/RECORD,,
@@ -4,7 +4,7 @@ from typing import Any, Literal, Optional
4
4
  from openai import AsyncOpenAI
5
5
 
6
6
  import texttools.tools.internals.output_models as OutputModels
7
- from texttools.tools.internals.operator import AsyncOperator
7
+ from texttools.tools.internals.async_operator import AsyncOperator
8
8
 
9
9
 
10
10
  class AsyncTheTool: