nakcnx commited on
Commit
161dbc8
1 Parent(s): 2bb2938

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ def combine(a, b, c, d,e,f):
63
  total_tokens = ''
64
  for character in llm(prompt,
65
  max_tokens=max_new_tokens,
66
- stop=["</s>"],
67
  temperature = temperature,
68
  repeat_penalty = repeat_penalty,
69
  top_p = top_p, # Example stop token - not necessarily correct for this specific model! Please check before using.
 
63
  total_tokens = ''
64
  for character in llm(prompt,
65
  max_tokens=max_new_tokens,
66
+ stop=["<|eot_id|>"],
67
  temperature = temperature,
68
  repeat_penalty = repeat_penalty,
69
  top_p = top_p, # Example stop token - not necessarily correct for this specific model! Please check before using.