Views
No views yet
ramankrishna10/npc-agentic-7b-v3 for fast, memory-efficient
inference (loads in ~5 GB VRAM, ideal for vLLM serving).llm-compressorlm_head (kept in full precision)1from vllm import LLM, SamplingParams
2llm = LLM(model="ramankrishna10/npc-agentic-7b-v3-gptq-4bit", dtype="float16")
3out = llm.generate(
4 ["Design an event-sourced microservice with exactly-once command handling."],
5 SamplingParams(max_tokens=1024, temperature=0.7, top_p=0.9),
6)
7print(out[0].outputs[0].text)ramankrishna10/npc-agentic-7b-v3 — FP16 referenceramankrishna10/npc-agentic-7b-lora — LoRA adapter for apply-on-base workflows1@misc{bachu2026npcagentic7b,
2 title = {NPC Agentic 7B: A Single-GPU QLoRA Recipe for a Laptop-Scale Conversational Model},
3 author = {Bachu, Rama Krishna},
4 year = {2026},
5 month = may,
6 publisher = {Zenodo},
7 version = {v1},
8 doi = {10.5281/zenodo.19954103},
9 url = {https://doi.org/10.5281/zenodo.19954103},
10 note = {Preprint}
11}