Update app.py
Browse files
app.py
CHANGED
|
@@ -57,15 +57,13 @@ button:hover {
|
|
| 57 |
}
|
| 58 |
"""
|
| 59 |
|
| 60 |
-
# Create Gradio interface
|
| 61 |
interface = gr.ChatInterface(
|
| 62 |
fn=chat_interface,
|
| 63 |
title="LocoBot: DeepSeek-R1 Chatbot",
|
| 64 |
description="Chat with DeepSeek-R1 powered by Hugging Face Inference API.",
|
| 65 |
theme="default",
|
| 66 |
-
css=css
|
| 67 |
-
submit_btn="Send",
|
| 68 |
-
clear_btn="Clear Chat"
|
| 69 |
)
|
| 70 |
|
| 71 |
if __name__ == "__main__":
|
|
|
|
| 57 |
}
|
| 58 |
"""
|
| 59 |
|
| 60 |
+
# Create Gradio interface (no unsupported arguments)
|
| 61 |
interface = gr.ChatInterface(
|
| 62 |
fn=chat_interface,
|
| 63 |
title="LocoBot: DeepSeek-R1 Chatbot",
|
| 64 |
description="Chat with DeepSeek-R1 powered by Hugging Face Inference API.",
|
| 65 |
theme="default",
|
| 66 |
+
css=css
|
|
|
|
|
|
|
| 67 |
)
|
| 68 |
|
| 69 |
if __name__ == "__main__":
|