Tonic commited on
Commit
4a60076
·
1 Parent(s): 30f39f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -72,8 +72,6 @@ examples = [
72
 
73
  iface = gr.Interface(
74
  fn=starling_bot.predict,
75
- gr.Markdown(title),
76
- gr.Markdown(description),
77
  inputs=[
78
  gr.Textbox(label="🌟🤩User Message", type="text", lines=5),
79
  gr.Textbox(label="💫🌠Starling Assistant Message or Instructions ", lines=2),
@@ -85,5 +83,7 @@ iface = gr.Interface(
85
  gr.Slider(label="Repetition penalty", value=1.9, minimum=1.0, maximum=2.0, step=0.05)
86
  ],
87
  outputs="text",
 
 
88
  theme="ParityError/Anime"
89
  )
 
72
 
73
  iface = gr.Interface(
74
  fn=starling_bot.predict,
 
 
75
  inputs=[
76
  gr.Textbox(label="🌟🤩User Message", type="text", lines=5),
77
  gr.Textbox(label="💫🌠Starling Assistant Message or Instructions ", lines=2),
 
83
  gr.Slider(label="Repetition penalty", value=1.9, minimum=1.0, maximum=2.0, step=0.05)
84
  ],
85
  outputs="text",
86
+ gr.Markdown(title),
87
+ gr.Markdown(description),
88
  theme="ParityError/Anime"
89
  )