Migu3low commited on
Commit
e38d54d
·
verified ·
1 Parent(s): 9b1893a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -43,9 +43,9 @@ def respond(
43
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
44
  """
45
  with gr.Blocks() as demo:
46
- with gr.Rows() as row:
47
 
48
- with gr.Columns():
49
 
50
  gr.ChatInterface(
51
  respond,
@@ -57,7 +57,7 @@ with gr.Blocks() as demo:
57
  gr.Slider(0,1, label="Temperature", value= 0.7)
58
  ]
59
  )
60
- with gr.Columns():
61
 
62
  gr.ChatInterface(
63
  respond,
 
43
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
44
  """
45
  with gr.Blocks() as demo:
46
+ with gr.Row() as row:
47
 
48
+ with gr.Column():
49
 
50
  gr.ChatInterface(
51
  respond,
 
57
  gr.Slider(0,1, label="Temperature", value= 0.7)
58
  ]
59
  )
60
+ with gr.Column():
61
 
62
  gr.ChatInterface(
63
  respond,