-
Notifications
You must be signed in to change notification settings - Fork 12.5k
/
Copy pathfrontend.py
41 lines (32 loc) · 1.24 KB
/
frontend.py
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
from tkinter import *
from tkinter import messagebox
import backend
def index_question_answer():
# for this, we are separating question and answer by "_"
question_answer = index_question_answer_entry.get()
question, answer = question_answer.split("_")
print(question)
print(answer)
va = backend.QuestionAnswerVirtualAssistant()
print(va.index_question_answer(question, answer))
def provide_answer():
term = provide_answer_entry.get()
va = backend.QuestionAnswerVirtualAssistant()
print(va.provide_answer(term))
if __name__ == "__main__":
root = Tk()
root.title("Knowledge base")
root.geometry('300x300')
index_question_answer_label = Label(root, text="Add question:")
index_question_answer_label.pack()
index_question_answer_entry = Entry(root)
index_question_answer_entry.pack()
index_question_answer_button = Button(root, text="add", command=index_question_answer)
index_question_answer_button.pack()
provide_answer_label = Label(root, text="User Input:")
provide_answer_label.pack()
provide_answer_entry = Entry(root)
provide_answer_entry.pack()
search_term_button = Button(root, text="ask", command=provide_answer)
search_term_button.pack()
root.mainloop()