Rasa x and custom actions

Hey guys,

is there any possibility to use custom actions in rasa x without rasa stack? So that I can run rasa x just on a server of my organisation without running my action server locally.

Thanks in regard.

Custom actions are invoked as part of the Rasa Core model which is defined in a story. For example, the core model runs the subscribe action to call Mailchimp in this story.

* signup_newsletter
    - utter_can_do
    - subscribe_newsletter_form

There’s no reason you can’t call your own action agent from some other code but Rasa X is integrated with Rasa Core and doesn’t call the action server directly.