
Runs a fine-tuned text-classification model over a String and emits ranked [Classification], a single Classification, or raw [Double] scores in the model's label order, by output slot, when a trained model exists (sentiment, topic, intent).
Sentiment routing on transcribed speech, published as JSON.
Toxicity gate where the top label drives a branch before logging.
hf_model_id, device, and function_to_apply are hot-swappable at runtime; top_k and threshold are re-read every message.[Double] arm scores align to the model's label-id order, so swapping hf_model_id for a different label set changes the vector meaning.top_k and threshold apply only to the ranked [Classification] arm; the single-best arm returns the top label and the [Double] arm returns every score.String input returns the empty form of the resolved arm without running the model; downstream must handle the zero-element case.Automated release