我正在制作一个聊天机器人,我想做一个调查。我如何做几个请求才能发送问题(Q1)和获取答案(A1),并在获得正确答案后进行Q2等操作。
我是这样想的:
bot_send = "Q1: From 1 to 10 how you feel?"
while answer <> (of the format i want):
bot_send = 'Please insert a valid value!
store_answer1
bot_send = Q2: From 1 to 10 ....?
.
.
我用过Python!我已经创建了一个普通的聊天机器人,
这是我的密码:
routes.rb
get '/admin', :to => "admin#index"
namespace :admin do
resources :questionnaires, :users, :campaigns
end
admin_controller.rb
class AdminController < ApplicationController
def index
end
end
campaigns_controller.rb
module Admin
class CampaignsControl