User query to lowercase in default pipeline

I want to make every user query in lowercase. I am using current default rasa pipeline in config file. image

I do not want to change the pipeline setting. So is there any solution apart from creating my custom component.?

Hi @mangeshi,

Do you mean, no case sensitivity. The bot has to take morning, MORNING and Morning as same? If so, you can add the following on top of your config file:

pipeline:
  - name: SpacyNLP
    case_sensitive: False
1 Like

Turns out WhitespaceTokenizer has a property to handle this , so i think no need to change the tokenizer to spacyNLP image

But thanks anyway. Appreciated.