pub fn suggest_codex_model(query: &str) -> Option<String>Expand description
Suggests the closest codex OAuth model to a user-supplied substring
(G33). Returns None when no candidate is close enough.
Match strategy: exact substring containment wins; otherwise Levenshtein
distance below max_distance = max(2, query.len() / 3).