Update app.py
Browse files
app.py
CHANGED
@@ -93,6 +93,11 @@ title = "Medical Expert :) Try me!"
|
|
93 |
demo = gr.ChatInterface(fn=rag_memory_stream,
|
94 |
type="messages",
|
95 |
title=title,
|
|
|
|
|
|
|
|
|
|
|
96 |
)
|
97 |
|
98 |
|
|
|
93 |
demo = gr.ChatInterface(fn=rag_memory_stream,
|
94 |
type="messages",
|
95 |
title=title,
|
96 |
+
chatbot=chatbot,
|
97 |
+
description=description,
|
98 |
+
fill_height=True,
|
99 |
+
examples=examples,
|
100 |
+
theme=gr.themes.Soft(),
|
101 |
)
|
102 |
|
103 |
|