atharvapawar commited on
Commit
ce12bdc
·
1 Parent(s): 4bbdf13

updated model path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def getLLMResponse(form_input,email_sender,email_recipient,email_style):
24
 
25
  #C Transformers is the Python library that provides bindings for transformer models implemented in C/C++ using the GGML library
26
 
27
- llm = CTransformers(model='models/llama-2-7b-chat.ggmlv3.q8_0.bin', #https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGML/tree/main
28
  model_type='llama',
29
  config={'max_new_tokens': 256,
30
  'temperature': 0.01})
 
24
 
25
  #C Transformers is the Python library that provides bindings for transformer models implemented in C/C++ using the GGML library
26
 
27
+ llm = CTransformers(model='llama-2-7b-chat.ggmlv3.q8_0.bin', #https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGML/tree/main
28
  model_type='llama',
29
  config={'max_new_tokens': 256,
30
  'temperature': 0.01})