Commit
·
c6595fc
1
Parent(s):
d60c0fe
new app
Browse files
app.py
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
|
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
MARKDOWN = """# TRL jobs
|
4 |
+
Start typing below to see the output.
|
5 |
+
"""
|
6 |
|
7 |
+
with gr.Blocks() as demo:
|
8 |
+
gr.Markdown(MARKDOWN)
|
9 |
+
|
10 |
+
if __name__ == "__main__":
|
11 |
+
demo.launch()
|