Rasa NLU interpreter with RegexInterpreter

Is there way to use Rasa NlU interpreter with Regex interpreter?

We do it like this - interpreter=RasaNLUInterpreter(“nlu/model”)

agent = Agent.load(dialogue_model_dir, interpreter=interpreter)

I want to do something like this - agent = Agent.load(dialogue_model_dir, interpreter= [interpreter, RegexInterpreter])

I tried doing it, but not getting desired result.

no, you have to use either the NLU interpreter or the regex interpreter. The regex interpreter is more for testing the bot