Tonic commited on
Commit
24855cf
1 Parent(s): c23b550

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -63,6 +63,7 @@ Tulu_bot = TuluChatBot(model, tokenizer)
63
 
64
 
65
  with gr.Blocks() as demo:
 
66
  with gr.Row():
67
  user_message = gr.Textbox(label="Your Message", lines=3)
68
  system_message = gr.Textbox(label="Introduce a Character Here or Set a Scene (system prompt)", lines=2)
@@ -88,5 +89,6 @@ with gr.Blocks() as demo:
88
  inputs=[user_message, system_message, max_new_tokens, temperature, top_p, repetition_penalty, do_sample],
89
  outputs=output_text
90
  )
 
91
 
92
  demo.launch()
 
63
 
64
 
65
  with gr.Blocks() as demo:
66
+ theme="ParityError/Anime"
67
  with gr.Row():
68
  user_message = gr.Textbox(label="Your Message", lines=3)
69
  system_message = gr.Textbox(label="Introduce a Character Here or Set a Scene (system prompt)", lines=2)
 
89
  inputs=[user_message, system_message, max_new_tokens, temperature, top_p, repetition_penalty, do_sample],
90
  outputs=output_text
91
  )
92
+
93
 
94
  demo.launch()