Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zerx966
/
Lordgpt
like
0
Sleeping
App
Files
Files
Community
1
Zerx966
commited on
about 1 month ago
Commit
ad5cb78
•
1 Parent(s):
8abf6d6
Create Gpt
Browse files
Files changed (1)
hide
show
Gpt
+7
-0
Gpt
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from llama_cpp import Llama
2
+
import gradio as gr
3
+
4
+
llm = Llama.from_pretrained(
5
+
repo_id="QuantFactory/Qwen2.5-7B-Instruct-Uncensored-GGUF",
6
+
filename="Qwen2.5-7B-Instruct-Uncensored.Q2_K.gguf",
7
+
)