zinoubm's picture
removing heroku conf
bed92b7
raw
history blame contribute delete
417 Bytes
from rest_framework.views import APIView
from django.http import JsonResponse
from TwitterChatBot.main import ask
class AskChatBot(APIView):
"""
let you ask a question to the twitter chatbot
"""
def get(self, request, format=None):
print("working")
question = request.data["question"]
answer = ask(question=question)
return JsonResponse({"answer": answer.strip()})