JoPmt commited on
Commit
7801588
·
verified ·
1 Parent(s): cf317f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,8 +29,8 @@ def plex(pmpt, input_text):
29
  yield generated_text.strip()
30
 
31
  with gr.Blocks() as iface:
32
- ins=gr.Code(lines=30)
33
- pmpt=gr.Textbox()
34
  btn=gr.Button("Assist")
35
  btn.click(plex,[pmpt,ins],[ins])
36
  iface.queue()
 
29
  yield generated_text.strip()
30
 
31
  with gr.Blocks() as iface:
32
+ ins=gr.Code(lines=30,placeholder="Paste the code you'd like to modify/fix/extend/edit here.. or start coding.. get assistance when/if required.")
33
+ pmpt=gr.Textbox(label="Prompt")
34
  btn=gr.Button("Assist")
35
  btn.click(plex,[pmpt,ins],[ins])
36
  iface.queue()