jeffrey commited on
Commit
81beec9
·
1 Parent(s): c199e64

use chatbot instead of chatinterface

Browse files
Files changed (1) hide show
  1. app.py +20 -6
app.py CHANGED
@@ -13,6 +13,7 @@ from autorag.evaluator import Evaluator
13
  from src.data.chunk import chunk
14
  from src.data.parse import parse_pdf
15
  from src.runner import GradioStreamRunner
 
16
 
17
  root_dir = os.path.dirname(os.path.realpath(__file__))
18
 
@@ -93,7 +94,7 @@ def set_runner(project_dir):
93
  gradio_runner = runner
94
 
95
 
96
- def get_response(message, history):
97
  global gradio_runner
98
  if gradio_runner is None:
99
  gradio.Warning("Please set the AutoRAG server first.")
@@ -102,9 +103,14 @@ def get_response(message, history):
102
  gradio.Warning("Please submit your OpenAI API key first.")
103
  return
104
 
105
- for output in gradio_runner.stream_run(message):
106
- yield output[0]
 
 
 
107
 
 
 
108
 
109
  # interface one
110
  with gr.Blocks(theme="earneleh/paris") as demo:
@@ -129,9 +135,15 @@ with gr.Blocks(theme="earneleh/paris") as demo:
129
  button.click(file_ingest, inputs=[file_input, gr.State(project_dir)], outputs=[text_output])
130
 
131
  with gr.Column(scale=7):
132
- gr.ChatInterface(
133
- get_response, title="This is your Naive RAG Chatbot 🚀",
 
 
 
 
 
134
  )
 
135
 
136
  gr.Markdown("## Do you like the result?\n\nIf you don't like it, try to optimize it with AutoRAG. Press below button and go to make evaluation data and optimize it. Both on the Huggingface space so you don't need to install anything.")
137
  with gr.Row():
@@ -139,5 +151,7 @@ with gr.Blocks(theme="earneleh/paris") as demo:
139
  link="https://huggingface.co/spaces/AutoRAG/AutoRAG-data-creation")
140
  open_optimize = gr.Button(value="2️⃣ : Optimize", link="https://www.auto-rag.com/")
141
 
 
 
142
 
143
- demo.launch(share=False, debug=True)
 
13
  from src.data.chunk import chunk
14
  from src.data.parse import parse_pdf
15
  from src.runner import GradioStreamRunner
16
+ from gradio import ChatMessage
17
 
18
  root_dir = os.path.dirname(os.path.realpath(__file__))
19
 
 
94
  gradio_runner = runner
95
 
96
 
97
+ def get_response(history):
98
  global gradio_runner
99
  if gradio_runner is None:
100
  gradio.Warning("Please set the AutoRAG server first.")
 
103
  gradio.Warning("Please submit your OpenAI API key first.")
104
  return
105
 
106
+ history.append({"role": "assistant", "content": ""})
107
+ for output in gradio_runner.stream_run(history[-2]["content"]):
108
+ stream_delta = output[0]
109
+ history[-1]["content"] = stream_delta
110
+ yield history
111
 
112
+ def user(user_message, history: list):
113
+ return "", history + [{"role": "user", "content": user_message}]
114
 
115
  # interface one
116
  with gr.Blocks(theme="earneleh/paris") as demo:
 
135
  button.click(file_ingest, inputs=[file_input, gr.State(project_dir)], outputs=[text_output])
136
 
137
  with gr.Column(scale=7):
138
+ gr.Markdown("## This is your Naive RAG Chatbot 🚀")
139
+ chatbot = gr.Chatbot(type="messages")
140
+ chat_input = gr.Textbox()
141
+ clear = gr.Button(value="Clear Chat🗑️")
142
+
143
+ chat_input.submit(user, [chat_input, chatbot], outputs=[chat_input, chatbot], queue=False).then(
144
+ get_response, inputs=chatbot, outputs=[chatbot]
145
  )
146
+ clear.click(lambda: None, None, chatbot, queue=False)
147
 
148
  gr.Markdown("## Do you like the result?\n\nIf you don't like it, try to optimize it with AutoRAG. Press below button and go to make evaluation data and optimize it. Both on the Huggingface space so you don't need to install anything.")
149
  with gr.Row():
 
151
  link="https://huggingface.co/spaces/AutoRAG/AutoRAG-data-creation")
152
  open_optimize = gr.Button(value="2️⃣ : Optimize", link="https://www.auto-rag.com/")
153
 
154
+ if __name__ == "__main__":
155
+ demo.launch(share=False, debug=True)
156
 
157
+ # demo.launch(share=False, debug=True)