You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nqngo
changed the title
Provide the exact GPT3/GPT4 prompt format
Provide the OpenAI prompt parameters to emulate the experience of ChatGPT app
Feb 27, 2024
Here is my suggestion for default parameters of OpenAI API
frequency_penalty=0# penalty for repeating tokens, if set to high -> lower likelihood of repeating wordpresence_penalty=0# similar to penalty above. Keeping default = 0 for the balancelogprobs=False# whether to return log probabilities in output objectmax_tokens=1000# maximum number of tokens generated by modelsn=1# number of response generated by modelsseed=1000# for reproducible output, must keep this consistent across the codebasestream=False# whether to stream the output -> display text as streamtemperature=0.1# control the creativity of models. Lower values indicate more factual text
ChatGPT is very verbose and provide a fair bit of contextual information on the prompt provide.
When
/ask
is implemented, what are the parameters, token size, words penalty tuning we need to provide to OpenAI to emulate that experience?Please investigate and provide the parameters needed.
The text was updated successfully, but these errors were encountered: