Spaces:
Sleeping
Sleeping
File size: 329 Bytes
0a6201c e5f7529 0a6201c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
def simple_search(query):
return f"You searched for: {query}"
# Gradio Interface
with gr.Blocks() as demo:
query = gr.Textbox(label="Search the web")
output = gr.Textbox(label="Results")
submit_btn = gr.Button("Submit")
submit_btn.click(simple_search, query, output)
demo.launch()
|