ArvindSelvaraj commited on
Commit
3aaa8da
1 Parent(s): 0a83b8a
Files changed (1) hide show
  1. backend.py +1 -1
backend.py CHANGED
@@ -45,7 +45,7 @@ def generate_testcases(user_story):
45
  ],
46
  temperature=0.06, # Further lowering temperature for precise and deterministic output
47
  top_p=0.5, # Prioritize high-probability tokens even more
48
- max_tokens=2048, # Increase max tokens to allow longer content
49
  stream=True # Streaming the response for faster retrieval
50
  )
51
 
 
45
  ],
46
  temperature=0.06, # Further lowering temperature for precise and deterministic output
47
  top_p=0.5, # Prioritize high-probability tokens even more
48
+ max_tokens=4096, # Increase max tokens to allow longer content
49
  stream=True # Streaming the response for faster retrieval
50
  )
51