structx 0.6.1__tar.gz → 0.6.2__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.6.1/structx.egg-info → structx-0.6.2}/PKG-INFO +2 -2
- {structx-0.6.1 → structx-0.6.2}/README.md +1 -1
- {structx-0.6.1 → structx-0.6.2}/pyproject.toml +3 -3
- {structx-0.6.1 → structx-0.6.2}/structx/__init__.py +1 -1
- {structx-0.6.1 → structx-0.6.2/structx.egg-info}/PKG-INFO +2 -2
- {structx-0.6.1 → structx-0.6.2}/LICENSE +0 -0
- {structx-0.6.1 → structx-0.6.2}/setup.cfg +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/core/__init__.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/core/config.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/core/exceptions.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/core/input.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/core/models.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/core/type_system.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/__init__.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/core/__init__.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/core/llm_core.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/engines/__init__.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/engines/extraction_engine.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/extractor.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/generator.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/__init__.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/batch_processor.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/content_analyzer.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/input_processor.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/model_operations.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/extraction/result_manager.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/schema.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/utils/__init__.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/utils/file_reader.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/utils/helpers.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/utils/prompts.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/utils/types.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx/utils/usage.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx.egg-info/SOURCES.txt +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx.egg-info/dependency_links.txt +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx.egg-info/requires.txt +0 -0
- {structx-0.6.1 → structx-0.6.2}/structx.egg-info/top_level.txt +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_config_and_model_utils.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_content_analyzer.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_document_conversion_integration.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_extraction_engine.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_extractor_async.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_extractor_flow.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_file_reader.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_input_and_batch_processors.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_live_llm.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_llm_configuration.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_result_manager_and_helpers.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_schema_contract.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_type_system_and_planning.py +0 -0
- {structx-0.6.1 → structx-0.6.2}/tests/test_usage.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: structx
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.2
|
|
4
4
|
Summary: Structured data extraction from text using LLMs and dynamic model generation
|
|
5
5
|
Author-email: blacksuan19 <py@aolabs.dev>
|
|
6
6
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -64,7 +64,7 @@ Advanced structured data extraction from any document using LLMs with multimodal
|
|
|
64
64
|
support.
|
|
65
65
|
|
|
66
66
|
[](https://structx.aolabs.dev "Documentation")
|
|
67
|
-
[](https://pypi.org/project/structx "Package")
|
|
68
68
|
[](# "Build with GitHub Actions")
|
|
69
69
|
|
|
70
70
|
See the [project roadmap](docs/ROADMAP.md) for planned portable business rules
|
|
@@ -4,7 +4,7 @@ Advanced structured data extraction from any document using LLMs with multimodal
|
|
|
4
4
|
support.
|
|
5
5
|
|
|
6
6
|
[](https://structx.aolabs.dev "Documentation")
|
|
7
|
-
[](https://pypi.org/project/structx "Package")
|
|
8
8
|
[](# "Build with GitHub Actions")
|
|
9
9
|
|
|
10
10
|
See the [project roadmap](docs/ROADMAP.md) for planned portable business rules
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "structx"
|
|
7
|
-
version = "0.6.
|
|
7
|
+
version = "0.6.2"
|
|
8
8
|
description = "Structured data extraction from text using LLMs and dynamic model generation"
|
|
9
9
|
authors = [{ name = "blacksuan19", email = "py@aolabs.dev" }]
|
|
10
10
|
license-files = ["LICENSE"]
|
|
@@ -92,9 +92,9 @@ torchvision = [
|
|
|
92
92
|
]
|
|
93
93
|
|
|
94
94
|
[tool.bumpver]
|
|
95
|
-
current_version = "0.6.
|
|
95
|
+
current_version = "0.6.2"
|
|
96
96
|
version_pattern = "MAJOR.MINOR.PATCH"
|
|
97
|
-
commit_message = "
|
|
97
|
+
commit_message = "chore(release): bump version {old_version} -> {new_version}"
|
|
98
98
|
commit = true
|
|
99
99
|
tag = true
|
|
100
100
|
push = true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: structx
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.2
|
|
4
4
|
Summary: Structured data extraction from text using LLMs and dynamic model generation
|
|
5
5
|
Author-email: blacksuan19 <py@aolabs.dev>
|
|
6
6
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -64,7 +64,7 @@ Advanced structured data extraction from any document using LLMs with multimodal
|
|
|
64
64
|
support.
|
|
65
65
|
|
|
66
66
|
[](https://structx.aolabs.dev "Documentation")
|
|
67
|
-
[](https://pypi.org/project/structx "Package")
|
|
68
68
|
[](# "Build with GitHub Actions")
|
|
69
69
|
|
|
70
70
|
See the [project roadmap](docs/ROADMAP.md) for planned portable business rules
|
|
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
|
|
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
|