Spaces:
Sleeping
Sleeping
Mikeplockhart
commited on
Update app.py
Browse filesActually setting a return
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
|
3 |
def run_query(query_string: str):
|
4 |
meal_string = f"Oh you want {query_string}. Go have a think yourself then."
|
5 |
-
|
6 |
|
7 |
with gr.Blocks() as meal_search:
|
8 |
gr.Markdown("Start typing below and then click **Run** to see the output.")
|
|
|
2 |
|
3 |
def run_query(query_string: str):
|
4 |
meal_string = f"Oh you want {query_string}. Go have a think yourself then."
|
5 |
+
return meal_string
|
6 |
|
7 |
with gr.Blocks() as meal_search:
|
8 |
gr.Markdown("Start typing below and then click **Run** to see the output.")
|