Matt commited on
Commit
52cb3f9
1 Parent(s): 0e4386f
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,6 @@ with gr.Blocks() as demo:
45
  gr.Markdown(description_text)
46
 
47
  with gr.Row():
48
- with gr.Column():
49
  with gr.Row():
50
  gr.Markdown("### Pick an existing template to start:")
51
  with gr.Row():
@@ -57,6 +56,7 @@ with gr.Blocks() as demo:
57
  with gr.Row():
58
  gr.Button("Vicuna")
59
  gr.Button("Something else")
 
60
  template_in = gr.TextArea(value=default_template, lines=10, max_lines=30, label="Chat Template")
61
  conversation_in = gr.TextArea(value=demo_conversation, lines=6, label="Conversation")
62
  generation_prompt_check = gr.Checkbox(value=False, label="Add generation prompt")
 
45
  gr.Markdown(description_text)
46
 
47
  with gr.Row():
 
48
  with gr.Row():
49
  gr.Markdown("### Pick an existing template to start:")
50
  with gr.Row():
 
56
  with gr.Row():
57
  gr.Button("Vicuna")
58
  gr.Button("Something else")
59
+ with gr.Column():
60
  template_in = gr.TextArea(value=default_template, lines=10, max_lines=30, label="Chat Template")
61
  conversation_in = gr.TextArea(value=demo_conversation, lines=6, label="Conversation")
62
  generation_prompt_check = gr.Checkbox(value=False, label="Add generation prompt")