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.
- {structx-0.4.8/structx.egg-info → structx-0.4.10}/PKG-INFO +2 -2
- {structx-0.4.8 → structx-0.4.10}/README.md +1 -1
- {structx-0.4.8 → structx-0.4.10}/pyproject.toml +2 -2
- {structx-0.4.8 → structx-0.4.10}/structx/__init__.py +1 -1
- {structx-0.4.8 → structx-0.4.10/structx.egg-info}/PKG-INFO +2 -2
- {structx-0.4.8 → structx-0.4.10}/LICENSE +0 -0
- {structx-0.4.8 → structx-0.4.10}/setup.cfg +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/core/__init__.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/core/config.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/core/exceptions.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/core/models.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/__init__.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/core/__init__.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/core/llm_core.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/core/model_utils.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/engines/__init__.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/engines/extraction_engine.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/extractor.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/generator.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/processors/__init__.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/processors/data_content.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/processors/model_operations.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/extraction/result_manager.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/__init__.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/constants.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/file_reader.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/helpers.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/prompts.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/types.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx/utils/usage.py +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx.egg-info/SOURCES.txt +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx.egg-info/dependency_links.txt +0 -0
- {structx-0.4.8 → structx-0.4.10}/structx.egg-info/requires.txt +0 -0
- {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.
|
|
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
|
[](https://structx.blacksuan19.dev "Documentation")
|
|
94
|
-
[](https://pypi.org/project/structx "Package")
|
|
95
95
|
[](# "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
|
[](https://structx.blacksuan19.dev "Documentation")
|
|
7
|
-
[](https://pypi.org/project/structx "Package")
|
|
8
8
|
[](# "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.
|
|
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.
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: structx
|
|
3
|
-
Version: 0.4.
|
|
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
|
[](https://structx.blacksuan19.dev "Documentation")
|
|
94
|
-
[](https://pypi.org/project/structx "Package")
|
|
95
95
|
[](# "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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|