Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -96,11 +96,16 @@ prompt_template = PromptTemplate.from_template('''system role :{context} \
|
|
96 |
''')
|
97 |
|
98 |
# Define Gradio Interface
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
iface = gr.Interface(
|
100 |
-
fn=lambda query: conversation.run(prompt_template.format(context=context, query=query)),
|
101 |
inputs=gr.Textbox(),
|
102 |
-
outputs=gr.
|
103 |
-
live=True,
|
104 |
)
|
105 |
|
106 |
# Launch Gradio Interface
|
|
|
96 |
''')
|
97 |
|
98 |
# Define Gradio Interface
|
99 |
+
# iface = gr.Interface(
|
100 |
+
# fn=lambda query: conversation.run(prompt_template.format(context=context, query=query)),
|
101 |
+
# inputs=gr.Textbox(),
|
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
|