Warlord-K commited on
Commit
58295b8
·
1 Parent(s): 45fa057

Change Max new tokens to 250

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -112,7 +112,7 @@ def get_completion(
112
  model=model,
113
  messages=messages,
114
  temperature=temperature, # this is the degree of randomness of the model's output
115
- max_tokens=max_new_tokens, # this is the number of new tokens being generated
116
  top_p=top_p,
117
  top_k=top_k,
118
  stream=stream,
 
112
  model=model,
113
  messages=messages,
114
  temperature=temperature, # this is the degree of randomness of the model's output
115
+ max_new_tokens=250, # this is the number of new tokens being generated
116
  top_p=top_p,
117
  top_k=top_k,
118
  stream=stream,