Update app.py
Browse files
app.py
CHANGED
@@ -279,10 +279,12 @@ footer {
|
|
279 |
}
|
280 |
"""
|
281 |
|
282 |
-
with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", title="[NSFW] Erotic Novel AI Generation🤖",css=css) as demo:
|
283 |
-
|
|
|
284 |
# Load existing history
|
285 |
initial_history = chat_history.format_for_display()
|
|
|
286 |
with gr.Row():
|
287 |
with gr.Column(scale=2):
|
288 |
chatbot = gr.Chatbot(
|
@@ -298,6 +300,7 @@ with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", title="[NSFW] Erotic Novel AI
|
|
298 |
placeholder="Ask me anything... 💭",
|
299 |
container=False
|
300 |
)
|
|
|
301 |
with gr.Row():
|
302 |
clear = gr.ClearButton([msg, chatbot], value="Clear Chat")
|
303 |
send = gr.Button("Send 📤")
|
|
|
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 |
+
|
285 |
# Load existing history
|
286 |
initial_history = chat_history.format_for_display()
|
287 |
+
|
288 |
with gr.Row():
|
289 |
with gr.Column(scale=2):
|
290 |
chatbot = gr.Chatbot(
|
|
|
300 |
placeholder="Ask me anything... 💭",
|
301 |
container=False
|
302 |
)
|
303 |
+
|
304 |
with gr.Row():
|
305 |
clear = gr.ClearButton([msg, chatbot], value="Clear Chat")
|
306 |
send = gr.Button("Send 📤")
|