jonaschua commited on
Commit
3d50071
·
verified ·
1 Parent(s): 8d75fba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -58,11 +58,11 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
58
 
59
 
60
  demo = gr.ChatInterface(
61
- inputs = [respond, gr.Dropdown(["Qwen1.5", "Llama3-8b-Instruct", "Llama3.1-8b-Instruct"], label="Select Model")]
62
  title = "Chatbot",
63
  description = "Ask me anything!",
64
-
65
  additional_inputs=[
 
66
  gr.Textbox(value="You are a friendly and helpful Chatbot, be concise and straight to the point, avoid excessive reasoning.", label="System message"),
67
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
68
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
@@ -76,7 +76,7 @@ demo = gr.ChatInterface(
76
  ],
77
  )
78
 
79
- print(inputs[1])
80
 
81
  if __name__ == "__main__":
82
  demo.launch()
 
58
 
59
 
60
  demo = gr.ChatInterface(
61
+ inputs = respond,
62
  title = "Chatbot",
63
  description = "Ask me anything!",
 
64
  additional_inputs=[
65
+ gr.Dropdown(["Qwen1.5", "Llama3-8b-Instruct", "Llama3.1-8b-Instruct"], label="Select Model"),
66
  gr.Textbox(value="You are a friendly and helpful Chatbot, be concise and straight to the point, avoid excessive reasoning.", label="System message"),
67
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
68
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
 
76
  ],
77
  )
78
 
79
+
80
 
81
  if __name__ == "__main__":
82
  demo.launch()