Views
No views yet
LiquidAI/LFM2.5-Audio-1.5B that handles both turns of a tool-augmented voice flow plus chitchat and refusals.| Class | Trigger | Behavior |
|---|---|---|
tool_match | user audio + Tools available: block, requested tool listed | Short ack ("setting your alarm now.") then stop |
tool_result_speak | same audio + Known facts you must use… block injected via set_context() | Speak the result naturally ("your alarm is set for 7am.") |
tool_miss | requested tool not in the listed set | Polite refusal ("i don't have a maps tool right now, sorry.") |
non_tool | conversational query, no tool implied | Base-model-style natural reply (targets self-distilled from base) |
| Class | v3 | v4 | Δ |
|---|---|---|---|
tool_match | 96.7% | 86.7% | −10.0 |
tool_result_speak | 100.0% | 100.0% | 0 |
tool_miss | 80.0% | 100.0% | +20.0 |
non_tool | 60.0% | 86.7% | +26.7 |
| Overall | 84.0% | 93.3% | +9.3 |
tool_miss ratio bumped 14% → 28%.tools_listed: 60% of tool_miss rows include a semantically adjacent tool (e.g. scenario=traffic with maps listed but not traffic).non_tool filter — drops DailyDialog context-fragments ("Spring .", "About 6:00 .").1# turn 1 — model emits "let me check the weather." and stops
2# coordinator runs the weather tool, gets "Weather in Tokyo: 72°F, sunny."
3await ctrl.<audio_node>.set_context("Weather in Tokyo: 72°F, sunny.")
4# turn 2 — re-feed same user audio; model narrates ("it's 72 and sunny in tokyo.")LiquidAI/LFM2.5-Audio-1.5B, full bf16 finetunePYTORCH_CUDA_ALLOC_CONF=expandable_segments:Truematbee/lfm2-tool-aware-dataset-v4.tool_match failures use a refusal template when the tool IS listed — refusal signal slightly over-corrected vs v3. v4.1 will rebalance.iot_lights and weather.1import torch
2from liquid_audio import LFM2AudioModel, LFM2AudioProcessor
3
4processor = LFM2AudioProcessor.from_pretrained("matbee/lfm2.5-audio-tool-aware-v4", device="cuda")
5model = LFM2AudioModel.from_pretrained(
6 "matbee/lfm2.5-audio-tool-aware-v4", device="cuda", dtype=torch.bfloat16
7).eval()matbee/lfm2.5-audio-tool-aware-v1 — initial; mastered turn 1, regressed on turn 2 narration.matbee/lfm2.5-audio-tool-aware-v2 — added tool_result_speak; 100% ack + 20/20 narration on its eval.non_tool class; fixed narration but classifier-boundary regressed.