llm-ie 1.0.0__tar.gz → 1.1.0__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 (28) hide show
  1. {llm_ie-1.0.0 → llm_ie-1.1.0}/PKG-INFO +2 -2
  2. {llm_ie-1.0.0 → llm_ie-1.1.0}/pyproject.toml +2 -2
  3. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/__init__.py +2 -2
  4. llm_ie-1.1.0/src/llm_ie/engines.py +894 -0
  5. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/extractors.py +100 -251
  6. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/prompt_editor.py +13 -13
  7. llm_ie-1.0.0/src/llm_ie/engines.py +0 -647
  8. {llm_ie-1.0.0 → llm_ie-1.1.0}/README.md +0 -0
  9. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/PromptEditor_prompts/chat.txt +0 -0
  10. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/PromptEditor_prompts/comment.txt +0 -0
  11. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/PromptEditor_prompts/rewrite.txt +0 -0
  12. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/PromptEditor_prompts/system.txt +0 -0
  13. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/default_prompts/BasicReviewFrameExtractor_addition_review_prompt.txt +0 -0
  14. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/default_prompts/BasicReviewFrameExtractor_revision_review_prompt.txt +0 -0
  15. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/default_prompts/ReviewFrameExtractor_addition_review_prompt.txt +0 -0
  16. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/default_prompts/ReviewFrameExtractor_revision_review_prompt.txt +0 -0
  17. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/default_prompts/SentenceReviewFrameExtractor_addition_review_prompt.txt +0 -0
  18. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/default_prompts/SentenceReviewFrameExtractor_revision_review_prompt.txt +0 -0
  19. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/BasicFrameExtractor_prompt_guide.txt +0 -0
  20. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/BasicReviewFrameExtractor_prompt_guide.txt +0 -0
  21. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/BinaryRelationExtractor_prompt_guide.txt +0 -0
  22. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/DirectFrameExtractor_prompt_guide.txt +0 -0
  23. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/MultiClassRelationExtractor_prompt_guide.txt +0 -0
  24. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/ReviewFrameExtractor_prompt_guide.txt +0 -0
  25. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/SentenceFrameExtractor_prompt_guide.txt +0 -0
  26. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/asset/prompt_guide/SentenceReviewFrameExtractor_prompt_guide.txt +0 -0
  27. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/chunkers.py +0 -0
  28. {llm_ie-1.0.0 → llm_ie-1.1.0}/src/llm_ie/data_types.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llm-ie
3
- Version: 1.0.0
4
- Summary: An LLM-powered tool that transforms everyday language into robust information extraction pipelines.
3
+ Version: 1.1.0
4
+ Summary: A comprehensive toolkit that provides building blocks for LLM-based named entity recognition, attribute extraction, and relation extraction pipelines.
5
5
  License: MIT
6
6
  Author: Enshuo (David) Hsu
7
7
  Requires-Python: >=3.11,<4.0
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "llm-ie"
3
- version = "1.0.0"
4
- description = "An LLM-powered tool that transforms everyday language into robust information extraction pipelines."
3
+ version = "1.1.0"
4
+ description = "A comprehensive toolkit that provides building blocks for LLM-based named entity recognition, attribute extraction, and relation extraction pipelines."
5
5
  authors = ["Enshuo (David) Hsu"]
6
6
  license = "MIT"
7
7
  readme = "README.md"
@@ -1,11 +1,11 @@
1
1
  from .data_types import LLMInformationExtractionFrame, LLMInformationExtractionDocument
2
- from .engines import LlamaCppInferenceEngine, OllamaInferenceEngine, HuggingFaceHubInferenceEngine, OpenAIInferenceEngine, AzureOpenAIInferenceEngine, LiteLLMInferenceEngine
2
+ from .engines import BasicLLMConfig, Qwen3LLMConfig, OpenAIReasoningLLMConfig, LlamaCppInferenceEngine, OllamaInferenceEngine, HuggingFaceHubInferenceEngine, OpenAIInferenceEngine, AzureOpenAIInferenceEngine, LiteLLMInferenceEngine
3
3
  from .extractors import DirectFrameExtractor, ReviewFrameExtractor, BasicFrameExtractor, BasicReviewFrameExtractor, SentenceFrameExtractor, SentenceReviewFrameExtractor, BinaryRelationExtractor, MultiClassRelationExtractor
4
4
  from .chunkers import UnitChunker, WholeDocumentUnitChunker, SentenceUnitChunker, TextLineUnitChunker, ContextChunker, NoContextChunker, WholeDocumentContextChunker, SlideWindowContextChunker
5
5
  from .prompt_editor import PromptEditor
6
6
 
7
7
  __all__ = ["LLMInformationExtractionFrame", "LLMInformationExtractionDocument",
8
- "LlamaCppInferenceEngine", "OllamaInferenceEngine", "HuggingFaceHubInferenceEngine", "OpenAIInferenceEngine", "AzureOpenAIInferenceEngine", "LiteLLMInferenceEngine",
8
+ "BasicLLMConfig", "Qwen3LLMConfig", "OpenAIReasoningLLMConfig", "LlamaCppInferenceEngine", "OllamaInferenceEngine", "HuggingFaceHubInferenceEngine", "OpenAIInferenceEngine", "AzureOpenAIInferenceEngine", "LiteLLMInferenceEngine",
9
9
  "DirectFrameExtractor", "ReviewFrameExtractor", "BasicFrameExtractor", "BasicReviewFrameExtractor", "SentenceFrameExtractor", "SentenceReviewFrameExtractor", "BinaryRelationExtractor", "MultiClassRelationExtractor",
10
10
  "UnitChunker", "WholeDocumentUnitChunker", "SentenceUnitChunker", "TextLineUnitChunker", "ContextChunker", "NoContextChunker", "WholeDocumentContextChunker", "SlideWindowContextChunker",
11
11
  "PromptEditor"]