library CB-Understanding; fn CB-Understanding.intent(string text, string phrase, string yesLabel, string noLabel) -> string { return CB-Understanding.label(text, phrase, yesLabel, noLabel); } fn CB-Understanding.matches(string text, string phrase) -> bool { return CB-Understanding.contains(text, phrase); } fn CB-Understanding.rank(string text, string phrase) -> u256 { return CB-Understanding.score(text, phrase); }