simone-papicchio commited on
Commit
554956e
·
verified ·
1 Parent(s): 99c67f9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -49,7 +49,9 @@ messages = [
49
 
50
  outputs = pipeline(
51
  messages,
52
- max_new_tokens=256,
 
 
53
  )
54
  print(outputs[0]["generated_text"][-1])
55
  ```
 
49
 
50
  outputs = pipeline(
51
  messages,
52
+ max_new_tokens=30_000,
53
+ temperature=0.7,
54
+ top_p=0.95
55
  )
56
  print(outputs[0]["generated_text"][-1])
57
  ```