Update app.py
Browse files
app.py
CHANGED
|
@@ -270,16 +270,8 @@ additional_inputs = [
|
|
| 270 |
]
|
| 271 |
|
| 272 |
with gr.Blocks():
|
| 273 |
-
chatbot = gr.Chatbot(
|
| 274 |
-
#[],
|
| 275 |
-
#elem_id="chatbot",
|
| 276 |
-
#bubble_full_width=False,
|
| 277 |
-
#avatar_images=("https://drive.google.com/uc?id=18xKoNOHN15H_qmGhK__VKnGjKjirrquW", "https://drive.google.com/uc?id=1tfELAQW_VbPCy6QTRbexRlwAEYo8rSSv"),
|
| 278 |
-
)
|
| 279 |
-
|
| 280 |
demo = gr.ChatInterface(
|
| 281 |
fn=invoke,
|
| 282 |
-
chatbot = chatbot,
|
| 283 |
additional_inputs = additional_inputs,
|
| 284 |
title = "Generative AI - LLM & RAG",
|
| 285 |
description = description)
|
|
|
|
| 270 |
]
|
| 271 |
|
| 272 |
with gr.Blocks():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
demo = gr.ChatInterface(
|
| 274 |
fn=invoke,
|
|
|
|
| 275 |
additional_inputs = additional_inputs,
|
| 276 |
title = "Generative AI - LLM & RAG",
|
| 277 |
description = description)
|