Spaces:
Sleeping
Sleeping
Commit
·
f34e62f
1
Parent(s):
fe8ec2d
Update app.py
Browse files
app.py
CHANGED
@@ -37,10 +37,10 @@ def letterize(x):
|
|
37 |
"Micheal Kovach"
|
38 |
]
|
39 |
return f"""
|
40 |
-
Dear {random.choices(names)},
|
41 |
{x}
|
42 |
|
43 |
-
Sincerely, {random.choices(names)}
|
44 |
"""
|
45 |
|
46 |
def flip_text(x):
|
@@ -92,8 +92,9 @@ with gr.Blocks(title="Josiah's Gradio Playground") as playground:
|
|
92 |
with gr.Tab("Changelog"):
|
93 |
with gr.Accordion("11/26/2023"):
|
94 |
with gr.Accordion("latest"):
|
95 |
-
gr.Markdown("
|
96 |
with gr.Accordion("other"):
|
|
|
97 |
gr.Markdown("Added gradio in gradio")
|
98 |
gr.Markdown("Added CC Validator")
|
99 |
playground.launch()
|
|
|
37 |
"Micheal Kovach"
|
38 |
]
|
39 |
return f"""
|
40 |
+
Dear {random.choices(names)[0]},
|
41 |
{x}
|
42 |
|
43 |
+
Sincerely, {random.choices(names)[0]}
|
44 |
"""
|
45 |
|
46 |
def flip_text(x):
|
|
|
92 |
with gr.Tab("Changelog"):
|
93 |
with gr.Accordion("11/26/2023"):
|
94 |
with gr.Accordion("latest"):
|
95 |
+
gr.Markdown("fixed names appearing as lists")
|
96 |
with gr.Accordion("other"):
|
97 |
+
gr.Markdown("Removed gradio in gradio")
|
98 |
gr.Markdown("Added gradio in gradio")
|
99 |
gr.Markdown("Added CC Validator")
|
100 |
playground.launch()
|