Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -33,6 +33,9 @@ with gr.Blocks(theme="ocean") as demo:
|
|
33 |
with gr.Row():
|
34 |
clear = gr.ClearButton([msg, chatbot, clipboard_textbox], value="Clear")
|
35 |
|
|
|
|
|
|
|
36 |
def respond(message, chat_history):
|
37 |
try:
|
38 |
# Build messages list from chat history
|
|
|
33 |
with gr.Row():
|
34 |
clear = gr.ClearButton([msg, chatbot, clipboard_textbox], value="Clear")
|
35 |
|
36 |
+
with gr.Row():
|
37 |
+
gr.HTML('Space based on <a href="https://huggingface.co/spaces/ysharma/chatbot_watermark_demo" target="_blank">earlier chatbot watermarking demo from Yuvraj Sharma</a>')
|
38 |
+
|
39 |
def respond(message, chat_history):
|
40 |
try:
|
41 |
# Build messages list from chat history
|