Skip to main content

Convert between common LLM chat schemas

Project description

chatmux

Convert to and from common LLM chat schemas.

All implementations are built on pydantic base models to be network ready.

Installation

pip install chatmux

Usage

Fully OpenAI compatible pydantic models

from chatmux.openai import UserMessage, TextContentPart, ImageContentPart, ImageUrl

# Example using Pydantic models (more robust):
user_message = UserMessage(
    role="user",
    content=[
        TextContentPart(type="text", text="Describe this image:"),
        ImageContentPart(
            type="image_url",
            image_url=ImageUrl(url="https://example.com/image.jpg")
        )
    ]
)
openai_messages = [user_message.model_dump(exclude_none=True)] # Convert model to dict

Conversion methods to and from other schemas

from chatmux.convert import oai_to_qwen

qwen_messages = oai_to_qwen(openai_messages)
print(qwen_messages)
# Expected Output (structure based on oai_to_qwen):
# [
#     {
#         'role': 'user',
#         'content': [
#             {'type': 'text', 'text': 'Describe this image:'},
#             {'type': 'image', 'image': 'https://example.com/image.jpg'}
#         ]
#     }
# ]

Supported Conversions (as implemented in src/chatmux/convert.py):

  • OpenAI-like -> Unsloth Inference: Converts multimodal messages, downloads images, and formats for Unsloth. Returns new schema and PIL Images. (convert_to_unsloth_inference)
  • OpenAI-like -> Unsloth: Converts messages (potentially from JSONL), handling image URLs/base64, embedding PIL Images. (oai_to_unsloth)
  • OpenAI-like -> Qwen: Converts multimodal messages, keeping image URLs as strings but adjusting the content structure. (oai_to_qwen)

Contributing

Please open an issue before submitting a PR.

License

MIT

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

chatmux-0.1.3.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

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

chatmux-0.1.3-py3-none-any.whl (16.6 kB view details)

Uploaded Python 3

File details

Details for the file chatmux-0.1.3.tar.gz.

File metadata

  • Download URL: chatmux-0.1.3.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.29

File hashes

Hashes for chatmux-0.1.3.tar.gz
Algorithm Hash digest
SHA256 371a2f930d796e87d103568e26adf54d58206d0466cf6e2292fe1952ce647e41
MD5 43ef6733b16e744f46d3a5ea6d78b5ec
BLAKE2b-256 7141130a91c836cf13b1ffa21754f982a286ad3b152a0b6183914366e8871d20

See more details on using hashes here.

File details

Details for the file chatmux-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: chatmux-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.29

File hashes

Hashes for chatmux-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9772d0f6b81e7a3071f351a2ed3ebb7a3b002118a81dff5025ab064c2efda7d6
MD5 a3cc1bde46d6067f7129d1942898a240
BLAKE2b-256 ca8a8598a1035abb617aae6b6809815aef997c95bd64d9de3c4030555a4670a0

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