Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -95,7 +95,17 @@ def create_chatbot_interface():
|
|
| 95 |
bot = ClaudelikeChatbot()
|
| 96 |
default_temp = 0.7
|
| 97 |
|
| 98 |
-
with gr.Blocks(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
gr.Markdown("""
|
| 100 |
# 🤖 Gangsta GPT
|
| 101 |
A sarcastic yet knowledgeable chatbot who’s happy to help… in its own way.
|
|
|
|
| 95 |
bot = ClaudelikeChatbot()
|
| 96 |
default_temp = 0.7
|
| 97 |
|
| 98 |
+
with gr.Blocks(
|
| 99 |
+
title="Gangsta GPT",
|
| 100 |
+
theme=gr.themes.Soft(),
|
| 101 |
+
css="""
|
| 102 |
+
footer, .footer, .svelte-1ipelgc, .absolute.bottom-0, #hf-space-branding, .logo-container {
|
| 103 |
+
display: none !important;
|
| 104 |
+
visibility: hidden !important;
|
| 105 |
+
height: 0 !important;
|
| 106 |
+
}
|
| 107 |
+
"""
|
| 108 |
+
) as demo:
|
| 109 |
gr.Markdown("""
|
| 110 |
# 🤖 Gangsta GPT
|
| 111 |
A sarcastic yet knowledgeable chatbot who’s happy to help… in its own way.
|