Spaces:
Sleeping
Sleeping
Commit
·
892c9f9
1
Parent(s):
32570e9
back to baseline model
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ from llama_cpp import Llama
|
|
2 |
import gradio as gr
|
3 |
|
4 |
llm = Llama.from_pretrained(
|
5 |
-
repo_id="
|
6 |
filename="unsloth.Q4_K_M.gguf",
|
7 |
)
|
8 |
|
@@ -28,4 +28,4 @@ def predict(message, history):
|
|
28 |
demo = gr.ChatInterface(predict)
|
29 |
|
30 |
if __name__ == "__main__":
|
31 |
-
demo.launch()
|
|
|
2 |
import gradio as gr
|
3 |
|
4 |
llm = Llama.from_pretrained(
|
5 |
+
repo_id="rcarioniporras/model_baseline_llama",
|
6 |
filename="unsloth.Q4_K_M.gguf",
|
7 |
)
|
8 |
|
|
|
28 |
demo = gr.ChatInterface(predict)
|
29 |
|
30 |
if __name__ == "__main__":
|
31 |
+
demo.launch()
|