All - Activity - InnoOmnia - Rasa Community Forum
How to migrate your Assistant from one machine to other
Rasa Open Source
Nov 15, 2021
Thank you for your fast reply. Previously when I used Action server in Docker container I used requirements.txt and also Dockerfile to build action server but according this official guide
Building a Rasa Assistant in Docker
It was not anymore needed, so I tried with it. This is how I did it be…
Rasa action server issues
Feedback on Rasa Open Source
Nov 15, 2021
I followed this instructions
https://www.youtube.com/watch?v=1cq7TerQaXI
First initialized rasa with following command
docker run -it --rm -v $(pwd):/app rasa/rasa:2.8.13-full init --no-prompt
Then copied content from here
https://github.com/RasaHQ/how-to-rasa/tree/main/video-08-actions/data
Deploy Rasa with custom Widget/Website
Rasa Open Source
Nov 12, 2021
Ok here it is, I run Apache2 server with subdomains, here is website
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<script src="https://cdn.jsdelivr.net/npm/rasa-webchat@0.11.12/lib/index.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
How do i get totally random name from user input? (not name in sample data)
Feedback on Rasa Open Source
Nov 12, 2021
Can you share your config file?
How to send an automatic message to the user when the conversation ends
Rasa Open Source
Nov 12, 2021
Can you do
rasa run shell --debug
and paste relevant parts here?
Developing an intelligent Conversational AI Chatbot based on a decision tree
Rasa Open Source
Nov 11, 2021
I recommend to do first version with buttons, that keeps user in decision tree path
How to override default css of rasa webchat
Rasa Open Source
Nov 11, 2021
How about adding semicolon to end?
import './App.css';
How and where you refer to app.css file?
How to send an automatic message to the user when the conversation ends
You could use something like this, just add reset if user sends new message
import time
def countdown(t):
while t:
mins, secs = divmod(t, 60)
timer = '{:02d}:{:02d}'.format(mins, secs)
print(timer, end="\r")
time.sleep(1)
t -= 1
How can I use nginx conf. for my chatbot
What you mean local. What is your command to start rasa? You mean to Rasa endpoints or where? What is your chatbot’s front end i.e. chatbot window
Can you send me this configuration in example view which I can add to my ngninx?
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://localhost:5005;
}
}
Docker: invalid reference format
Try folder names lowecase i.e. \Program → \program
Reusing same intent twice in story gives wrong actions result
There is no way Rasa can separate which action to take if intents are the same. Make two different stories with different intents.
RASA INIT Error - monitoring.py
Ok, there might be issue with your virtual environment, they do separate most of things but not all and that’s why your first environment works and second not. I have noticed that in other projects when using conda virtual environments. So if your need is run multiple chatbots in same machine, I recommend to use separate environments.