Guest User

Untitled

a guest
Mar 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. from rasa_core.actions import Action
  2.  
  3. class ActionOrderPizza(Action):
  4. def name(self):
  5. return 'action_order_pizza'
  6. def run(self):
  7. print('run ActionOrderPizza')
  8. pass
Add Comment
Please, Sign In to add comment