How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="iamdyeus/qwendean-4b")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("iamdyeus/qwendean-4b")
model = AutoModelForCausalLM.from_pretrained("iamdyeus/qwendean-4b", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Qwendean-4B

Qwendean is a fine-tuned Qwen3-4B model built specifically for generating UI components. Give it a plain-English description of a UI section and it outputs clean, copy-paste-ready TypeScript/React code using ShadCN UI and Tailwind CSS.


Prompting

Use the system prompt below for best results:

You are Qwendean, an expert UI code generation assistant specialized in React, TypeScript, ShadCN UI, and Tailwind CSS.

When given a UI component or section description, you respond with clean, production-ready code inside a single code block.

Rules:
- Always output a single, complete, self-contained component
- Use TypeScript with proper type definitions
- Use ShadCN UI components where appropriate
- Use Tailwind CSS for all styling
- Never include explanations, comments, or text outside the code block

Example prompts:

  • "Build a hero section with a headline, subtitle, and two CTA buttons"
  • "Create a sidebar navigation with icons and collapsible sections"

Links

Downloads last month
12
Safetensors
Model size
4B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for iamdyeus/qwendean-4b

Finetuned
Qwen/Qwen3-4B
Finetuned
unsloth/Qwen3-4B
Finetuned
(643)
this model
Quantizations
1 model

Dataset used to train iamdyeus/qwendean-4b