Krzysztof Krystian Jankowski commited on
Commit
8a41d71
·
1 Parent(s): 8dbfa9e

updated prompt and settings

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -5,7 +5,9 @@ from langchain_community.llms import CTransformers
5
  def getLlamaResponse(input_text, no_words, blog_style):
6
  llm=CTransformers(model="TheBloke/TinyLlama-1.1B-Chat-v0.3-GGUF",
7
  model_type='llama',
8
- config={'max_new_tokens':256, 'temperature':0.2})
 
 
9
 
10
  # create a prompt
11
 
 
5
  def getLlamaResponse(input_text, no_words, blog_style):
6
  llm=CTransformers(model="TheBloke/TinyLlama-1.1B-Chat-v0.3-GGUF",
7
  model_type='llama',
8
+ config={'max_new_tokens':256,
9
+ 'repetition_penalty': 1.1,
10
+ 'temperature':0.6})
11
 
12
  # create a prompt
13