mahiatlinux commited on
Commit
0005f69
1 Parent(s): 675dd27

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -3,14 +3,14 @@ from gpt4all import GPT4All
3
  from huggingface_hub import hf_hub_download
4
  import spaces
5
 
6
- title = "MasherAI-7B-GGUF Chat"
7
 
8
  description = """
9
- Masher AI chat model running on HuggingFace Spaces. Made by Maheswar KK.
10
  """
11
 
12
  model_path = "models"
13
- model_name = "MasherAI-7B-v3-GGUF-unsloth.Q4_K_M.gguf"
14
  hf_hub_download(repo_id="pacozaa/lora_model_tinyllama_alpaca_first", filename=model_name, local_dir=model_path, local_dir_use_symlinks=False)
15
 
16
  print("Start the model init process")
 
3
  from huggingface_hub import hf_hub_download
4
  import spaces
5
 
6
+ title = "TinyLlama-GGUF Chat"
7
 
8
  description = """
9
+ A fine tuned TinyLlama running on HuggingFace Spaces. Made by pacozaa.
10
  """
11
 
12
  model_path = "models"
13
+ model_name = "lora_model_tinyllama_alpaca_first-unsloth.Q4_K_M.gguf"
14
  hf_hub_download(repo_id="pacozaa/lora_model_tinyllama_alpaca_first", filename=model_name, local_dir=model_path, local_dir_use_symlinks=False)
15
 
16
  print("Start the model init process")