defaul n_choices to 1

This commit is contained in:
ned
2023-03-02 19:04:18 +01:00
parent 926b37d3eb
commit f15b59ea7b

View File

@@ -39,7 +39,7 @@ def main():
'temperature': 1,
# How many chat completion choices to generate for each input message.
'n_choices': 3,
'n_choices': 1,
# The maximum number of tokens allowed for the generated answer
'max_tokens': 1200,