Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -29,10 +29,10 @@ def run_query(input: str):
|
|
29 |
#----------------------
|
30 |
|
31 |
with gr.Blocks() as demo:
|
32 |
-
text_input = gr.Textbox(visible=True, label="Enter value for '
|
33 |
btn_run = gr.Button(visible=True, value="Search")
|
34 |
results_output = gr.Dataframe(label="Results", visible=True, wrap=True)
|
35 |
-
logging_output = gr.Label(visible="True", value="
|
36 |
|
37 |
btn_run.click(
|
38 |
fn=run_query, # Call the run_query function and update the label
|
|
|
29 |
#----------------------
|
30 |
|
31 |
with gr.Blocks() as demo:
|
32 |
+
text_input = gr.Textbox(visible=True, label="Enter value to generate a prompt for an 'actor' (for instance, developer):")
|
33 |
btn_run = gr.Button(visible=True, value="Search")
|
34 |
results_output = gr.Dataframe(label="Results", visible=True, wrap=True)
|
35 |
+
logging_output = gr.Label(visible="True", value="")
|
36 |
|
37 |
btn_run.click(
|
38 |
fn=run_query, # Call the run_query function and update the label
|