tomcheng commited on
Commit
2711f20
1 Parent(s): 4dc2d10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ api=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
5
  def complete_with_gpt(text):
6
  return text[:-50]+api(text[-50:])
7
 
8
- with gr.Blocks()as demo:
9
  with gr.Row()
10
  textbox=gr.Textbox(placeholder="Type here and press enter...",lines=8)
11
  with gr.Column():
 
5
  def complete_with_gpt(text):
6
  return text[:-50]+api(text[-50:])
7
 
8
+ with gr.Blocks()as demo:
9
  with gr.Row()
10
  textbox=gr.Textbox(placeholder="Type here and press enter...",lines=8)
11
  with gr.Column():