Gianpaolo Macario
commited on
Commit
路
7c8381c
1
Parent(s):
c471665
feat(app): Add markdown front matter
Browse files
app.py
CHANGED
@@ -86,13 +86,16 @@ def generate_image(prompt: str):
|
|
86 |
|
87 |
|
88 |
with gr.Blocks() as demo:
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
|
|
|
|
96 |
|
97 |
tab_calc = gr.Tab("Calculator")
|
98 |
with tab_calc:
|
|
|
86 |
|
87 |
|
88 |
with gr.Blocks() as demo:
|
89 |
+
gr.Markdown(
|
90 |
+
"""## 馃МCalculator and other useful tools
|
91 |
+
|
92 |
+
### Built from the ground up for LLMs
|
93 |
+
|
94 |
+
This app provides a simple calculator, a dad joke generator, a greeting function, and an image generation feature.
|
95 |
+
|
96 |
+
Use via API or MCP 馃殌 路 [Powered by Modal](https://modal.com/) 路 [Built with Gradio](https://www.gradio.app/) 馃煣
|
97 |
+
"""
|
98 |
+
)
|
99 |
|
100 |
tab_calc = gr.Tab("Calculator")
|
101 |
with tab_calc:
|