Spaces:
Sleeping
Sleeping
Commit
·
a548531
1
Parent(s):
ba6d665
remove theme
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ def predict(prompt):
|
|
28 |
history[-1] = (prompt, message)
|
29 |
yield "", history
|
30 |
|
31 |
-
with gradio.Blocks(
|
32 |
chat = gradio.Chatbot(scale=1)
|
33 |
with gradio.Row(variant="compact"):
|
34 |
prompt = gradio.Textbox(show_label=False, scale=6, autofocus=True)
|
|
|
28 |
history[-1] = (prompt, message)
|
29 |
yield "", history
|
30 |
|
31 |
+
with gradio.Blocks(fill_height=True) as demo:
|
32 |
chat = gradio.Chatbot(scale=1)
|
33 |
with gradio.Row(variant="compact"):
|
34 |
prompt = gradio.Textbox(show_label=False, scale=6, autofocus=True)
|