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.
Files changed (51) hide show
  1. {structx-0.6.1/structx.egg-info → structx-0.6.2}/PKG-INFO +2 -2
  2. {structx-0.6.1 → structx-0.6.2}/README.md +1 -1
  3. {structx-0.6.1 → structx-0.6.2}/pyproject.toml +3 -3
  4. {structx-0.6.1 → structx-0.6.2}/structx/__init__.py +1 -1
  5. {structx-0.6.1 → structx-0.6.2/structx.egg-info}/PKG-INFO +2 -2
  6. {structx-0.6.1 → structx-0.6.2}/LICENSE +0 -0
  7. {structx-0.6.1 → structx-0.6.2}/setup.cfg +0 -0
  8. {structx-0.6.1 → structx-0.6.2}/structx/core/__init__.py +0 -0
  9. {structx-0.6.1 → structx-0.6.2}/structx/core/config.py +0 -0
  10. {structx-0.6.1 → structx-0.6.2}/structx/core/exceptions.py +0 -0
  11. {structx-0.6.1 → structx-0.6.2}/structx/core/input.py +0 -0
  12. {structx-0.6.1 → structx-0.6.2}/structx/core/models.py +0 -0
  13. {structx-0.6.1 → structx-0.6.2}/structx/core/type_system.py +0 -0
  14. {structx-0.6.1 → structx-0.6.2}/structx/extraction/__init__.py +0 -0
  15. {structx-0.6.1 → structx-0.6.2}/structx/extraction/core/__init__.py +0 -0
  16. {structx-0.6.1 → structx-0.6.2}/structx/extraction/core/llm_core.py +0 -0
  17. {structx-0.6.1 → structx-0.6.2}/structx/extraction/engines/__init__.py +0 -0
  18. {structx-0.6.1 → structx-0.6.2}/structx/extraction/engines/extraction_engine.py +0 -0
  19. {structx-0.6.1 → structx-0.6.2}/structx/extraction/extractor.py +0 -0
  20. {structx-0.6.1 → structx-0.6.2}/structx/extraction/generator.py +0 -0
  21. {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/__init__.py +0 -0
  22. {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/batch_processor.py +0 -0
  23. {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/content_analyzer.py +0 -0
  24. {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/input_processor.py +0 -0
  25. {structx-0.6.1 → structx-0.6.2}/structx/extraction/processors/model_operations.py +0 -0
  26. {structx-0.6.1 → structx-0.6.2}/structx/extraction/result_manager.py +0 -0
  27. {structx-0.6.1 → structx-0.6.2}/structx/schema.py +0 -0
  28. {structx-0.6.1 → structx-0.6.2}/structx/utils/__init__.py +0 -0
  29. {structx-0.6.1 → structx-0.6.2}/structx/utils/file_reader.py +0 -0
  30. {structx-0.6.1 → structx-0.6.2}/structx/utils/helpers.py +0 -0
  31. {structx-0.6.1 → structx-0.6.2}/structx/utils/prompts.py +0 -0
  32. {structx-0.6.1 → structx-0.6.2}/structx/utils/types.py +0 -0
  33. {structx-0.6.1 → structx-0.6.2}/structx/utils/usage.py +0 -0
  34. {structx-0.6.1 → structx-0.6.2}/structx.egg-info/SOURCES.txt +0 -0
  35. {structx-0.6.1 → structx-0.6.2}/structx.egg-info/dependency_links.txt +0 -0
  36. {structx-0.6.1 → structx-0.6.2}/structx.egg-info/requires.txt +0 -0
  37. {structx-0.6.1 → structx-0.6.2}/structx.egg-info/top_level.txt +0 -0
  38. {structx-0.6.1 → structx-0.6.2}/tests/test_config_and_model_utils.py +0 -0
  39. {structx-0.6.1 → structx-0.6.2}/tests/test_content_analyzer.py +0 -0
  40. {structx-0.6.1 → structx-0.6.2}/tests/test_document_conversion_integration.py +0 -0
  41. {structx-0.6.1 → structx-0.6.2}/tests/test_extraction_engine.py +0 -0
  42. {structx-0.6.1 → structx-0.6.2}/tests/test_extractor_async.py +0 -0
  43. {structx-0.6.1 → structx-0.6.2}/tests/test_extractor_flow.py +0 -0
  44. {structx-0.6.1 → structx-0.6.2}/tests/test_file_reader.py +0 -0
  45. {structx-0.6.1 → structx-0.6.2}/tests/test_input_and_batch_processors.py +0 -0
  46. {structx-0.6.1 → structx-0.6.2}/tests/test_live_llm.py +0 -0
  47. {structx-0.6.1 → structx-0.6.2}/tests/test_llm_configuration.py +0 -0
  48. {structx-0.6.1 → structx-0.6.2}/tests/test_result_manager_and_helpers.py +0 -0
  49. {structx-0.6.1 → structx-0.6.2}/tests/test_schema_contract.py +0 -0
  50. {structx-0.6.1 → structx-0.6.2}/tests/test_type_system_and_planning.py +0 -0
  51. {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.1
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
  [![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg?style=for-the-badge)](https://structx.aolabs.dev "Documentation")
67
- [![PyPI](https://img.shields.io/badge/PyPi-0.6.1-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
67
+ [![PyPI](https://img.shields.io/badge/PyPi-0.6.2-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
68
68
  [![GitHub Actions](https://img.shields.io/badge/github%20actions-%232671E5.svg?style=for-the-badge&logo=githubactions&logoColor=white)](# "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
  [![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg?style=for-the-badge)](https://structx.aolabs.dev "Documentation")
7
- [![PyPI](https://img.shields.io/badge/PyPi-0.6.1-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
7
+ [![PyPI](https://img.shields.io/badge/PyPi-0.6.2-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
  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.1"
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.1"
95
+ current_version = "0.6.2"
96
96
  version_pattern = "MAJOR.MINOR.PATCH"
97
- commit_message = "Bump version {old_version} -> {new_version}"
97
+ commit_message = "chore(release): bump version {old_version} -> {new_version}"
98
98
  commit = true
99
99
  tag = true
100
100
  push = true
@@ -21,7 +21,7 @@ from structx.schema import (
21
21
  model_to_extraction_request,
22
22
  )
23
23
 
24
- __version__ = "0.6.1"
24
+ __version__ = "0.6.2"
25
25
  __all__ = [
26
26
  "Extractor",
27
27
  "ExtractionConfig",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: structx
3
- Version: 0.6.1
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
  [![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg?style=for-the-badge)](https://structx.aolabs.dev "Documentation")
67
- [![PyPI](https://img.shields.io/badge/PyPi-0.6.1-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
67
+ [![PyPI](https://img.shields.io/badge/PyPi-0.6.2-blue?style=for-the-badge)](https://pypi.org/project/structx "Package")
68
68
  [![GitHub Actions](https://img.shields.io/badge/github%20actions-%232671E5.svg?style=for-the-badge&logo=githubactions&logoColor=white)](# "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