Spaces:
Sleeping
Sleeping
add remark about slow inferenz
Browse files
gr_app.py
CHANGED
@@ -91,10 +91,12 @@ def quote(author: str = "", mode: str = "") -> str:
|
|
91 |
|
92 |
|
93 |
with gr.Blocks() as demo:
|
94 |
-
gr.Markdown(
|
|
|
|
|
95 |
with gr.Row():
|
96 |
author = gr.Textbox(
|
97 |
-
label="Zitat generieren für", lines=1, placeholder="
|
98 |
)
|
99 |
mode = gr.Dropdown(
|
100 |
choices=["Authentisch", "Ausgeglichen", "Chaotisch"],
|
|
|
91 |
|
92 |
|
93 |
with gr.Blocks() as demo:
|
94 |
+
gr.Markdown(
|
95 |
+
"# Zitatgenerator\n\n*Hinweis: Generierung dauert kann ein paar Minuten dauern.*"
|
96 |
+
)
|
97 |
with gr.Row():
|
98 |
author = gr.Textbox(
|
99 |
+
label="Zitat generieren für", lines=1, placeholder="Aristoteles"
|
100 |
)
|
101 |
mode = gr.Dropdown(
|
102 |
choices=["Authentisch", "Ausgeglichen", "Chaotisch"],
|