Pipeline change - not recognizing intents anymore

Everything was working fine when my pipeline was:

language: en
pipeline:
  supervised_embeddings

Since I wanted to use lookup tables, I changed it to:

language: en
pipeline:
  - name: "SpacyNLP"
model: "en_core_web_md"
  - name: "SpacyTokenizer"
  - name: "RegexFeaturizer"
  - name: "CRFEntityExtractor"
features: [
            ["low", "title", "upper"],
            ["bias", "low", "prefix5", "prefix2", "suffix5", "suffix3",
             "suffix2", "upper", "title", "digit", "pattern"],
            ["low", "title", "upper"]
          ]

Now, no intent is being recognized. What’s happening?

Thank you

You forgot to add a component to detect the intent like SklearnIntentClassifier, among others, check the documentation.

Ok thank you. I was following this: Entity extraction with the new lookup table feature in Rasa NLU