Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ subprocess.run('pip install llama-cpp-python==0.2.75 --extra-index-url https://a
|
|
8 |
subprocess.run('pip install llama-cpp-agent==0.2.10', shell=True)
|
9 |
|
10 |
hf_hub_download(repo_id="bartowski/Meta-Llama-3-70B-Instruct-GGUF", filename="Meta-Llama-3-70B-Instruct-Q3_K_M.gguf", local_dir = "./models")
|
11 |
-
hf_hub_download(repo_id="bartowski/
|
12 |
|
13 |
@spaces.GPU(duration=120)
|
14 |
def respond(
|
@@ -82,7 +82,7 @@ demo = gr.ChatInterface(
|
|
82 |
step=0.05,
|
83 |
label="Top-p (nucleus sampling)",
|
84 |
),
|
85 |
-
gr.Dropdown(['Meta-Llama-3-70B-Instruct-Q3_K_M.gguf', '
|
86 |
],
|
87 |
theme=gr.themes.Soft(primary_hue="green", secondary_hue="indigo", neutral_hue="zinc",font=[gr.themes.GoogleFont("Exo 2"), "ui-sans-serif", "system-ui", "sans-serif"]).set(
|
88 |
block_background_fill_dark="*neutral_800"
|
|
|
8 |
subprocess.run('pip install llama-cpp-agent==0.2.10', shell=True)
|
9 |
|
10 |
hf_hub_download(repo_id="bartowski/Meta-Llama-3-70B-Instruct-GGUF", filename="Meta-Llama-3-70B-Instruct-Q3_K_M.gguf", local_dir = "./models")
|
11 |
+
hf_hub_download(repo_id="bartowski/Llama-3-8B-Synthia-v3.5-GGUF", filename="Llama-3-8B-Synthia-v3.5-f16.gguf", local_dir = "./models")
|
12 |
|
13 |
@spaces.GPU(duration=120)
|
14 |
def respond(
|
|
|
82 |
step=0.05,
|
83 |
label="Top-p (nucleus sampling)",
|
84 |
),
|
85 |
+
gr.Dropdown(['Meta-Llama-3-70B-Instruct-Q3_K_M.gguf', 'Llama-3-8B-Synthia-v3.5-f16.gguf'], value="Meta-Llama-3-70B-Instruct-Q3_K_M.gguf", label="Model"),
|
86 |
],
|
87 |
theme=gr.themes.Soft(primary_hue="green", secondary_hue="indigo", neutral_hue="zinc",font=[gr.themes.GoogleFont("Exo 2"), "ui-sans-serif", "system-ui", "sans-serif"]).set(
|
88 |
block_background_fill_dark="*neutral_800"
|