Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ from ui import css, PLACEHOLDER
|
|
14 |
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")
|
15 |
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")
|
16 |
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")
|
17 |
-
|
18 |
|
19 |
@spaces.GPU(duration=120)
|
20 |
def respond(
|
@@ -75,7 +75,12 @@ def respond(
|
|
75 |
demo = gr.ChatInterface(
|
76 |
respond,
|
77 |
additional_inputs=[
|
78 |
-
gr.Dropdown([
|
|
|
|
|
|
|
|
|
|
|
79 |
gr.Slider(minimum=1, maximum=8192, value=8192, step=1, label="Max tokens"),
|
80 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
81 |
gr.Slider(
|
|
|
14 |
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")
|
15 |
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")
|
16 |
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")
|
17 |
+
hf_hub_download(repo_id="cognitivecomputations/dolphin-2.9.2-qwen2-72b-gguf", filename="qwen2-Q3_K_M.gguf", local_dir = "./models")
|
18 |
|
19 |
@spaces.GPU(duration=120)
|
20 |
def respond(
|
|
|
75 |
demo = gr.ChatInterface(
|
76 |
respond,
|
77 |
additional_inputs=[
|
78 |
+
gr.Dropdown([
|
79 |
+
'dolphin-2.9.1-yi-1.5-34b-Q6_K.gguf',
|
80 |
+
'dolphin-2.9.1-llama-3-70b.Q3_K_M.gguf',
|
81 |
+
'dolphin-2.9.2-Phi-3-Medium-Q6_K.gguf',
|
82 |
+
'qwen2-Q3_K_M.gguf'
|
83 |
+
], value="qwen2-Q3_K_M.gguf", label="Model"),
|
84 |
gr.Slider(minimum=1, maximum=8192, value=8192, step=1, label="Max tokens"),
|
85 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
86 |
gr.Slider(
|