File size: 417 Bytes
bcd324a
 
 
 
 
 
 
 
 
 
 
bed92b7
bcd324a
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()})