Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
107 |
inputs=gr.Textbox(),
|
108 |
-
outputs=gr.
|
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
|