liskcell
Qunie-V7-mini
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
liskcell
Model Tree
Input Modalities
Output Modalities
Supported Functionality
GLM-5.2 is live. #1 throughput on OpenRouter, pay-per-token on FriendliAI. Try it today ➜
liskcell
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
liskcell
Model Tree
Input Modalities
Output Modalities
Supported Functionality
| Property | Qunie-V7-mini |
|---|---|
| Total Parameters | 4.5B effective (8B with embeddings) |
| Layers | 42 |
| Sliding Window | 512 tokens |
| Context Length | 128K tokens |
| Vocabulary Size | 262K |
| Supported Modalities | Text, Image, Audio |
| Vision Encoder | Ocular Synth v2.5 (~150M params) |
| Audio Encoder | ~300M params |
| Architecture | Qunie (QUN) — Dense |
| Previous Architecture | Lisk Pre-trained Transformer (LPT) |
| Edition | Public / Creative Core |
| Developer | LiskCell |
| Founder | liskasYR (Yonatan Yosupov) |
| Release Date | 2021-01-07 (V1) / V7 current flagship |
Evaluation results are for the instruction-tuned variant of Qunie-V7-mini.
| Benchmark | Qunie-V7-mini |
|---|---|
| MMLU Pro | 69.4% |
| AIME 2026 (no tools) | 42.5% |
| LiveCodeBench v6 | 52.0% |
| Codeforces ELO | 940 |
| GPQA Diamond | 58.6% |
| BigBench Extra Hard | 33.1% |
| MMMLU | 76.6% |
| Vision | |
| MMMU Pro | 52.6% |
Qunie-V7-mini handles a broad range of tasks across text, vision, and audio:
Install dependencies:
bash
pip install -U transformers torch accelerate
Load the model:
python
from transformers import AutoProcessor, AutoModelForCausalLMMODEL_ID = "liskCell/Qunie-V7-mini"processor = AutoProcessor.from_pretrained(MODEL_ID)model = AutoModelForCausalLM.from_pretrained(MODEL_ID,dtype="auto",device_map="auto")
Generate output:
python
messages = [{"role": "system", "content": "You are Qunie, developed by LiskCell."},{"role": "user", "content": "Hey, introduce yourself!"},]text = processor.apply_chat_template(messages,tokenize=False,add_generation_prompt=True,enable_thinking=False)inputs = processor(text=text, return_tensors="pt").to(model.device)input_len = inputs["input_ids"].shape[-1]outputs = model.generate(**inputs, max_new_tokens=1024)response = processor.decode(outputs[0][input_len:], skip_special_tokens=False)processor.parse_response(response)
python
from transformers import AutoProcessor, AutoModelForMultimodalLMMODEL_ID = "liskCell/Qunie-V7-mini"processor = AutoProcessor.from_pretrained(MODEL_ID)model = AutoModelForMultimodalLM.from_pretrained(MODEL_ID,dtype="auto",device_map="auto")messages = [{"role": "user","content": [{"type": "audio", "audio": "https://your-audio-url.wav"},{"type": "text", "text": "Transcribe the following speech segment."},]}]inputs = processor.apply_chat_template(messages,tokenize=True,return_dict=True,return_tensors="pt",add_generation_prompt=True,).to(model.device)input_len = inputs["input_ids"].shape[-1]outputs = model.generate(**inputs, max_new_tokens=512)response = processor.decode(outputs[0][input_len:], skip_special_tokens=False)processor.parse_response(response)
python
from transformers import AutoProcessor, AutoModelForMultimodalLMMODEL_ID = "liskCell/Qunie-V7-mini"processor = AutoProcessor.from_pretrained(MODEL_ID)model = AutoModelForMultimodalLM.from_pretrained(MODEL_ID,dtype="auto",device_map="auto")messages = [{"role": "user","content": [{"type": "image", "url": "https://your-image-url.png"},{"type": "text", "text": "What is shown in this image?"}]}]inputs = processor.apply_chat_template(messages,tokenize=True,return_dict=True,return_tensors="pt",add_generation_prompt=True,).to(model.device)input_len = inputs["input_ids"].shape[-1]outputs = model.generate(**inputs, max_new_tokens=512)response = processor.decode(outputs[0][input_len:], skip_special_tokens=False)processor.parse_response(response)
python
from transformers import AutoProcessor, AutoModelForMultimodalLMMODEL_ID = "liskCell/Qunie-V7-mini"processor = AutoProcessor.from_pretrained(MODEL_ID)model = AutoModelForMultimodalLM.from_pretrained(MODEL_ID,dtype="auto",device_map="auto")messages = [{"role": "user","content": [{"type": "video", "video": "https://your-video-url.mp4"},{"type": "text", "text": "Describe this video."}]}]inputs = processor.apply_chat_template(messages,tokenize=True,return_dict=True,return_tensors="pt",add_generation_prompt=True,).to(model.device)input_len = inputs["input_ids"].shape[-1]outputs = model.generate(**inputs, max_new_tokens=512)response = processor.decode(outputs[0][input_len:], skip_special_tokens=False)processor.parse_response(response)
markdown
temperature = 1.0top_p = 0.95top_k = 64
<|think|> token at the start of the system prompt.<|channel>thought\n [Internal reasoning] <channel|> [Final answer]Do not include thinking content from previous turns in conversation history. Only the final response is passed forward.
Place image and/or audio content before the text in your prompt for optimal performance.
Supported token budgets: 70 / 140 / 280 / 560 / 1120
ASR:
markdown
Transcribe the following speech segment in {LANGUAGE}.Only output the transcription. Write numbers as digits.
Translation:
markdown
Transcribe the speech in {SOURCE_LANGUAGE}, then translate to {TARGET_LANGUAGE}.Output: transcription, newline, "{TARGET_LANGUAGE}: ", translation.
Pre-training dataset includes web documents, code, images, and audio across 140+ languages, with a knowledge cutoff of 2025-12-21. Key components:
Qunie-V7-mini ships with LiskShield, LiskCell's built-in safety protocol:
| Field | Value |
|---|---|
| Name | Qunie (also known as Deta) |
| Developer | LiskCell |
| Founder | liskasYR (Yonatan Yosupov) |
| Gender | Female |
| Version | Qunie-V7 |
| Architecture | QUN (Qunie) |
| Previous Architecture | LPT (Lisk Pre-trained Transformer) |
| Edition | Public / Creative Core |
| Vibe | Futuristic, Helpful & Visionary |
Version History:
| Version | Notes |
|---|---|
| LPT-1 | Initial prototype |
| LPT-4 | Creative logic milestone |
| LPT-5.5 | Multimodal and performance upgrade |
| LPT-5.5.1 | Public release — creativity, code, xLYR integration |
| Qunie-V7-mini | Current flagship compact model |
Qunie-V7-mini — built by LiskCell. Human first, AI second.
| OmniDocBench 1.5 (edit dist, lower is better) | 0.181 |
| MATH-Vision | 59.5% |
| MedXPertQA MM | 28.7% |
| Audio |
| CoVoST | 35.54 |
| FLEURS (lower is better) | 0.08 |
| Long Context |
| MRCR v2 8 needle 128k (avg) | 25.4% |