Text Generation
Transformers
Safetensors
English
Vietnamese
qwen3_5
image-text-to-text
function-calling
tool-use
tool-calling
agent
agentic
rl
grpo
lora
intuitor
self-certainty
vllm
qwen3.6
vietnamese
enterprise-automation
conversational
Instructions to use beyoru/Opera with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use beyoru/Opera with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="beyoru/Opera") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("beyoru/Opera") model = AutoModelForMultimodalLM.from_pretrained("beyoru/Opera", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use beyoru/Opera with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "beyoru/Opera" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "beyoru/Opera", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/beyoru/Opera
- SGLang
How to use beyoru/Opera with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "beyoru/Opera" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "beyoru/Opera", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "beyoru/Opera" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "beyoru/Opera", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use beyoru/Opera with Docker Model Runner:
docker model run hf.co/beyoru/Opera
File size: 6,935 Bytes
c26b0bf c793531 8e89934 c793531 8e89934 c793531 8e89934 c793531 8e89934 c793531 2313b98 c793531 c26b0bf c793531 c26b0bf c793531 c26b0bf c793531 c26b0bf c793531 c26b0bf c793531 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | ---
license: apache-2.0
base_model: Qwen/Qwen3.6-27B
base_model_relation: finetune
pipeline_tag: text-generation
library_name: transformers
language:
- en
- vi
tags:
- function-calling
- tool-use
- tool-calling
- agent
- agentic
- rl
- grpo
- lora
- intuitor
- self-certainty
- vllm
- qwen3.6
- vietnamese
- enterprise-automation
---
# Opera — a 27B agent tuned for multi-turn tool calling
**Opera** is an RL fine-tune of **Qwen3.6-27B** for *agentic* tool-calling: multi-turn
episodes where the model has to look up a policy, read messy free-text input, compute an
exact number, and then call the right tool with the right arguments — not just emit one
well-formed function call.
It was trained with **GRPO + LoRA** and a composite reward, including
[Intuitor self-certainty](https://arxiv.org/abs/2505.19590) as an intrinsic signal
alongside rule-based correctness.
**Use it if you need:** an open-weight agent backend for business automation
(accounting, HR, operations) that holds up over long tool-use episodes, and that works on
Vietnamese input out of the box.
| | |
|---|---|
| Base | `Qwen/Qwen3.6-27B` (dense, VL architecture) |
| Method | GRPO + LoRA (r32 / α64), merged into full weights |
| Precision / size | bf16, 11 shards (~54 GB) |
| Context | 16K validated (base supports more) |
| Reasoning | thinking **on** — this is how it was trained and evaluated |
| Tool-call format | Qwen3.5-style XML (`<function=...>`), **not** JSON — see gotchas |
| License | Apache-2.0 |
---
## Quickstart
### Serve with vLLM (recommended)
```bash
vllm serve beyoru/Opera --served-model-name opera \
-tp 4 --max-model-len 16384 \
--enable-auto-tool-choice --tool-call-parser qwen3_coder --reasoning-parser qwen3
```
Do **not** pass `--trust-remote-code`: vLLM registers its own `Qwen3_5MoeConfig`/`qwen3_5`
config class only when remote code is off. With the flag on you get
`Invalid type of HuggingFace config`.
Fits on 1×H200, or 2×A100-80G / 4×A100-40G with `-tp`.
### Call it like any OpenAI-compatible endpoint
```python
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
tools = [{
"type": "function",
"function": {
"name": "create_penalty_voucher",
"description": "Lập chứng từ lãi phạt chậm thanh toán cho một hóa đơn.",
"parameters": {
"type": "object",
"properties": {
"invoice_no": {"type": "string"},
"amount": {"type": "integer", "description": "Số tiền lãi phạt (VND)"},
},
"required": ["invoice_no", "amount"],
},
},
}]
resp = client.chat.completions.create(
model="opera",
messages=[{"role": "user", "content":
"Hóa đơn HD-1042 của Cty TNHH An Phát: dư nợ 120 triệu, quá hạn 45 ngày. "
"Tra chính sách rồi lập chứng từ lãi phạt."}],
tools=tools,
temperature=0.7,
max_tokens=4096,
)
print(resp.choices[0].message.tool_calls)
```
### Transformers
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained("beyoru/Opera")
model = AutoModelForCausalLM.from_pretrained("beyoru/Opera", dtype="auto", device_map="auto")
msgs = [{"role": "user", "content": "Tính lãi phạt cho hóa đơn quá hạn 45 ngày, dư nợ 120 triệu."}]
ids = tok.apply_chat_template(msgs, tools=tools, add_generation_prompt=True, return_tensors="pt")
out = model.generate(ids.to(model.device), max_new_tokens=1024)
print(tok.decode(out[0][ids.shape[-1]:], skip_special_tokens=True))
```
---
## Results
Held-out validation: the 48 hardest multi-turn tool-calling episodes from a private
business-workflow set, scored every 5 steps during training.
| step | score |
|---|---|
| 0 (base) | 0.564 |
| 5 | 0.570 |
| 10 | 0.567 |
| 15 | **0.600** (peak, not checkpointed) |
| **20 (this checkpoint)** | 0.574 |
Only the final checkpoint was saved, so the released weights are **not** the peak of that
curve, and the measured gain of this checkpoint over the base on that set is small
(+0.010). Treat this as a targeted nudge on top of an already strong base — the value
here is a merged, ready-to-serve agentic checkpoint plus the serving recipe below, not a
large capability jump.
---
## Gotchas worth knowing
These cost real debugging time. They apply to the whole Qwen3.5/3.6 family, not just Opera.
1. **Tool calls are XML, not JSON.** The model emits
`<tool_call><function=NAME><parameter=KEY>VALUE</parameter></function></tool_call>`.
A Hermes/JSON parser silently returns *zero* tool calls — which looks exactly like a
broken environment or a model that refuses to act. Use `--tool-call-parser qwen3_coder`,
or parse the XML yourself.
2. **No `--trust-remote-code`** when serving with vLLM (see above).
3. **Keep thinking on.** Training and evaluation both ran with reasoning enabled;
disabling it costs the most on exact-sequence style metrics.
4. **Vision is inherited, untouched, untested.** The checkpoint keeps the base VL
architecture and vision tower. RL training was text-only and the multimodal path was
never evaluated here.
---
## Training details
| | |
|---|---|
| Algorithm | GRPO, 20 steps × batch 32 (640 prompts), 4 rollouts/prompt |
| Adapter | LoRA r32 / α64, lr 5e-6, merged into base at export |
| Data | xLAM + APIGen-MT function-calling traces, pre-filtered to ≤8192 tokens |
| Reward | rule-based (function name + argument-subset partial credit) + tool-call structural validity + Intuitor self-certainty, rule and self-certainty z-normalized separately then weighted 1.0 / 1.0, applied at EOS |
| Framework | verl |
Self-certainty is computed over full-vocabulary logits. At 27B that has to be **chunked**
(2048-token chunks, mirroring entropy chunking) or the run hangs during log-prob
recomputation with the GPU at 0% and no OOM message.
Training data is English function-calling; **Vietnamese ability comes from the base
model** — it is not something this RL stage taught.
## Limitations
- Short RL run (20 steps). This is a targeted nudge on top of a strong base, not a
from-scratch agent.
- Validation set is small (n=48) and private, so differences of a few points are within
noise and cannot be independently reproduced. No public-leaderboard numbers are claimed.
- Released checkpoint is step 20, not the step-15 peak.
- Not evaluated on: long-context (>16K), multimodal input, non-agentic chat quality,
safety. Assume base-model behaviour on all of those.
## Citation
```bibtex
@misc{opera2026,
title = {Opera: GRPO + self-certainty RL for agentic tool-calling},
author = {beyoru},
year = {2026},
url = {https://huggingface.co/beyoru/Opera}
}
```
Built on [Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B).
Self-certainty reward from [Intuitor](https://arxiv.org/abs/2505.19590).
|