Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,8 +5,6 @@ def talk(message, history):
|
|
5 |
return "hi"
|
6 |
|
7 |
|
8 |
-
TITLE = "# RAG"
|
9 |
-
|
10 |
DESCRIPTION = """
|
11 |
A rag pipeline with a chatbot feature
|
12 |
|
@@ -30,10 +28,8 @@ demo = gr.ChatInterface(
|
|
30 |
show_share_button=True,
|
31 |
show_copy_button=True,
|
32 |
likeable=True,
|
33 |
-
bubble_full_width=False,
|
34 |
),
|
35 |
examples=[["what's anarchy ? "]],
|
36 |
-
title=TITLE,
|
37 |
description=DESCRIPTION,
|
38 |
)
|
39 |
demo.launch(debug=True)
|
|
|
5 |
return "hi"
|
6 |
|
7 |
|
|
|
|
|
8 |
DESCRIPTION = """
|
9 |
A rag pipeline with a chatbot feature
|
10 |
|
|
|
28 |
show_share_button=True,
|
29 |
show_copy_button=True,
|
30 |
likeable=True,
|
|
|
31 |
),
|
32 |
examples=[["what's anarchy ? "]],
|
|
|
33 |
description=DESCRIPTION,
|
34 |
)
|
35 |
demo.launch(debug=True)
|