class PhraseInflector {
// Maps for pronoun and verb inflection ⚙️
static let inflectionMap: [String: String] = [
"i": "you", "me": "you", "my": "your", "mine": "yours",
"you": "i", "your": "my", "yours": "mine",
"am": "are", "are": "am", "was": "were", "were"...