I am trying to connect different entity types or entity properties. Consider this case:
I have a list of animals and I have a list of vegetables
Each animal eats a subset of vegetables - Cow eats veggieA,veggieB and Hen eats veggieB,veggieC
Once Cow is in context, the only vegetable entities I want to catch are veggieA and veggieB. Even if veggieC is mentioned, I do not have want to catch this entity for all my follow up intents
How can I achieve this?
Can I have an animals entity type with a list of animals like Cow,Hen etc and a vegetable entity type with a list of vegetables like veggieA,veggieB etc
Or like Each animal form a different entity type - Cow is a entity, Hen is a entity
How can I connect different entities like how I described earlier?