jonaschua commited on
Commit
27dde00
·
verified ·
1 Parent(s): 93116a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -22,6 +22,9 @@ For more information on `huggingface_hub` Inference API support, please check th
22
  def choose_model(model_name):
23
  if model_name == "DeepSeek-R1-Distill-Qwen-1.5B":
24
  model = "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B"
 
 
 
25
 
26
  elif model_name == "Llama3-8b-Instruct":
27
  model = "meta-llama/Meta-Llama-3-8B-Instruct"
@@ -81,7 +84,7 @@ demo = gr.ChatInterface(
81
  respond,
82
 
83
  additional_inputs=[
84
- gr.Dropdown(["DeepSeek-R1-Distill-Qwen-1.5B", "Gemma-2-2b", "Llama2-13b-chat", "Llama3-8b-Instruct", "Llama3.1-8b-Instruct", "Mixtral-8x7B-Instruct", "Zephr-7b-beta"], label="Select Model"),
85
  gr.Textbox(value="You are a friendly and helpful Chatbot, be concise and straight to the point, avoid excessive reasoning.", label="System message"),
86
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
87
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
 
22
  def choose_model(model_name):
23
  if model_name == "DeepSeek-R1-Distill-Qwen-1.5B":
24
  model = "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B"
25
+
26
+ elif model_name == "DeepSeek-R1-Distill-Qwen-32B":
27
+ model = "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B"
28
 
29
  elif model_name == "Llama3-8b-Instruct":
30
  model = "meta-llama/Meta-Llama-3-8B-Instruct"
 
84
  respond,
85
 
86
  additional_inputs=[
87
+ gr.Dropdown(["DeepSeek-R1-Distill-Qwen-1.5B", "DeepSeek-R1-Distill-Qwen-32B", "Gemma-2-2b", "Llama2-13b-chat", "Llama3-8b-Instruct", "Llama3.1-8b-Instruct", "Mixtral-8x7B-Instruct", "Zephr-7b-beta"], label="Select Model"),
88
  gr.Textbox(value="You are a friendly and helpful Chatbot, be concise and straight to the point, avoid excessive reasoning.", label="System message"),
89
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
90
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),