Spaces:
Running
Running
Removed placeholder from input textbox
Browse files
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(
|
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)
|