Luigi commited on
Commit
ea7adad
·
1 Parent(s): 88b1f39

switch to 7b model

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -3,8 +3,8 @@ from llama_cpp import Llama
3
  from huggingface_hub import hf_hub_download
4
 
5
  hf_hub_download(
6
- repo_id="Qwen/Qwen2.5-3B-Instruct-GGUF",
7
- filename="qwen2.5-3b-instruct-q2_k.gguf",
8
  local_dir="./models",
9
  )
10
 
@@ -12,7 +12,7 @@ hf_hub_download(
12
  @st.cache_resource
13
  def load_model():
14
  return Llama(
15
- model_path="models/qwen2.5-3b-instruct-q2_k.gguf",
16
  n_ctx=1024,
17
  n_threads=2,
18
  n_threads_batch=2,
@@ -29,7 +29,7 @@ llm = load_model()
29
  if "chat_history" not in st.session_state:
30
  st.session_state.chat_history = []
31
 
32
- st.title("🧠 Qwen2.5-3B-Instruct (Streamlit + GGUF)")
33
  st.caption("Powered by `llama.cpp` and `llama-cpp-python` | 2-bit Q2_K inference")
34
 
35
  with st.sidebar:
 
3
  from huggingface_hub import hf_hub_download
4
 
5
  hf_hub_download(
6
+ repo_id="Qwen/Qwen2.5-7B-Instruct-GGUF",
7
+ filename="qwen2.5-7b-instruct-q2_k.gguf",
8
  local_dir="./models",
9
  )
10
 
 
12
  @st.cache_resource
13
  def load_model():
14
  return Llama(
15
+ model_path="models/qwen2.5-7b-instruct-q2_k.gguf",
16
  n_ctx=1024,
17
  n_threads=2,
18
  n_threads_batch=2,
 
29
  if "chat_history" not in st.session_state:
30
  st.session_state.chat_history = []
31
 
32
+ st.title("🧠 Qwen2.5-7B-Instruct (Streamlit + GGUF)")
33
  st.caption("Powered by `llama.cpp` and `llama-cpp-python` | 2-bit Q2_K inference")
34
 
35
  with st.sidebar: