Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ with gr.Blocks() as demo:
|
|
80 |
## As this is a free hosted platform (Computing and Memory limitations), you will find it slow and the app may not provide appropriate answers after a few dialogues. Type in your prompt, click/ submit and wait for the resonse before typing in your next prompt.
|
81 |
""")
|
82 |
|
83 |
-
chatbot = gr.Chatbot(height=
|
84 |
msg = gr.Textbox(label="Prompt")
|
85 |
with gr.Accordion(label="Advanced options",open=False):
|
86 |
system = gr.Textbox(label="System message", lines=2, value="A conversation between a user and an LLM-based AI assistant. The assistant gives helpful and honest answers.")
|
|
|
80 |
## As this is a free hosted platform (Computing and Memory limitations), you will find it slow and the app may not provide appropriate answers after a few dialogues. Type in your prompt, click/ submit and wait for the resonse before typing in your next prompt.
|
81 |
""")
|
82 |
|
83 |
+
chatbot = gr.Chatbot(height=500) #just to fit the notebook
|
84 |
msg = gr.Textbox(label="Prompt")
|
85 |
with gr.Accordion(label="Advanced options",open=False):
|
86 |
system = gr.Textbox(label="System message", lines=2, value="A conversation between a user and an LLM-based AI assistant. The assistant gives helpful and honest answers.")
|