Update app.py
Browse files
app.py
CHANGED
@@ -273,7 +273,13 @@ I'll help you with the following aspects:
|
|
273 |
chat_history.add_conversation(message, error_msg)
|
274 |
yield "", history + [[message, error_msg]]
|
275 |
|
276 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
gr.Markdown("NSFW Text (Data) Generator for Detecting 'NSFW' Text: Multilingual Experience.")
|
278 |
# Load existing history
|
279 |
initial_history = chat_history.format_for_display()
|
|
|
273 |
chat_history.add_conversation(message, error_msg)
|
274 |
yield "", history + [[message, error_msg]]
|
275 |
|
276 |
+
css = """
|
277 |
+
footer {
|
278 |
+
visibility: hidden;
|
279 |
+
}
|
280 |
+
"""
|
281 |
+
|
282 |
+
with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", title="[NSFW] Erotic Novel AI Generation🤖",css=css) as demo:
|
283 |
gr.Markdown("NSFW Text (Data) Generator for Detecting 'NSFW' Text: Multilingual Experience.")
|
284 |
# Load existing history
|
285 |
initial_history = chat_history.format_for_display()
|