Gwen 1.0 Code Mini is the lightweight variant of the Gwen series, optimized for speed and efficiency without sacrificing the "sharp" reasoning required for complex UI/UX tasks. It excels in generating clean, minimalist code following the Geist Design System.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "jinxsuperdev/gwen1.0-code-mini"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)