File size: 1,104 Bytes
bcd324a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import gradio as gr
import random
import string
import requests


def get_random_string(length=6):
    letters = string.ascii_lowercase
    result_str = "".join(random.choice(letters) for i in range(length))
    return result_str


def get_answer(question):
    try:
        answer = requests.get(
            "http://127.0.0.1:8000/api/",
            json={"question": question},
        )
    except Exception as err:
        return f"Sorry there was a problem with {err}, please check your connection and try again."

    if answer.status_code == 200:
        return answer.json()["answer"]

    return "Sorry, We have a problem with our server"


def predict(input, history=[]):
    answer = get_answer(input)
    history.append((input, answer))
    response = history
    return response, history


with gr.Blocks() as demo:
    chatbot = gr.Chatbot()
    state = gr.State([])

    with gr.Row():
        txt = gr.Textbox(
            show_label=False, placeholder="Enter text and press enter"
        ).style(container=False)

    txt.submit(predict, [txt, state], [chatbot, state])

demo.launch()