Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -20,14 +20,11 @@ chain = LLMChain(llm=llm, prompt=prompt)
|
|
20 |
def chatbot(question):
|
21 |
response = chain.run(question)
|
22 |
return response
|
23 |
-
|
24 |
-
demo = gr.Interface(
|
25 |
fn=chatbot,
|
26 |
inputs=gr.Textbox(lines=2, label="Question"),
|
27 |
outputs=gr.Textbox(label="Answer"),
|
28 |
title="Chatbot",
|
29 |
description="Helpful AI Assistant!!"
|
30 |
)
|
31 |
-
|
32 |
-
# Launch the interface
|
33 |
demo.launch()
|
|
|
20 |
def chatbot(question):
|
21 |
response = chain.run(question)
|
22 |
return response
|
23 |
+
demo = gr.ChatInterface(
|
|
|
24 |
fn=chatbot,
|
25 |
inputs=gr.Textbox(lines=2, label="Question"),
|
26 |
outputs=gr.Textbox(label="Answer"),
|
27 |
title="Chatbot",
|
28 |
description="Helpful AI Assistant!!"
|
29 |
)
|
|
|
|
|
30 |
demo.launch()
|