nightmedia's picture
Add files using upload-large-folder tool
ba750d5 verified
metadata
base_model: Tesslate/UIGEN-X-32B-0727
tags:
  - text-generation-inference
  - transformers
  - qwen3
  - ui-generation
  - tailwind-css
  - html
  - reasoning
  - step-by-step-generation
  - hybrid-thinking
  - tool-calling
  - mlx
license: apache-2.0
language:
  - en
library_name: mlx
pipeline_tag: text-generation

UIGEN-X-32B-0727-q5-mlx

This model UIGEN-X-32B-0727-q5-mlx was converted to MLX format from Tesslate/UIGEN-X-32B-0727 using mlx-lm version 0.26.0.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("UIGEN-X-32B-0727-q5-mlx")

prompt = "hello"

if tokenizer.chat_template is not None:
    messages = [{"role": "user", "content": prompt}]
    prompt = tokenizer.apply_chat_template(
        messages, add_generation_prompt=True
    )

response = generate(model, tokenizer, prompt=prompt, verbose=True)