Two slots the same slot type eg. what's the price of apple and banana

Customer: what’s the price of apple and banana?

stories:

  • ask_price{“fruit”:“apple”}
  • action_search_price

domain: slots: fruit: type: list

class ActionSearchPrice(Action):

def run(…):

fruits = tracker.get_slot(“fruit”)

fruits = [“apple”, “banana”] like this?