mathslearn commited on
Commit
e87eb12
·
verified ·
1 Parent(s): b333741

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -102,10 +102,17 @@ prompt_template = PromptTemplate.from_template('''system role :{context} \
102
  # outputs=gr.Textbox(),
103
  # live=True,
104
  # )
 
 
 
 
 
 
 
105
  iface = gr.Interface(
106
- fn=lambda query, chat_history: (conversation.run(prompt_template.format(context=context, query=query), chat_history), chat_history),
107
  inputs=gr.Textbox(),
108
- outputs=gr.Chat(live=True, persistent=True),
109
  )
110
 
111
  # Launch Gradio Interface
 
102
  # outputs=gr.Textbox(),
103
  # live=True,
104
  # )
105
+
106
+ # Create a function to handle the Gradio Interface
107
+ def chat_interface(query, chat_history=[]):
108
+ response, chat_history = conversation.run(prompt_template.format(context=context, query=query), chat_history)
109
+ return response, chat_history + [query]
110
+
111
+ # Create the Gradio Interface
112
  iface = gr.Interface(
113
+ fn=chat_interface,
114
  inputs=gr.Textbox(),
115
+ outputs=gr.Textbox(live=True, default=""),
116
  )
117
 
118
  # Launch Gradio Interface