Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -52,12 +52,11 @@ additional_inputs = [
|
|
52 |
# Apply the Soft theme
|
53 |
|
54 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
).launch(show_api=False,)
|
|
|
52 |
# Apply the Soft theme
|
53 |
|
54 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
55 |
+
gr.ChatInterface(
|
56 |
+
fn=generate,
|
57 |
+
chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="panel"),
|
58 |
+
additional_inputs=additional_inputs,
|
59 |
+
title="ConvoLite",
|
60 |
+
description="Remember! The AI might give incorrect information about people, locations, history, etc...",
|
61 |
+
concurrency_limit=20,
|
62 |
+
).launch(show_api=False,)
|
|