Searching for ChatGPT Plus Settings

We are having some prompt issues with our GPT-3.5 API and to help troubleshoot we’d like to mirror our Playground settings (mode, model, temperature, etc) with the ChatGPT Plus settings. If you know the ChatGPT Plus settings we’d be eternally grateful if you would let us know!

Im looking as well. does anyone know what the settings are?

Hey there,

I would assume the default settings on Playground are pretty close if not exactly the same as the ChatGPT settings? I just tried sending the same prompt through both and got a similar answer.

Maybe if you shared the original problem with the API we could help better?

I’m guessing if I want chatGPT to write an article, the closest thing would be looking at the settings for chat?

import os
import openai

openai.api_key = os.getenv(“OPENAI_API_KEY”)

response = openai.Completion.create(
model=“text-davinci-003”,
prompt=“The following is a conversation with an AI assistant. The assistant is helpful, creative, clever, and very friendly.\n\nHuman: Hello, who are you?\nAI: I am an AI created by OpenAI. How can I help you today?\nHuman: I’d like to cancel my subscription.\nAI:”,
temperature=0.9,
max_tokens=150,
top_p=1,
frequency_penalty=0.0,
presence_penalty=0.6,
stop=[" Human:“, " AI:”]
)

What has everyone else said their settings to for creative writing purposes?

temperature=0.9,
max_tokens=150,
top_p=1,
frequency_penalty=0.0,
presence_penalty=0.6,