How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Abhinay2/abhi-limitless-v1"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Abhinay2/abhi-limitless-v1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/Abhinay2/abhi-limitless-v1
Quick Links

Abhi Limitless V1

LoRA adapter fine-tuned on Telugu motivational reel scripts written in English transliteration.

Base Model

unsloth/Qwen3.5-2B

Training Data

95 Telugu motivational reel scripts focused on:

  • Discipline
  • Consistency
  • Self-improvement
  • Mindset
  • Confidence
  • Productivity

Usage

Load together with the base model:

from transformers import AutoModelForCausalLM
from peft import PeftModel

base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen3.5-2B")
model = PeftModel.from_pretrained(
    base_model,
    "Abhinay2/abhi-limitless-v1"
)
Downloads last month
18
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Abhinay2/abhi-limitless-v1

Finetuned
Qwen/Qwen3.5-2B
Adapter
(26)
this model