Skip to main content

A new package that processes user-provided text descriptions of images and returns structured, validated outputs using pattern matching. It ensures that the generated content adheres to a predefined f

Project description

image-text-structurizer

PyPI version License: MIT Downloads LinkedIn

A Python package to process user-provided text descriptions of images and extract structured, validated outputs using pattern matching and a language model. Ensures that the output adheres to a predefined format such as XML-like tags, facilitating consistent and reliable extraction of image metadata or summaries without directly handling image data.

Installation

Install via pip:

pip install image_text_structurizer

Usage Example

from image_text_structurizer import image_text_structurizer

response = image_text_structurizer(user_input="A scenic landscape with mountains and a river")
print(response)

Function Parameters

  • user_input (str): The text description of the image to process.
  • llm (Optional[BaseChatModel]): An instance of a language model. Defaults to ChatLLM7 from langchain_llm7.
  • api_key (Optional[str]): API key for accessing the ChatLLM7 model. If not provided, it attempts to fetch from environment variable LLM7_API_KEY. You can also set it directly in code.

Supported Language Models

This package uses ChatLLM7 by default, which can be imported from langchain_llm7. Developers can pass other models, such as:

  • OpenAI Chat models
  • Anthropic models
  • Google Generative AI models

by creating an instance and passing it to the image_text_structurizer function.

Examples:

Using OpenAI:

from langchain_openai import ChatOpenAI
from image_text_structurizer import image_text_structurizer

llm = ChatOpenAI()
response = image_text_structurizer(user_input="A sunset over the ocean", llm=llm)

Using Anthropic:

from langchain_anthropic import ChatAnthropic
from image_text_structurizer import image_text_structurizer

llm = ChatAnthropic()
response = image_text_structurizer(user_input="A forest with tall trees and fog", llm=llm)

Using Google Generative AI:

from langchain_google_genai import ChatGoogleGenerativeAI
from image_text_structurizer import image_text_structurizer

llm = ChatGoogleGenerativeAI()
response = image_text_structurizer(user_input="A city skyline at night", llm=llm)

Notes

  • The package relies on the ChatLLM7 model from langchain_llm7.
  • Default rate limits are suitable for most use cases, but higher limits can be obtained by registering for an API key at https://token.llm7.io/.
  • To pass your own API key, set the environment variable LLM7_API_KEY or pass it directly:
response = image_text_structurizer(user_input="Example text", api_key="your_api_key")

Support & Contributions

Author

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

image_text_structurizer-2025.12.21124037.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file image_text_structurizer-2025.12.21124037.tar.gz.

File metadata

File hashes

Hashes for image_text_structurizer-2025.12.21124037.tar.gz
Algorithm Hash digest
SHA256 90cf4cc4223f2fedbf9da40c96afb0a88500899765e08a7c1855557138d66ef2
MD5 7f1175db8155084246f870511810a92f
BLAKE2b-256 a696f46fa0f74652942a709a723a2de663e40cf54ddf87a957eb2c83641272ea

See more details on using hashes here.

File details

Details for the file image_text_structurizer-2025.12.21124037-py3-none-any.whl.

File metadata

File hashes

Hashes for image_text_structurizer-2025.12.21124037-py3-none-any.whl
Algorithm Hash digest
SHA256 a540de22111f4397e6a609ecfb307ffdcbdcdef4c2d4d985c5edf6bbc50d0bb2
MD5 7dff045d09b3318a9712b046ed6ed57e
BLAKE2b-256 b98ed3d8b7013c90d17974bda760a3d52a86aa91bd59745097bd34dd1bf11349

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page