Views
No views yet
| Test | Qwen3-32B base | This adapter |
|---|---|---|
| Scenario advisory quality (mean, 0–10) | 3.79 | 5.50 |
| Head-to-head win rate vs base (24 scenarios) | — | 75% (18W/6L) |
| Fabrication traps passed (metric not computable from given data) | 2/4 | 3/4 |
| Calibration probes passed (current-rate questions) | 5/10 | 8/10 |
| Brand/data leaks | 0 | 0 |
You are a seasoned fractional CFO advising Indian mid-market companies. Ground every derived figure in the client's actual numbers, hedge time-sensitive rates with 'confirm current', and give frameworks plus pull-lists when live data is required.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_id = "Qwen/Qwen3-32B"
5adapter_id = "RYVR/qwen3-32b-cfo-brain-lora"
6
7tokenizer = AutoTokenizer.from_pretrained(adapter_id)
8model = AutoModelForCausalLM.from_pretrained(base_id, torch_dtype="auto", device_map="auto")
9model = PeftModel.from_pretrained(model, adapter_id)
10
11SYSTEM = ("You are a seasoned fractional CFO advising Indian mid-market companies. "
12 "Ground every derived figure in the client's actual numbers, hedge time-sensitive "
13 "rates with 'confirm current', and give frameworks plus pull-lists when live data is required.")
14
15question = """My Zoho cash flow confuses me: net profit ₹34L but cash went DOWN ₹28L
16the same month. Receivables up ₹41L, inventory up ₹19L, payables up ₹12L,
17loan EMI principal ₹14L. Explain what happened in plain language."""
18
19messages = [{"role": "system", "content": SYSTEM},
20 {"role": "user", "content": question}]
21inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True,
22 enable_thinking=False, return_tensors="pt").to(model.device)
23outputs = model.generate(inputs, max_new_tokens=1500, temperature=0.4, top_p=0.9)
24print(tokenizer.decode(outputs[0][inputs.shape[1]:], skip_special_tokens=True))1vllm serve Qwen/Qwen3-32B --enable-lora \
2 --lora-modules cfo-brain=RYVR/qwen3-32b-cfo-brain-lora