ahmadmac commited on
Commit
a4651cd
·
verified ·
1 Parent(s): 1f502b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
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()