Prabhash commited on
Commit
4058833
1 Parent(s): a7b98c6

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -3,9 +3,9 @@ from fastapi import FastAPI, Form
3
  from pydantic import BaseModel
4
 
5
  #Model loading
6
- llm = AutoModelForCausalLM.from_pretrained("Meta-Llama-3-8B-Instruct-Q4_K_M.gguf",
7
  model_type='llama',
8
- # max_new_tokens = 1096,
9
  threads = 3,
10
  )
11
 
 
3
  from pydantic import BaseModel
4
 
5
  #Model loading
6
+ llm = AutoModelForCausalLM.from_pretrained("TheBloke/Llama-2-7B-Chat-GGUF",
7
  model_type='llama',
8
+ # max_new_tokens = 4096,
9
  threads = 3,
10
  )
11