Nihal Nayak commited on
Commit
2a6aa53
·
1 Parent(s): 7c02b33

removed examples

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -65,11 +65,10 @@ examples = [
65
  "A spectre is haunting Europe – the spectre of communism. All the powers of old Europe have entered into a holy alliance to exorcise this spectre: Pope and Tsar, Metternich and Guizot, French Radicals and German police-spies"
66
  ]
67
 
68
- demo = gr.ChatInterface(
69
  respond,
70
  additional_inputs=[
71
  gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
72
-
73
  # gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
74
  # gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
75
  # gr.Slider(
@@ -80,7 +79,6 @@ demo = gr.ChatInterface(
80
  # label="Top-p (nucleus sampling)",
81
  # ),
82
  ],
83
- examples=examples,
84
  description=description,
85
  )
86
 
 
65
  "A spectre is haunting Europe – the spectre of communism. All the powers of old Europe have entered into a holy alliance to exorcise this spectre: Pope and Tsar, Metternich and Guizot, French Radicals and German police-spies"
66
  ]
67
 
68
+ demo = gr.Interface(
69
  respond,
70
  additional_inputs=[
71
  gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
 
72
  # gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
73
  # gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
74
  # gr.Slider(
 
79
  # label="Top-p (nucleus sampling)",
80
  # ),
81
  ],
 
82
  description=description,
83
  )
84