Spaces:
Sleeping
Sleeping
rosameliacarioni
commited on
Commit
·
61b1f0f
1
Parent(s):
58c957f
Updated modelcentric
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="rcarioniporras/
|
6 |
filename="unsloth.Q4_K_M.gguf",
|
7 |
)
|
8 |
|
@@ -27,5 +27,5 @@ def predict(message, history):
|
|
27 |
|
28 |
demo = gr.ChatInterface(predict)
|
29 |
|
30 |
-
if __name__ == "
|
31 |
demo.launch()
|
|
|
2 |
import gradio as gr
|
3 |
|
4 |
llm = Llama.from_pretrained(
|
5 |
+
repo_id="rcarioniporras/model_modelcentric_llama_gguf",
|
6 |
filename="unsloth.Q4_K_M.gguf",
|
7 |
)
|
8 |
|
|
|
27 |
|
28 |
demo = gr.ChatInterface(predict)
|
29 |
|
30 |
+
if __name__ == "_main_":
|
31 |
demo.launch()
|