nnsohamnn commited on
Commit
d8c75c8
·
verified ·
1 Parent(s): 591ec58

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -46,11 +46,14 @@ def chat(message, history):
46
  # Create Gradio interface
47
  interface = gr.ChatInterface(
48
  fn=chat,
49
- title="Conv_GPT Chatbot",
50
- description="Chat with Conv_GPT, a custom transformer trained on DailyDialog! Enter your message below.",
 
 
51
  theme="default",
52
  examples=["Hi, how are you?", "What's your favorite food?", "Tell me about your day."]
53
  )
54
 
 
55
  # Launch the app
56
  interface.launch(server_name="0.0.0.0", server_port=7860)
 
46
  # Create Gradio interface
47
  interface = gr.ChatInterface(
48
  fn=chat,
49
+ title="Conv GPT 💬",
50
+ description="""Welcome to Conv GPT, a custom-trained transformer-based chatbot from SCRATCH! Built using the
51
+ GPT architecture, this model is trained on the DailyDialog dataset to
52
+ provide conversational responses.""",
53
  theme="default",
54
  examples=["Hi, how are you?", "What's your favorite food?", "Tell me about your day."]
55
  )
56
 
57
+
58
  # Launch the app
59
  interface.launch(server_name="0.0.0.0", server_port=7860)