I am not able to add buttons more than 3. I was adding some FAQ questions using buttons but it is limited to 3 only. Is it from Facebook side or it’s because of RASA. How i can increase number of buttons or any alternative for FAQ questions? . Help will be highly appreciated.
@akelad thanks for resposne. I am very new to python. Could you please help how to run chatbot on production. On local it’s running fine . For production i want to use django framework. How to call script on django view
from rasa_core.channels.facebook import FacebookInput
from rasa_core.agent import Agent
from rasa_core.interpreter import RegexInterpreter
# load your trained agent
agent = Agent.load(MODEL_PATH, interpreter=RegexInterpreter())
input_channel = FacebookInput(
fb_verify="YOUR_FB_VERIFY",
# you need tell facebook this token, to confirm your URL
fb_secret="YOUR_FB_SECRET", # your app secret
fb_access_token="YOUR_FB_PAGE_ACCESS_TOKEN"
# token for the page you subscribed to
)
# set serve_forever=False if you want to keep the server running
s = agent.handle_channels([input_channel], 5004, serve_forever=False)