Adding start message
Browse files
app.py
CHANGED
|
@@ -203,4 +203,10 @@ def chat(message, history):
|
|
| 203 |
return answer
|
| 204 |
|
| 205 |
if __name__ == "__main__":
|
| 206 |
-
gr.ChatInterface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 203 |
return answer
|
| 204 |
|
| 205 |
if __name__ == "__main__":
|
| 206 |
+
interface = gr.ChatInterface(
|
| 207 |
+
fn=chat,
|
| 208 |
+
type="messages",
|
| 209 |
+
title="40.12 Chatbot",
|
| 210 |
+
description="Ask me anything about social media APIs, the Digital Services Act (DSA), or online platform regulations.")
|
| 211 |
+
|
| 212 |
+
interface.launch()
|