Views
No views yet
slm_edge_intelligence Rust/Flutter runtime.HuggingFaceTB/SmolLM2-135M-Instructpeft-adapter/ - PEFT LoRA adapter and tokenizer files.gguf/airo-media-actions-lora-f16.gguf - llama.cpp LoRA adapter for use with a compatible SmolLM2 135M Instruct GGUF base model.gguf/airo-media-actions-smollm2-135m-merged-f16.gguf - standalone merged F16 GGUF for easiest edge deployment.reports/airo_media_actions_rule_vs_slm.json - strict eval summary.reports/airo_media_actions_slm_predictions.jsonl - generated eval predictions.1### Instruction
2Translate the Airo TV user request into a media action JSON object. Output JSON only. Do not answer conversationally.
3
4### Input
5Show Hindi news
6
7### Response{"clarification_required":false,"confidence":0.91,"constraints":{"genre":"news","language":"hi","live":true},"intent":"search","missing_fields":[],"tool":"media.search"}llama-completion for raw completion mode:1llama-completion \
2 -m gguf/airo-media-actions-smollm2-135m-merged-f16.gguf \
3 -p $'### Instruction\nTranslate the Airo TV user request into a media action JSON object. Output JSON only. Do not answer conversationally.\n\n### Input\nShow Hindi news\n\n### Response\n' \
4 -n 128 \
5 --temp 0 \
6 --no-display-prompt1llama-completion \
2 -m smollm2-135m-instruct-f16.gguf \
3 --lora gguf/airo-media-actions-lora-f16.gguf \
4 -p "$PROMPT" \
5 -n 128 \
6 --temp 0 \
7 --no-display-promptllama-cli chat mode for this adapter; it can wrap prompts as conversation turns and produce malformed schema output.slm_edge_intelligence / edge-intent:1export EDGE_INTELLIGENCE_INTENT_BACKEND=llama.cpp+rule
2export EDGE_INTELLIGENCE_LLAMA_CPP_BIN=/path/to/llama-completion
3export EDGE_INTELLIGENCE_INTENT_MODEL=/path/to/airo-media-actions-smollm2-135m-merged-f16.gguf1export EDGE_INTELLIGENCE_INTENT_BACKEND=llama.cpp+rule
2export EDGE_INTELLIGENCE_LLAMA_CPP_BIN=/path/to/llama-completion
3export EDGE_INTELLIGENCE_INTENT_MODEL=/path/to/smollm2-135m-instruct-f16.gguf
4export EDGE_INTELLIGENCE_INTENT_LORA=/path/to/airo-media-actions-lora-f16.gguf1Rule intent accuracy: 1.000
2SLM intent accuracy: 1.000
3SLM constraint exact accuracy: 1.000reports/airo_media_actions_rule_vs_slm.json.