tomcheng commited on
Commit
1e34bfb
1 Parent(s): b66d019

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -6,8 +6,9 @@ def complete_with_gpt(text):
6
  return text[:-50]+api(text[-50:])
7
 
8
  with gr.Block()as demo:
9
- with gr.ROW()
10
- textbox=gr.Textbox(placeholder="Type here and press enter...",lines=8)
 
11
  with gr.Columu():
12
  btn=gr.Button("Generate")
13
 
 
6
  return text[:-50]+api(text[-50:])
7
 
8
  with gr.Block()as demo:
9
+ with gr.Row()
10
+ textbox=gr.Textbox(placeholder="Type here and press enter...",
11
+ lines=8)
12
  with gr.Columu():
13
  btn=gr.Button("Generate")
14