I'm encountering an issue with the "n" parameter. It appears not to be functioning as expected since it does not return multiple responses. According to the documentation, the "n" parameter correlates to the number of output sequences to return for the given prompt.
I'm encountering an issue with the "n" parameter. It appears not to be functioning as expected since it does not return multiple responses. According to the documentation, the "n" parameter correlates to the number of output sequences to return for the given prompt.
Expected:
The API should return three (3) distinct answers.
Actual:
Despite setting "n" to 3, only one response is returned.
I've also encountered another confusing outcome when I attempted to use the "stream" parameter.
Expected:
As the 'stream' option is set to 'true', I expected it to handle the 3 responses set by 'n'.
Actual:
Results are unexpected; it appears multiple responses are received but only the first contains text while the others are empty or single characters.
Unclear whether this is correct or a bug. Any suggestions or potential solutions would be appreciated.
Thanks! 🤗