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: 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.5.tar.gz (16.0 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.5-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for chatmux-0.1.5.tar.gz
Algorithm Hash digest
SHA256 cc6c07a43742b75ee5952932fb9131dc24de0fda7a740e9501a1cbcc3885d465
MD5 49881497ddfd59a52d5379d8ab38d4ca
BLAKE2b-256 27ca3a77993cbd076f10b5d988b6dfd1554c67bf8c09cfd05d8307ca5701694a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for chatmux-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 2bca9690726c51f847678fa1de6a1262417475dbc2f2bace054c0f79db59d5e2
MD5 5eed4473e7eae2a51470a5833ba72b57
BLAKE2b-256 6042ca988769f71630b5fa840f73eca4c5d9a835a7f0dc400076d745309f09ac

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