rasa

Converting Python dictionary to YAML file with lists as multiline strings

Converting Python dictionary to YAML file with lists as multiline strings Question: I’m trying to convert a Python dictionary of the following form: { "version": "3.1", "nlu": [ { "intent": "greet", "examples": ["hi", "hello", "howdy"] }, { "intent": "goodbye", "examples": ["goodbye", "bye", "see you later"] } ] } to a YAML file of the following …

Total answers: 2

Out of memory Error while training Rasa/LaBSE

Out of memory Error while training Rasa/LaBSE Question: I want to train rasa/LaBSE from the LanguageModelFeaturizer. I have followed the steps in the docs and did not change the default training data. My config file looks like: # The config recipe. # https://rasa.com/docs/rasa/model-configuration/ recipe: default.v1 # Configuration for Rasa NLU. # https://rasa.com/docs/rasa/nlu/components/ language: en pipeline: …

Total answers: 3

Chatbot rasa init conversation

Chatbot rasa init conversation Question: I am starting with rasa and I want to make a chatbot that starts talking before the user, I attach an example: Bot: Hello, how can I help you? User: Hello, what time is it? Bot: It’s 5:23 p.m. I know how to make the user write first but I …

Total answers: 4

What is the correct way of using RASA's API (rasa.core.processor – Encountered an exception)?

What is the correct way of using RASA's API (rasa.core.processor – Encountered an exception)? Question: I installed the rasa-demo code sample. For turning on the rasa API, I did: user@User:~/rasa-demo ‹master*›$ rasa run No chat connector configured, falling back to the REST input channel. To connect your bot to another channel, read the docs here: …

Total answers: 4