| def preprocess_input(text): | |
| text = text.replace(", ", ",").replace(",", ", ") | |
| text = text.replace(": ", ":").replace(":", ": ") | |
| return text | |
| def preprocess_input(text): | |
| text = text.replace(", ", ",").replace(",", ", ") | |
| text = text.replace(": ", ":").replace(":", ": ") | |
| return text | |