pabloce commited on
Commit
dd5a7e3
·
verified ·
1 Parent(s): 87631e8

Update app.py

Browse files

add Dolphin3.0-Mistral-24B.Q8_0.gguf

Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -14,7 +14,8 @@ from ui import css, PLACEHOLDER
14
  llm = None
15
  llm_model = None
16
  # hf_hub_download(repo_id="bartowski/dolphin-2.9.1-yi-1.5-34b-GGUF", filename="dolphin-2.9.1-yi-1.5-34b-Q6_K.gguf", local_dir = "./models")
17
- hf_hub_download(repo_id="crusoeai/dolphin-2.9.1-llama-3-70b-GGUF", filename="dolphin-2.9.1-llama-3-70b.Q3_K_M.gguf", local_dir = "./models")
 
18
  # hf_hub_download(repo_id="kroonen/dolphin-2.9.2-Phi-3-Medium-GGUF", filename="dolphin-2.9.2-Phi-3-Medium-Q6_K.gguf", local_dir = "./models")
19
  hf_hub_download(repo_id="cognitivecomputations/dolphin-2.9.2-qwen2-72b-gguf", filename="qwen2-Q3_K_M.gguf", local_dir = "./models")
20
 
@@ -83,9 +84,9 @@ demo = gr.ChatInterface(
83
  respond,
84
  additional_inputs=[
85
  gr.Dropdown([
86
- 'dolphin-2.9.1-llama-3-70b.Q3_K_M.gguf',
87
  'qwen2-Q3_K_M.gguf'
88
- ], value="qwen2-Q3_K_M.gguf", label="Model"),
89
  gr.Slider(minimum=1, maximum=8192, value=8192, step=1, label="Max tokens"),
90
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
91
  gr.Slider(
 
14
  llm = None
15
  llm_model = None
16
  # hf_hub_download(repo_id="bartowski/dolphin-2.9.1-yi-1.5-34b-GGUF", filename="dolphin-2.9.1-yi-1.5-34b-Q6_K.gguf", local_dir = "./models")
17
+ # hf_hub_download(repo_id="crusoeai/dolphin-2.9.1-llama-3-70b-GGUF", filename="dolphin-2.9.1-llama-3-70b.Q3_K_M.gguf", local_dir = "./models")
18
+ hf_hub_download(repo_id="mradermacher/Dolphin3.0-Mistral-24B-GGUF", filename="Dolphin3.0-Mistral-24B.Q8_0.gguf", local_dir = "./models")
19
  # hf_hub_download(repo_id="kroonen/dolphin-2.9.2-Phi-3-Medium-GGUF", filename="dolphin-2.9.2-Phi-3-Medium-Q6_K.gguf", local_dir = "./models")
20
  hf_hub_download(repo_id="cognitivecomputations/dolphin-2.9.2-qwen2-72b-gguf", filename="qwen2-Q3_K_M.gguf", local_dir = "./models")
21
 
 
84
  respond,
85
  additional_inputs=[
86
  gr.Dropdown([
87
+ 'Dolphin3.0-Mistral-24B.Q8_0.gguf',
88
  'qwen2-Q3_K_M.gguf'
89
+ ], value="Dolphin3.0-Mistral-24B.Q8_0.gguf", label="Model"),
90
  gr.Slider(minimum=1, maximum=8192, value=8192, step=1, label="Max tokens"),
91
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
92
  gr.Slider(