sarath2803 commited on
Commit
b267fce
·
verified ·
1 Parent(s): 1919fb4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ def chat(text):
7
  result= pipe.generate(text)
8
  return result
9
 
10
- with gr.blocks(title='Basic chatbot based on gpt2') as demo:
11
  with gr.Row():
12
  user_input = gr.Textbox(placeholder="Type your message here...", label="Your Message", lines=2)
13
 
 
7
  result= pipe.generate(text)
8
  return result
9
 
10
+ with gr.Blocks(title='Basic chatbot based on gpt2') as demo:
11
  with gr.Row():
12
  user_input = gr.Textbox(placeholder="Type your message here...", label="Your Message", lines=2)
13