This repository contains a fine-tuned version of
Unsloth's gemma-3-4b-it model, optimized for lightweight 4-bit inference and instruction tuning using Hugging Face's
TRL and Unsloth's speed-optimized framework.
UnoPim is an open-source Product Information Management (PIM) system built on the Laravel framework. It helps businesses organize, manage, and enrich their product information in one central repository.
This model was fine-tuned on unopim dev documentation available at
https://devdocs.unopim.com/, focusing on structured software documentation and developer support content.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_name = "webkul/gemma-3-4b-it-unopim-docs"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)
6
7input_text = "How do I integrate the UnoPIM API for product syncing?"
8inputs = tokenizer(input_text, return_tensors="pt")
9outputs = model.generate(**inputs, max_new_tokens=300)
10print(tokenizer.decode(outputs[0], skip_special_tokens=True))
📄 License
This model is licensed under the Apache License 2.0.