Matt commited on
Commit
669bc30
·
1 Parent(s): beaf45b

Revert "Fix indentation"

Browse files

This reverts commit beaf45b259505ceeded15ea1751b0a5a82eb17de.

Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -45,17 +45,17 @@ with gr.Blocks() as demo:
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():
51
- gr.Button("ChatML")
52
- gr.Button("Zephyr")
53
- with gr.Row():
54
- gr.Button("LLaMA")
55
- gr.Button("Alpaca")
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")
 
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():
51
+ gr.Button("ChatML")
52
+ gr.Button("Zephyr")
53
+ with gr.Row():
54
+ gr.Button("LLaMA")
55
+ gr.Button("Alpaca")
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")