structx 0.4.8__tar.gz → 0.4.10__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 (34) hide show
  1. {structx-0.4.8/structx.egg-info → structx-0.4.10}/PKG-INFO +2 -2
  2. {structx-0.4.8 → structx-0.4.10}/README.md +1 -1
  3. {structx-0.4.8 → structx-0.4.10}/pyproject.toml +2 -2
  4. {structx-0.4.8 → structx-0.4.10}/structx/__init__.py +1 -1
  5. {structx-0.4.8 → structx-0.4.10/structx.egg-info}/PKG-INFO +2 -2
  6. {structx-0.4.8 → structx-0.4.10}/LICENSE +0 -0
  7. {structx-0.4.8 → structx-0.4.10}/setup.cfg +0 -0
  8. {structx-0.4.8 → structx-0.4.10}/structx/core/__init__.py +0 -0
  9. {structx-0.4.8 → structx-0.4.10}/structx/core/config.py +0 -0
  10. {structx-0.4.8 → structx-0.4.10}/structx/core/exceptions.py +0 -0
  11. {structx-0.4.8 → structx-0.4.10}/structx/core/models.py +0 -0
  12. {structx-0.4.8 → structx-0.4.10}/structx/extraction/__init__.py +0 -0
  13. {structx-0.4.8 → structx-0.4.10}/structx/extraction/core/__init__.py +0 -0
  14. {structx-0.4.8 → structx-0.4.10}/structx/extraction/core/llm_core.py +0 -0
  15. {structx-0.4.8 → structx-0.4.10}/structx/extraction/core/model_utils.py +0 -0
  16. {structx-0.4.8 → structx-0.4.10}/structx/extraction/engines/__init__.py +0 -0
  17. {structx-0.4.8 → structx-0.4.10}/structx/extraction/engines/extraction_engine.py +0 -0
  18. {structx-0.4.8 → structx-0.4.10}/structx/extraction/extractor.py +0 -0
  19. {structx-0.4.8 → structx-0.4.10}/structx/extraction/generator.py +0 -0
  20. {structx-0.4.8 → structx-0.4.10}/structx/extraction/processors/__init__.py +0 -0
  21. {structx-0.4.8 → structx-0.4.10}/structx/extraction/processors/data_content.py +0 -0
  22. {structx-0.4.8 → structx-0.4.10}/structx/extraction/processors/model_operations.py +0 -0
  23. {structx-0.4.8 → structx-0.4.10}/structx/extraction/result_manager.py +0 -0
  24. {structx-0.4.8 → structx-0.4.10}/structx/utils/__init__.py +0 -0
  25. {structx-0.4.8 → structx-0.4.10}/structx/utils/constants.py +0 -0
  26. {structx-0.4.8 → structx-0.4.10}/structx/utils/file_reader.py +0 -0
  27. {structx-0.4.8 → structx-0.4.10}/structx/utils/helpers.py +0 -0
  28. {structx-0.4.8 → structx-0.4.10}/structx/utils/prompts.py +0 -0
  29. {structx-0.4.8 → structx-0.4.10}/structx/utils/types.py +0 -0
  30. {structx-0.4.8 → structx-0.4.10}/structx/utils/usage.py +0 -0
  31. {structx-0.4.8 → structx-0.4.10}/structx.egg-info/SOURCES.txt +0 -0
  32. {structx-0.4.8 → structx-0.4.10}/structx.egg-info/dependency_links.txt +0 -0
  33. {structx-0.4.8 → structx-0.4.10}/structx.egg-info/requires.txt +0 -0
  34. {structx-0.4.8 → structx-0.4.10}/structx.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: structx
3
- Version: 0.4.8
3
+ Version: 0.4.10
4
4
  Summary: Structured data extraction from text using LLMs and dynamic model generation
5
5
  Author-email: blacksuan19 <py@blacksuan19.dev>
6
6
  Classifier: Development Status :: 5 - Production/Stable
@@ -91,7 +91,7 @@ Advanced structured data extraction from any document using LLMs with multimodal
91
91
  support.
92
92
 
93
93
  [![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg?style=for-the-badge)](https://structx.blacksuan19.dev "Documentation")
94
- [![PyPI](https://img.shields.io/badge/PyPi-0.4.8-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
94
+ [![PyPI](https://img.shields.io/badge/PyPi-0.4.10-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
95
95
  [![GitHub Actions](https://img.shields.io/badge/github%20actions-%232671E5.svg?style=for-the-badge&logo=githubactions&logoColor=white)](# "Build with GitHub Actions")
96
96
 
97
97
  `structx` is a powerful Python library for extracting structured data from any
@@ -4,7 +4,7 @@ Advanced structured data extraction from any document using LLMs with multimodal
4
4
  support.
5
5
 
6
6
  [![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg?style=for-the-badge)](https://structx.blacksuan19.dev "Documentation")
7
- [![PyPI](https://img.shields.io/badge/PyPi-0.4.8-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
7
+ [![PyPI](https://img.shields.io/badge/PyPi-0.4.10-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
8
8
  [![GitHub Actions](https://img.shields.io/badge/github%20actions-%232671E5.svg?style=for-the-badge&logo=githubactions&logoColor=white)](# "Build with GitHub Actions")
9
9
 
10
10
  `structx` is a powerful Python library for extracting structured data from any
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "structx"
7
- version = "0.4.8"
7
+ version = "0.4.10"
8
8
  description = "Structured data extraction from text using LLMs and dynamic model generation"
9
9
  authors = [{ name = "blacksuan19", email = "py@blacksuan19.dev" }]
10
10
  license-files = ["LICENSE"]
@@ -94,7 +94,7 @@ mkdocs = [
94
94
  ]
95
95
 
96
96
  [tool.bumpver]
97
- current_version = "0.4.8"
97
+ current_version = "0.4.10"
98
98
  version_pattern = "MAJOR.MINOR.PATCH"
99
99
  commit_message = "Bump version {old_version} -> {new_version}"
100
100
  commit = true
@@ -11,7 +11,7 @@ from structx.core.models import (
11
11
  )
12
12
  from structx.extraction.extractor import Extractor
13
13
 
14
- __version__ = "0.4.8"
14
+ __version__ = "0.4.10"
15
15
  __all__ = [
16
16
  "Extractor",
17
17
  "ExtractionConfig",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: structx
3
- Version: 0.4.8
3
+ Version: 0.4.10
4
4
  Summary: Structured data extraction from text using LLMs and dynamic model generation
5
5
  Author-email: blacksuan19 <py@blacksuan19.dev>
6
6
  Classifier: Development Status :: 5 - Production/Stable
@@ -91,7 +91,7 @@ Advanced structured data extraction from any document using LLMs with multimodal
91
91
  support.
92
92
 
93
93
  [![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg?style=for-the-badge)](https://structx.blacksuan19.dev "Documentation")
94
- [![PyPI](https://img.shields.io/badge/PyPi-0.4.8-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
94
+ [![PyPI](https://img.shields.io/badge/PyPi-0.4.10-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
95
95
  [![GitHub Actions](https://img.shields.io/badge/github%20actions-%232671E5.svg?style=for-the-badge&logo=githubactions&logoColor=white)](# "Build with GitHub Actions")
96
96
 
97
97
  `structx` is a powerful Python library for extracting structured data from any
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes