All - Activity - themrcesi - Rasa Community Forum
How do I test my custom actions?
Greg, how can we export the tracker to use it in custom actions test? Thanks in advance!
Session Timeout Callback function
Okay, I´ll check them out. Thanks!
Action_session_start
@rudi did you manage to solve this problem? I´m having the same problema, action_session_start only triggers when the user sends a message after the expiration time.
It works for me, thanks! I also added at the beginning an AllSlotsReset() event, just in case, don’t know if it’s needed. Thanks again!
Error: Python inputs incompatible with input_signature
Thanks for the tip!
How to manage a users 'name only' response
Ohh, thanks a lot! I already did it yesterday haha. I guess it should be nice to have an option to “attach” a txt file for a lookup. Thanks a lot!
Hi there! @ChrisRahme your solution also works for me, thanks a lot. However, is there a way to use a lookup table from (for example) a txt file where each line represents a possible value of the entity? Thanks again!
Multiple custom action messages not showing in Rasa X
@Liam did you manage to solve it? I´m having the same problem: when using more than one dispatcher.utter_message in a custom action it only prompts the last message. I´m also using Windows.
ERROR asyncio - Task exception was never retrieve
Having the same error, for me it was enough to uninstall and install rasa again. Hope it helps for someone!
Current way of letting the bot start the conversations
Actually I´d already tried it and I couldn´t go through it.
class ActionSessionStart(Action):
def name(self) -> Text:
return "action_session_start"
async def run(
self, dispatcher, tracker: Tracker, domain: Dict[Text, Any]
) -> List[Dict[Text, Any]]:
# the session…
Thanks @Tobias_Wochinger! I´ll check it out!
Hi there!
First of all thank you for trying to solve my question.
I´m new using this library and I was wondering which is the best way of letting the bot start the conversation. Just from rasa shell, it wouldn’t be integrated in any external platform.
Example:
Bot: Hello, I´m here to solve you a…