response = openai.Completion.create(
engine="text-davinci-002",
prompt=prompt_text,
temperature=1,
max_tokens=300,
top_p=1,
frequency_penalty=0.7,
presence_penalty=0.1,
stop=["\n"],
)
won't return anything. and yes I have something as my prompt. is there some error I am missing? I don't get a error printed (python btw)