Hello All,
Please help me out . trying to use custom rasa bot for my chat interface in my own flask file . the UI is working and i can see the assistant on it but when i type something it doesn’t respond .
#credentials.yml
socketio: user_message_evt: user_uttered bot_message_evt: bot_uttered
#flask file
from flask import Flask, render_template
app = Flask(‘flaskwp1’)
@app.route(’/’) def webprint(): return render_template(‘main.html’)
if name == ‘main’: app.run(port = 8000)
#main.html
<!doctype html>
:root { /* --header-background-color: gray; */ /* --header-text-color: black; */ }#endpoints.yml
action_endpoint: url: “http://localhost:5055/webhook”
Is there anything else i have to do to make it work?