ArvindSelvaraj commited on
Commit
a477e6a
·
verified ·
1 Parent(s): adbc9d5

Update backend.py

Browse files
Files changed (1) hide show
  1. backend.py +1 -1
backend.py CHANGED
@@ -92,7 +92,7 @@ def generate_testcases(user_story):
92
  ],
93
  temperature=0.06, # Further lowering temperature for precise and deterministic output
94
  top_p=0.5, # Prioritize high-probability tokens even more
95
- max_token=4096, # Increase max tokens to allow longer content
96
  stream=True # Streaming the response for faster retrieval
97
  )
98
 
 
92
  ],
93
  temperature=0.06, # Further lowering temperature for precise and deterministic output
94
  top_p=0.5, # Prioritize high-probability tokens even more
95
+ max_tokens=4096, # Increase max tokens to allow longer content
96
  stream=True # Streaming the response for faster retrieval
97
  )
98