llm-ie 0.4.3__tar.gz → 0.4.4__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.
Files changed (23) hide show
  1. {llm_ie-0.4.3 → llm_ie-0.4.4}/PKG-INFO +2 -2
  2. {llm_ie-0.4.3 → llm_ie-0.4.4}/pyproject.toml +2 -2
  3. {llm_ie-0.4.3 → llm_ie-0.4.4}/README.md +0 -0
  4. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/__init__.py +0 -0
  5. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/PromptEditor_prompts/chat.txt +0 -0
  6. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/PromptEditor_prompts/comment.txt +0 -0
  7. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/PromptEditor_prompts/rewrite.txt +0 -0
  8. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/PromptEditor_prompts/system.txt +0 -0
  9. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/default_prompts/ReviewFrameExtractor_addition_review_prompt.txt +0 -0
  10. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/default_prompts/ReviewFrameExtractor_revision_review_prompt.txt +0 -0
  11. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/default_prompts/SentenceReviewFrameExtractor_addition_review_prompt.txt +0 -0
  12. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/default_prompts/SentenceReviewFrameExtractor_revision_review_prompt.txt +0 -0
  13. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/BasicFrameExtractor_prompt_guide.txt +0 -0
  14. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/BinaryRelationExtractor_prompt_guide.txt +0 -0
  15. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/MultiClassRelationExtractor_prompt_guide.txt +0 -0
  16. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/ReviewFrameExtractor_prompt_guide.txt +0 -0
  17. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/SentenceCoTFrameExtractor_prompt_guide.txt +0 -0
  18. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/SentenceFrameExtractor_prompt_guide.txt +0 -0
  19. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/asset/prompt_guide/SentenceReviewFrameExtractor_prompt_guide.txt +0 -0
  20. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/data_types.py +0 -0
  21. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/engines.py +0 -0
  22. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/extractors.py +0 -0
  23. {llm_ie-0.4.3 → llm_ie-0.4.4}/src/llm_ie/prompt_editor.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llm-ie
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Summary: An LLM-powered tool that transforms everyday language into robust information extraction pipelines.
5
5
  License: MIT
6
6
  Author: Enshuo (David) Hsu
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Requires-Dist: colorama (>=0.4.6,<0.5.0)
13
13
  Requires-Dist: json_repair (>=0.30,<0.31)
14
- Requires-Dist: nest_asyncio (>=0.1.6,<0.2.0)
14
+ Requires-Dist: nest_asyncio (>=1.6.0,<2.0.0)
15
15
  Requires-Dist: nltk (>=3.8,<4.0)
16
16
  Description-Content-Type: text/markdown
17
17
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "llm-ie"
3
- version = "0.4.3"
3
+ version = "0.4.4"
4
4
  description = "An LLM-powered tool that transforms everyday language into robust information extraction pipelines."
5
5
  authors = ["Enshuo (David) Hsu"]
6
6
  license = "MIT"
@@ -16,7 +16,7 @@ python = "^3.11"
16
16
  nltk = "^3.8"
17
17
  colorama = "^0.4.6"
18
18
  json_repair = "^0.30"
19
- nest_asyncio = "^0.1.6"
19
+ nest_asyncio = "^1.6.0"
20
20
 
21
21
 
22
22
  [build-system]
File without changes
File without changes
File without changes
File without changes
File without changes