Index-9

Qwen2.5-Coder-1.5B-Instruct fine-tuned with QLoRA for coding (Python + web: JS/TS/HTML/CSS). Designed to be paired with live web search โ€” a small model that leans on the web for facts. See the companion Space for the search-augmented chat demo.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

tok = AutoTokenizer.from_pretrained("Visixn/Index-9")
model = AutoModelForCausalLM.from_pretrained("Visixn/Index-9")

msgs = [{"role": "user", "content": "Write a palindrome checker in Python"}]
prompt = tok.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True)
out = model.generate(**tok(prompt, return_tensors="pt"), max_new_tokens=256)
print(tok.decode(out[0], skip_special_tokens=True))
Downloads last month
12
Safetensors
Model size
2B params
Tensor type
F16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for Visixn/Index-9

Finetuned
(210)
this model

Space using Visixn/Index-9 1