JoFrost commited on
Commit
20cd498
·
1 Parent(s): 644fabc
Files changed (3) hide show
  1. app.py +23 -0
  2. email.json +0 -0
  3. requirements.txt +2 -0
app.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import random
3
+ import time
4
+ import os
5
+ from llama_index import GPTSimpleVectorIndex
6
+
7
+ with gr.Blocks() as demo:
8
+ chatbot = gr.Chatbot()
9
+ msg = gr.Textbox()
10
+ clear = gr.Button("Clear")
11
+
12
+ def respond(message, chat_history):
13
+ bot_message = str(index.query(message)).strip()
14
+ chat_history.append((message, bot_message))
15
+ return "", chat_history
16
+
17
+ msg.submit(respond, [msg, chatbot], [msg, chatbot])
18
+ clear.click(lambda: None, None, chatbot, queue=False)
19
+
20
+ if __name__ == "__main__":
21
+ global index
22
+ index = GPTSimpleVectorIndex.load_from_disk('email.json')
23
+ demo.launch()
email.json ADDED
The diff for this file is too large to render. See raw diff
 
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gradio
2
+ llama_index