Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
|
@@ -78,7 +78,7 @@ def generate(
|
|
| 78 |
yield "".join(outputs)
|
| 79 |
|
| 80 |
|
| 81 |
-
chat_interface = gr.ChatInterface(
|
| 82 |
fn=generate,
|
| 83 |
additional_inputs=[
|
| 84 |
gr.Textbox(label="System prompt", lines=6),
|
|
@@ -128,7 +128,7 @@ chat_interface = gr.ChatInterface(height="600px",
|
|
| 128 |
],
|
| 129 |
)
|
| 130 |
|
| 131 |
-
with gr.Blocks(css="style.css",
|
| 132 |
gr.Markdown(DESCRIPTION)
|
| 133 |
# gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
|
| 134 |
chat_interface.render()
|
|
|
|
| 78 |
yield "".join(outputs)
|
| 79 |
|
| 80 |
|
| 81 |
+
chat_interface = gr.ChatInterface(
|
| 82 |
fn=generate,
|
| 83 |
additional_inputs=[
|
| 84 |
gr.Textbox(label="System prompt", lines=6),
|
|
|
|
| 128 |
],
|
| 129 |
)
|
| 130 |
|
| 131 |
+
with gr.Blocks(css="style.css",height="600px") as demo:
|
| 132 |
gr.Markdown(DESCRIPTION)
|
| 133 |
# gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
|
| 134 |
chat_interface.render()
|