EmileH commited on
Commit
37e3b76
1 Parent(s): 2caba34

Adding start message

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -203,4 +203,10 @@ def chat(message, history):
203
  return answer
204
 
205
  if __name__ == "__main__":
206
- gr.ChatInterface(chat, type="messages").launch()
 
 
 
 
 
 
 
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()