Hello every one i’m new to Botpress but i had some experience in RASA i already developed one chatbot in rasa . Now i’m try to integrate that rasa nlu with latest botpress 11.4.2. As per document installed and created the rasa config.yaml file and run the command python -m rasa_nlu.server --path botpress -c config.yaml
its execute fine.
In other side i had edit the global/config/nlu.json as per follwing
{
"intentsDir": "./intents",
"entitiesDir": "./entities",
"modelsDir": "./models",
"provider": "rasa",
"debugModeEnabled": true,
"minimumConfidence": 0.3,
"maximumConfidence": 100,
"rasaEndpoint": "http://localhost:5000",
"rasaProject": "botpress",
"confidenceTreshold": 0.7,
"ducklingURL": "https://duckling.botpress.io",
"ducklingEnabled": true
}
after i executing ‘./bp’ it didn’t sync with rasa NLU. How to connect my old rasa chatbot NLU with new botpress.
thanks in advance.