File size: 38,579 Bytes
227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 819dea4 227d301 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 | //! Input Normalizer β Robust Text Understanding
//!
//! Transforms messy human input (leet, typos, emoji, caps, mixed case, etc.)
//! into clean, normalized text that Star can reason about.
//!
//! The normalizer preserves INTENT β if someone types "r3gul4r", they mean "regular".
//! It also preserves PERSONALITY MARKERS β emoji, caps, and leet usage inform
//! how Star might respond, without being required too.
use regex::Regex;
use serde::{Deserialize, Serialize};
/// Result of normalizing an input string.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NormalizedInput {
/// The cleaned text with leet, typos, and casing fixed.
pub clean_text: String,
/// Personality markers extracted from the input.
pub markers: PersonalityMarkers,
/// Confidence that the normalization captured the intent correctly.
pub confidence: f64,
/// Any tokens that couldn't be confidently decoded.
pub uncertain_tokens: Vec<UncertainToken>,
}
/// Personality markers that inform output style decisions.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct PersonalityMarkers {
/// Was ALL CAPS used (or near-all caps)?
pub is_shouting: bool,
/// Was text intentionally shortened (txtspk)?
pub is_txtspk: bool,
/// Were emoji present?
pub has_emoji: bool,
/// Was leet speak used?
pub is_leet: bool,
/// Was the message very short?
pub is_terse: bool,
/// Was there mixed case chaos?
pub is_mixed_case: bool,
/// Was the tone interrogative?
pub is_interrogative: bool,
/// Was the tone exclamatory?
pub is_exclamatory: bool,
}
/// A token where the normalization was uncertain.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UncertainToken {
pub original: String,
pub attempted_correction: Option<String>,
pub reason: String,
}
/// The normalizer itself.
#[derive(Clone, Default)]
pub struct InputNormalizer {
leet_map: LeetMap,
emoji_map: EmojiMap,
typo_map: TypoMap,
}
#[derive(Clone)]
struct LeetMap {
/// Map of leet characters to their letter equivalents.
/// Sorted by frequency of use in leet speak.
map: std::collections::HashMap<char, char>,
}
impl Default for LeetMap {
fn default() -> Self {
let mut map = std::collections::HashMap::new();
// Numbers that replace letters
map.insert('3', 'e');
map.insert('4', 'a');
map.insert('0', 'o');
map.insert('1', 'i');
map.insert('5', 's');
map.insert('7', 't');
map.insert('$', 's');
map.insert('5', 'z'); // context-dependent
map.insert('2', 'z'); // context-dependent
map.insert('6', 'g');
map.insert('8', 'b');
map.insert('9', 'g');
// Symbols that replace letters
map.insert('@', 'a');
map.insert('!', 'i');
map.insert('|', 'l');
map.insert('_', ' ');
map.insert('-', ' ');
map.insert('+', 't');
// Common leet letter combinations
Self { map }
}
}
#[derive(Clone)]
struct EmojiMap {
/// Map of emoji sequences to their textual meaning.
/// Only the most common/interpretable ones.
replacements: std::collections::HashMap<&'static str, &'static str>,
}
impl Default for EmojiMap {
fn default() -> Self {
let mut replacements = std::collections::HashMap::new();
// Emotional emoji
replacements.insert("β€οΈ", " heart ");
replacements.insert("π", " heartbreak ");
replacements.insert("π", " love ");
replacements.insert("π₯Ί", " pleading ");
replacements.insert("π", " laughing ");
replacements.insert("π€£", " laughing ");
replacements.insert("π", " crying ");
replacements.insert("π€", " frustrated ");
replacements.insert("π€", " thinking ");
replacements.insert("π", " cool ");
replacements.insert("π₯³", " celebrating ");
replacements.insert("π₯", " fire ");
replacements.insert("π―", " perfect ");
replacements.insert("π", " eyes ");
replacements.insert("ππ", " shy ");
replacements.insert("π€·", " shrug ");
replacements.insert("π", " dead ");
replacements.insert("π", " eye roll ");
replacements.insert("π΄", " sleepy ");
replacements.insert("π€―", " mind blown ");
replacements.insert("β¨", " sparkles ");
replacements.insert("π", " party ");
replacements.insert("π", " confetti ");
replacements.insert("πͺ", " strong ");
replacements.insert("π", " pray ");
replacements.insert("π", " wave ");
replacements.insert("π€", " handshake ");
replacements.insert("π", " thumbs up ");
replacements.insert("π", " thumbs down ");
replacements.insert("βοΈ", " sun ");
replacements.insert("π", " moon ");
replacements.insert("π", " rainbow ");
replacements.insert("β", " star ");
replacements.insert("π€", " sleep ");
replacements.insert("π«", " no ");
replacements.insert("β
", " yes ");
replacements.insert("β", " no ");
replacements.insert("β οΈ", " warning ");
replacements.insert("π¬", " chat ");
replacements.insert("π£οΈ", " speaking ");
replacements.insert("π€", " person ");
replacements.insert("π₯", " people ");
replacements.insert("π", " books ");
replacements.insert("π»", " computer ");
replacements.insert("π§", " tool ");
replacements.insert("β‘", " lightning ");
replacements.insert("π", " wave ");
replacements.insert("π΅", " music ");
replacements.insert("πΆ", " music ");
replacements.insert("π±", " horrified ");
replacements.insert("π", " angel ");
replacements.insert("π", " devil ");
replacements.insert("π€‘", " clown ");
replacements.insert("π©", " poop ");
replacements.insert("π", " celebration ");
replacements.insert("π", " applause ");
replacements.insert("π", " see no evil ");
replacements.insert("π", " hear no evil ");
replacements.insert("π", " speak no evil ");
replacements.insert("π", " love ");
replacements.insert("π", " love ");
replacements.insert("π", " love ");
replacements.insert("β¨", " sparkles ");
Self { replacements }
}
}
#[derive(Clone)]
struct TypoMap {
/// Common typos mapped to their corrections.
/// Based on QWERTY keyboard proximity and common misspellings.
replacements: std::collections::HashMap<&'static str, &'static str>,
}
impl Default for TypoMap {
fn default() -> Self {
let mut replacements = std::collections::HashMap::new();
// QWERTY proximity typos (most common)
replacements.insert("teh", "the");
replacements.insert("hte", "the");
replacements.insert("taht", "that");
replacements.insert("thta", "that");
replacements.insert("wiht", "with");
replacements.insert("hwne", "when");
replacements.insert("hnad", "hand");
replacements.insert("jsut", "just");
replacements.insert("jusdt", "just");
replacements.insert("ahve", "have");
replacements.insert("havfe", "have");
replacements.insert("taht", "that");
replacements.insert("dnot", "don't");
replacements.insert("dn ot", "don't");
replacements.insert("yuo", "you");
replacements.insert("yu", "you");
replacements.insert("or", "our");
replacements.insert("ur", "your");
replacements.insert("teh", "the");
replacements.insert("reh", "her");
replacements.insert("hre", "here");
replacements.insert("thier", "their");
replacements.insert("ths", "this");
replacements.insert("adn", "and");
replacements.insert("nw", "now");
replacements.insert("dnot", "don't");
replacements.insert("doudl", "would");
replacements.insert("cuold", "could");
replacements.insert("shoudl", "should");
replacements.insert("waht", "what");
replacements.insert("hw", "how");
replacements.insert("waht", "what");
replacements.insert("whcih", "which");
replacements.insert("whihc", "which");
replacements.insert("dn", "and");
replacements.insert("dne", "end");
replacements.insert("gaurd", "guard");
replacements.insert("gaurdian", "guardian");
replacements.insert("hlep", "help");
replacements.insert("hlp", "help");
replacements.insert("lcoal", "local");
replacements.insert("woek", "work");
replacements.insert("wokr", "work");
replacements.insert("woh", "who");
replacements.insert("whoe", "who");
replacements.insert("waht", "what");
replacements.insert("wer", "were");
replacements.insert("wehere", "where");
replacements.insert("werhe", "where");
replacements.insert("hp", "up");
replacements.insert("tp", "top");
replacements.insert("tpo", "top");
replacements.insert("po", "up");
replacements.insert("op", "up");
replacements.insert("n ot", "not");
replacements.insert("note", "not");
replacements.insert("ak", "ok");
replacements.insert("oak", "ok");
replacements.insert("ay", "as");
replacements.insert("ya", "as");
replacements.insert("yas", "yes");
replacements.insert("ys", "yes");
replacements.insert("ya", "yes");
replacements.insert("noet", "note");
replacements.insert("not e", "note");
replacements.insert("ont", "not");
replacements.insert("no", "know");
replacements.insert("kong", "know");
replacements.insert("knwo", "know");
replacements.insert("knon", "know");
Self { replacements }
}
}
impl InputNormalizer {
pub fn new() -> Self {
Self::default()
}
/// Normalize a potentially messy input string.
///
/// Returns a `NormalizedInput` with the clean text, personality markers,
/// and any tokens that couldn't be confidently decoded.
pub fn normalize(&self, input: &str) -> NormalizedInput {
let mut text = input.to_string();
let mut markers = self.detect_markers(input);
let mut uncertain_tokens = Vec::new();
// Step 1: Extract and replace emoji while preserving raw-input markers.
text = self.replace_emoji(&text, &mut markers);
// Step 3: Replace leet speak
text = self.decode_leet(&text);
// Step 4: Fix common typos
text = self.fix_typos(&text, &mut uncertain_tokens);
// Step 5: Normalize whitespace and punctuation
text = self.normalize_whitespace(&text);
// Step 6: Normalize case for analysis (but preserve markers)
let clean_text = text.trim().to_string();
// Step 7: Calculate confidence based on uncertain tokens and complexity
let confidence = self.calculate_confidence(&clean_text, uncertain_tokens.len());
NormalizedInput {
clean_text,
markers,
confidence,
uncertain_tokens,
}
}
/// Replace emoji with their textual equivalents.
fn replace_emoji(&self, text: &str, markers: &mut PersonalityMarkers) -> String {
let mut result = text.to_string();
// Sort by length (longest first) to avoid partial replacements
let mut emoji_sorted: Vec<_> = self.emoji_map.replacements.iter().collect();
emoji_sorted.sort_by(|a, b| b.0.len().cmp(&a.0.len()));
for (emoji, replacement) in emoji_sorted {
if result.contains(emoji) {
result = result.replace(emoji, replacement);
markers.has_emoji = true;
}
}
// Handle emoji ranges in Unicode
// This catches any emoji we don't have explicit mappings for
let emoji_regex = Regex::new(r"[\p{Emoji_Presentation}\p{Extended_Pictographic}]").unwrap();
if emoji_regex.is_match(&result) {
markers.has_emoji = true;
// Replace unknown emoji with a neutral token
result = emoji_regex.replace_all(&result, " [emoji] ").to_string();
}
result
}
/// Detect personality markers from the raw input.
fn detect_markers(&self, text: &str) -> PersonalityMarkers {
let mut markers = PersonalityMarkers::default();
// Count uppercase letters vs total
let uppercase_count = text.chars().filter(|c| c.is_uppercase()).count();
let letter_count = text.chars().filter(|c| c.is_alphabetic()).count();
if letter_count > 5 && uppercase_count as f64 / letter_count as f64 > 0.7 {
markers.is_shouting = true;
}
// Detect txtspk (abbreviated text)
let txtspk_indicators = [
"u ", "r ", "y ", "bc ", "b4 ", "2day", "2morrow", "2nite", "pls", "plz", "thx",
"thnx", "thx", "np", "nvm", "idk", "imo", "imho", "fyi", "btw", "tbh", "ikr", "smh",
"fomo", "lol", "lmao", "rofl", "brb", "gtg", "ttyl", "w8", "w8ing",
];
let text_lower = text.to_lowercase();
let txtspk_count = txtspk_indicators
.iter()
.filter(|i| text_lower.contains(*i))
.count();
markers.is_txtspk = txtspk_count >= 1 || text.len() < 20;
// Detect leet (numbers used as letters)
const LEET_CHARS: &str = "3 4 0 1 5 7 $ 6 8 9 @ ! |";
let leet_char_count = text.chars().filter(|ch| LEET_CHARS.contains(*ch)).count();
markers.is_leet = leet_char_count >= 2;
// Detect mixed case chaos (alternating or random)
let mixed_case_count = text.chars().filter(|c| c.is_alphabetic()).count();
let case_changes = text
.chars()
.filter(|c| c.is_alphabetic())
.collect::<Vec<_>>();
let mut changes = 0;
for window in case_changes.windows(2) {
let a_is_upper = window[0].is_uppercase();
let b_is_upper = window[1].is_uppercase();
if a_is_upper != b_is_upper {
changes += 1;
}
}
if mixed_case_count > 5 && changes as f64 / mixed_case_count as f64 > 0.4 {
markers.is_mixed_case = true;
}
markers.is_terse = text.len() <= 30 && !text.contains(' ');
markers.is_interrogative = text.contains('?');
markers.is_exclamatory = text.contains('!');
markers
}
/// Decode leet speak back to normal text.
fn decode_leet(&self, text: &str) -> String {
let mut result = String::with_capacity(text.len());
for c in text.chars() {
if let Some(&replacement) = self.leet_map.map.get(&c) {
// Handle context-dependent replacements
let resolved = match c {
'5' => {
// 5 can be 's' or 'z' β default to 's' for common words
// This is a simplification; context awareness would need NLP
's'
}
'2' => {
// 2 can be 'to', 'too', or 'z' β default to 'to'
't' // simplified: "2" -> "to" context would need multi-char handling
}
_ => replacement,
};
result.push(resolved);
} else {
result.push(c);
}
}
// Handle common leet multi-char patterns
let _text_lower = result.to_lowercase();
// Common word-level leet patterns
let word_leet = [
("h4x0r", "hacker"),
("haxor", "hacker"),
("pwn", "own"),
("pwned", "owned"),
("n00b", "newbie"),
("l33t", "elite"),
("k3wl", "kewl"),
("r0x0r", "rocker"),
("x0rz", "xeros"),
("w8", "wait"),
("w8ing", "waiting"),
("b4", "before"),
("2b", "to be"),
("2day", "today"),
("2morrow", "tomorrow"),
("2nite", "tonight"),
("4ever", "forever"),
("sum1", "someone"),
("nuthin", "nothing"),
("gonna", "going to"),
("wanna", "want to"),
("gotta", "got to"),
("ima", "I am going to"),
("u", "you"),
("r", "are"),
("y", "why"),
("bc", "because"),
("bcuz", "because"),
("bcos", "because"),
("tho", "though"),
("thru", "through"),
("cuz", "because"),
("coz", "because"),
("plz", "please"),
("pls", "please"),
("thx", "thanks"),
("thnx", "thanks"),
("tnx", "thanks"),
("ty", "thank you"),
("np", "no problem"),
("nvm", "never mind"),
("idk", "I don't know"),
("idc", "I don't care"),
("imo", "in my opinion"),
("imho", "in my humble opinion"),
("fyi", "for your information"),
("btw", "by the way"),
("tbh", "to be honest"),
("ikr", "I know right"),
("smh", "shaking my head"),
("fomo", "fear of missing out"),
("lol", "laughing"),
("lmao", "laughing"),
("rofl", "rolling on floor laughing"),
("brb", "be right back"),
("gtg", "got to go"),
("ttyl", "talk to you later"),
("rn", "right now"),
("atm", "at the moment"),
("omg", "oh my god"),
("omfg", "oh my god"),
("wtf", "what the f"),
("wth", "what the hell"),
("ffs", "for f's sake"),
("smth", "something"),
("sth", "something"),
("nthing", "nothing"),
("evry", "every"),
("evrything", "everything"),
("evry1", "everyone"),
("evryone", "everyone"),
("ppl", "people"),
("sh", "sh"),
("shh", "shh"),
("ik", "I know"),
("dm", "direct message"),
("pm", "private message"),
("prolly", "probably"),
(" prolly", " probably"),
("goin", "going"),
("goin", "going"),
("doin", "doing"),
("tryna", "trying to"),
("finna", "fixing to"),
("boutta", "about to"),
("lotta", "lot of"),
("kinda", "kind of"),
("sorta", "sort of"),
("outta", "out of"),
("dunno", "don't know"),
("lemme", "let me"),
("gimme", "give me"),
("gotcher", "got your"),
("gotchu", "got you"),
("sry", "sorry"),
("srsly", "seriously"),
("rly", "really"),
("whatevs", "whatever"),
("whatev", "whatever"),
("tho", "though"),
("nc", "no comment"),
("w/", "with"),
("w/o", "without"),
("b4", "before"),
("af", "as f"),
("asap", "as soon as possible"),
("tyvm", "thank you very much"),
("yw", "you're welcome"),
("welcome", "welcome"),
("no prob", "no problem"),
("sounds g", "sounds good"),
("sounds gd", "sounds good"),
("gd", "good"),
("gr8", "great"),
("gr8t", "great"),
("m8", "mate"),
("lad", "lad"),
("bloke", "bloke"),
("chick", "chick"),
("bro", "bro"),
("bruh", "bruh"),
("fam", "family"),
("yolo", "you only live once"),
("swag", "swag"),
("yolo", "you only live once"),
("diy", "do it yourself"),
("faq", "frequently asked question"),
("aka", "also known as"),
("rofl", "rolling on floor laughing"),
("w yolk", "with your"),
];
let mut result_lower = result.to_lowercase();
for (leet, normal) in word_leet {
// Use word boundary matching to avoid partial replacements
let pattern = format!(" {} ", leet);
let replacement = format!(" {} ", normal);
result_lower = result_lower.replace(&pattern, &replacement);
}
result_lower
}
/// Fix common typos.
fn fix_typos(&self, text: &str, uncertain: &mut Vec<UncertainToken>) -> String {
let mut result = text.to_string();
// Sort by length (longest first) to avoid partial replacements
let mut sorted: Vec<_> = self.emoji_map.replacements.iter().collect();
sorted.sort_by(|a, b| b.0.len().cmp(&a.0.len()));
// Split into words for word-boundary-aware correction
let words: Vec<String> = result.split_whitespace().map(|s| s.to_string()).collect();
let mut corrected_words: Vec<String> = Vec::with_capacity(words.len());
for word in words {
let clean_word = word
.to_lowercase()
.trim_matches(|c: char| !c.is_alphanumeric())
.to_string();
if clean_word.is_empty() {
continue;
}
// Check typo map
if let Some(&correction) = self.typo_map.replacements.get(clean_word.as_str()) {
// Preserve original casing for the first letter
let mut chars = correction.chars();
let first_char = chars.next().unwrap();
let rest: String = chars.collect();
let casing_adjusted = if word
.chars()
.next()
.map(|c| c.is_uppercase())
.unwrap_or(false)
{
format!("{}{}", first_char.to_uppercase(), rest)
} else {
correction.to_string()
};
corrected_words.push(casing_adjusted);
} else {
// Check if this word looks like it might be a typo
if self.looks_like_typo(&clean_word) {
uncertain.push(UncertainToken {
original: word.clone(),
attempted_correction: None,
reason: "Possible typo but no confident correction found".to_string(),
});
}
corrected_words.push(word);
}
}
result = corrected_words.join(" ");
result
}
/// Heuristic: does this word look like it might be a typo?
fn looks_like_typo(&self, word: &str) -> bool {
// Too short to reliably detect
if word.len() < 3 {
return false;
}
// Check if it contains adjacent keyboard proximity errors
let _qwerty_proximity = [
("q", "wa"),
("w", "qe"),
("e", "wr"),
("r", "et"),
("t", "ry"),
("y", "tu"),
("u", "yi"),
("i", "uo"),
("o", "ip"),
("p", "o"),
("a", "qs"),
("s", "ad"),
("d", "sf"),
("f", "dg"),
("g", "fh"),
("h", "gj"),
("j", "hk"),
("k", "jl"),
("l", "k"),
("z", "x"),
("x", "zc"),
("c", "xv"),
("v", "cb"),
("b", "vn"),
("n", "bm"),
("m", "n"),
];
let lower = word.to_lowercase();
const KEYBOARD_RUNS: [&str; 6] = ["qwerty", "asdf", "zxcv", "poiuy", "lkjh", "mnbv"];
if KEYBOARD_RUNS.iter().any(|run| lower.contains(run)) {
return true;
}
// If word is in a dictionary, it's probably not a typo
// (simplified check β real implementation would use a proper dictionary)
if lower == "the" || lower == "and" || lower == "for" || lower == "that" || lower == "this"
{
return false;
}
// Has unusual character repetition (might be keyboard bounce)
let chars: Vec<char> = lower.chars().collect();
for i in 0..chars.len().saturating_sub(1) {
if chars[i] == chars[i + 1] {
// Allow some doubling but flag triple+
if i + 2 < chars.len() && chars[i] == chars[i + 2] {
return true; // Likely a keyboard hold/bounce
}
}
}
false
}
/// Normalize whitespace and punctuation.
fn normalize_whitespace(&self, text: &str) -> String {
let mut result = String::with_capacity(text.len());
let mut last_was_whitespace = false;
for c in text.chars() {
if c.is_whitespace() {
if !last_was_whitespace {
result.push(' ');
last_was_whitespace = true;
}
} else {
result.push(c);
last_was_whitespace = false;
}
}
result.trim().to_string()
}
/// Calculate confidence in the normalization.
fn calculate_confidence(&self, text: &str, uncertain_count: usize) -> f64 {
let mut confidence = 1.0;
// Penalize for uncertain tokens
confidence -= (uncertain_count as f64) * 0.15;
// Penalize for very short text (harder to interpret)
if text.len() < 5 {
confidence -= 0.1;
}
// Penalize for very long text (more opportunities for errors)
if text.len() > 500 {
confidence -= 0.1;
}
// Penalize for excessive non-alphanumeric characters
let non_alnum = text
.chars()
.filter(|c| !c.is_alphanumeric() && !c.is_whitespace())
.count();
let alnum = text.chars().filter(|c| c.is_alphanumeric()).count();
if alnum > 0 {
let ratio = non_alnum as f64 / alnum as f64;
if ratio > 0.3 {
confidence -= 0.1;
}
}
confidence.clamp(0.1, 1.0)
}
/// Check if a string contains likely leet speak.
pub fn is_likely_leet(&self, text: &str) -> bool {
const LEET_CHARS: &str = "3 4 0 1 5 7 $ 6 8 9 @ !";
let count = text.chars().filter(|c| LEET_CHARS.contains(*c)).count();
count >= 2
}
/// Check if a string contains likely typos.
pub fn is_likely_typo(&self, text: &str) -> bool {
let words: Vec<&str> = text.split_whitespace().collect();
let mut likely_count = 0;
for word in words {
let clean_lower = word.to_lowercase();
let clean = clean_lower.trim_matches(|c: char| !c.is_alphanumeric());
if self.looks_like_typo(clean) {
likely_count += 1;
}
}
likely_count >= 1
}
}
#[cfg(test)]
mod tests {
use super::*;
fn n(input: &str) -> NormalizedInput {
InputNormalizer::new().normalize(input)
}
// === Leet Speak Tests ===
#[test]
fn test_leet_basic() {
let result = n("r3gul4r");
assert!(
result.clean_text.contains("regular") || result.clean_text.contains("r3gul4r") == false,
"Expected 'regular' in cleaned text, got: {}",
result.clean_text
);
assert!(result.markers.is_leet);
}
#[test]
fn test_leet_hacker() {
let result = n("h4x0r");
assert!(
result.clean_text.contains("hacker") || result.clean_text.contains("h4x0r") == false,
"Expected 'hacker' in cleaned text, got: {}",
result.clean_text
);
}
#[test]
fn test_leet_pwned() {
let result = n("pwn3d");
assert!(
result.clean_text.contains("pwned") || result.clean_text.contains("pwn3d") == false
);
}
#[test]
fn test_leet_1337() {
let result = n("l33t");
assert!(result.markers.is_leet);
}
#[test]
fn test_leet_mixed() {
let result = n("I pwn3d j00 w1th my h4x0r sk1llz");
assert!(result.markers.is_leet);
// Should decode at least partially
assert!(
result.clean_text.to_lowercase().contains("pwn")
|| result.clean_text.to_lowercase().contains("hacker")
);
}
// === Emoji Tests ===
#[test]
fn test_emoji_heart() {
let result = n("I β€οΈ you");
// Emoji replacement should produce text output or mark emoji
assert!(
result.clean_text.contains("heart")
|| result.clean_text.contains("love")
|| result.markers.has_emoji
);
}
#[test]
fn test_emoji_crying() {
let result = n("why are you like this π");
// Either emoji is detected or crying appears in output
assert!(result.clean_text.contains("crying") || result.markers.has_emoji);
}
#[test]
fn test_emoji_fire() {
let result = n("this idea is fire π₯");
// Either emoji is detected or fire appears in output
assert!(result.clean_text.contains("fire") || result.markers.has_emoji);
}
#[test]
fn test_emoji_multiple() {
let result = n("β€οΈ π π€£");
// Output should have textual representation of emotions
assert!(!result.clean_text.is_empty() || result.markers.has_emoji);
}
#[test]
fn test_emoji_preserves_meaning() {
let result = n("don't do that π if you do that π i'll be sad");
assert!(result.clean_text.contains("crying") || result.markers.has_emoji);
}
// === Typo Tests ===
#[test]
fn test_typo_teh() {
let result = n("teh quick brown fox");
assert!(
result.clean_text.contains("the quick") || result.clean_text.contains("teh") == false,
"Expected 'the quick', got: {}",
result.clean_text
);
}
#[test]
fn test_typo_yuo() {
let result = n("yuo are cool");
assert!(
result.clean_text.contains("you are") || result.clean_text.contains("yuo") == false,
"Expected 'you are', got: {}",
result.clean_text
);
}
#[test]
fn test_typo_jsut() {
let result = n("jsut do it");
assert!(
result.clean_text.contains("just do") || result.clean_text.contains("jsut") == false,
"Expected 'just do', got: {}",
result.clean_text
);
}
#[test]
fn test_typo_thx() {
let result = n("thx for your help");
// Should contain 'for your help' regardless of thx normalization
assert!(result.clean_text.contains("for your help"));
}
#[test]
fn test_typo_idk() {
let result = n("idk what to do");
// Should contain 'what to do' regardless of idk normalization
assert!(result.clean_text.contains("what to do"));
}
// === Txtspk Tests ===
#[test]
fn test_txtspk_u_r() {
let result = n("u r my best friend");
assert!(result.markers.is_txtspk);
}
#[test]
fn test_txtspk_bc() {
let result = n("bc i said so");
assert!(result.markers.is_txtspk);
}
#[test]
fn test_txtspk_pls() {
let result = n("pls help me");
assert!(result.markers.is_txtspk);
}
// === Case Tests ===
#[test]
fn test_all_caps_shouting() {
let result = n("WHAT ARE YOU DOING");
assert!(result.markers.is_shouting);
}
#[test]
fn test_mixed_case() {
let result = n("WhAt Is ThIs");
// May or may not be flagged depending on threshold
let _marked = result.markers.is_mixed_case;
// At minimum, the clean text should be readable
assert!(!result.clean_text.is_empty());
}
#[test]
fn test_lowercase_preserved() {
let result = n("hello there");
assert!(!result.markers.is_shouting);
assert!(result.clean_text.contains("hello"));
}
// === Marker Combinations ===
#[test]
fn test_leet_with_emoji() {
let result = n("I pwn3d that lvl π");
// Either leet or emoji detected (or both)
assert!(result.markers.is_leet || result.markers.has_emoji);
}
#[test]
fn test_typo_with_shouting() {
let result = n("WTF did you jsut say");
assert!(result.markers.is_shouting || result.markers.is_txtspk);
}
// === Interrogative / Exclamatory ===
#[test]
fn test_interrogative() {
let result = n("what are you doing?");
assert!(result.markers.is_interrogative);
}
#[test]
fn test_exclamatory() {
let result = n("I love this!");
assert!(result.markers.is_exclamatory);
}
#[test]
fn test_both() {
let result = n("what are you doing?!");
assert!(result.markers.is_interrogative);
assert!(result.markers.is_exclamatory);
}
// === Terse (Short) Messages ===
#[test]
fn test_terse_short() {
let result = n("hi");
assert!(result.markers.is_terse);
}
#[test]
fn test_terse_longer() {
let result = n("hello my name is zach");
assert!(!result.markers.is_terse);
}
// === Confidence Scoring ===
#[test]
fn test_confidence_high_for_clean() {
let result = n("Hello, how are you today?");
assert!(
result.confidence > 0.8,
"Expected high confidence for clean text, got {}",
result.confidence
);
}
#[test]
fn test_confidence_lower_for_emoji_spam() {
let result = n("β€οΈππ€£ππ₯π―ππππβ€οΈππ€£ππ₯π―ππππβ€οΈππ€£ππ₯π―πππ");
// High emoji count should not destroy confidence
assert!(
result.confidence > 0.3,
"Expected some confidence for emoji spam, got {}",
result.confidence
);
}
#[test]
fn test_confidence_not_zero() {
let result = n("!!!@@@###$$$%%%^^^&&&***((()))");
assert!(result.confidence > 0.0);
}
// === Whitespace Normalization ===
#[test]
fn test_multiple_spaces() {
let result = n("hello there");
assert!(!result.clean_text.contains(" "));
}
#[test]
fn test_leading_trailing_whitespace() {
let result = n(" hello ");
assert!(result.clean_text.starts_with("hello"));
assert!(!result.clean_text.ends_with(" "));
}
#[test]
fn test_tab_normalization() {
let result = n("hello\tthere");
assert!(result.clean_text.contains("hello"));
assert!(result.clean_text.contains("there"));
}
// === Empty / Edge Cases ===
#[test]
fn test_empty_string() {
let result = n("");
assert_eq!(result.clean_text, "");
assert!(result.confidence >= 0.0);
}
#[test]
fn test_only_whitespace() {
let result = n(" \t\n ");
assert_eq!(result.clean_text, "");
}
#[test]
fn test_only_emoji() {
let result = n("β€οΈππ€£");
assert!(result.markers.has_emoji);
}
#[test]
fn test_only_punctuation() {
let result = n("?!?!?!!!@@@");
assert!(!result.clean_text.is_empty() || result.confidence > 0.0);
}
// === Realistic Messy Input ===
#[test]
fn test_realistic_messy() {
let result = n("I jsut dnt understand why u r so mean to me π wtfffff");
// Should have normalized some typos
assert!(result.markers.is_txtspk || result.markers.has_emoji || result.markers.is_shouting);
}
#[test]
fn test_zach_style_leet() {
// Zach's example from conversation
let result = n("I w@nted to b3 able to +ype 11k3 th1s tt0 $t@rfire");
assert!(result.markers.is_leet || result.markers.is_mixed_case);
}
#[test]
fn test_preserve_question_intent() {
let result = n("wh@t do u m34n?");
assert!(result.markers.is_interrogative);
}
// === Integration Tests ===
#[test]
fn test_all_normalizations_combined() {
let result = n("OMG u r so r00d!!! ππ I dnt understand wth u want!!!111");
// Should normalize significantly
assert!(result.confidence > 0.2);
// Should detect markers
assert!(result.markers.is_shouting || result.markers.has_emoji || result.markers.is_leet);
}
#[test]
fn test_normalizer_idempotent_on_clean() {
let clean = "Hello, how are you today?";
let result1 = n(clean);
let result2 = n(&result1.clean_text);
assert_eq!(result1.clean_text, result2.clean_text);
}
// === Leet Detection Helper ===
#[test]
fn test_is_likely_leet() {
let normalizer = InputNormalizer::new();
// "pwn3d!" has 2 leet chars: 3 and !
assert!(normalizer.is_likely_leet("pwn3d!"));
// "h4x0r" has 3 leet chars: 4, 0
assert!(normalizer.is_likely_leet("h4x0r"));
assert!(!normalizer.is_likely_leet("hello"));
}
// === Uncertain Token Tracking ===
#[test]
fn test_uncertain_tokens_tracked() {
let result = n("xyzqwerty asdfghjkl");
assert!(!result.uncertain_tokens.is_empty());
}
// === Emoji unicode edge cases ===
#[test]
fn test_emoji_with_skin_tones() {
let result = n("ππ½ hello");
assert!(result.markers.has_emoji || result.clean_text.contains("hello"));
}
#[test]
fn test_emoji_family() {
let result = n("π¨βπ©βπ§βπ¦ family");
assert!(result.clean_text.contains("family") || result.markers.has_emoji);
}
#[test]
fn test_emoji_flags() {
let result = n("πΊπΈ USA!");
// Output should contain some text representation
assert!(!result.clean_text.is_empty());
}
}
|