Update app.py
Browse files
app.py
CHANGED
@@ -46,11 +46,14 @@ def chat(message, history):
|
|
46 |
# Create Gradio interface
|
47 |
interface = gr.ChatInterface(
|
48 |
fn=chat,
|
49 |
-
title="
|
50 |
-
description="
|
|
|
|
|
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)
|