yugamj commited on
Commit
2e08c50
1 Parent(s): 603c2bd

Removed placeholder from input textbox

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ project_details_HTML = '''<!DOCTYPE html>
97
  with gr.Blocks() as demo:
98
  gr.HTML(project_heading)
99
  with gr.Row():
100
- inp = gr.Textbox(placeholder="What is your name?", label = 'Enter your text here!')
101
  out = gr.Textbox(label = 'Prediction')
102
  btn = gr.Button("Run")
103
  btn.click(fn=LLM_text, inputs=inp, outputs=out)
 
97
  with gr.Blocks() as demo:
98
  gr.HTML(project_heading)
99
  with gr.Row():
100
+ inp = gr.Textbox(label = 'Enter your text here!')
101
  out = gr.Textbox(label = 'Prediction')
102
  btn = gr.Button("Run")
103
  btn.click(fn=LLM_text, inputs=inp, outputs=out)