codelion commited on
Commit
25fa61b
1 Parent(s): 8e0abc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -78,7 +78,7 @@ def generate(
78
  yield "".join(outputs)
79
 
80
 
81
- chat_interface = gr.ChatInterface(height="600px",
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", ) as demo:
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()