While trying to use the text-davinci-002 engine i get the error
In content: Must be 2000 or fewer in length. ```
and was wondering what i was doing wrong. here's the code im using
```async def chatgpt(ctx):
response = openai.Completion.create(
engine="text-davinci-002",
prompt=f"{ctx.message.content}",
max_tokens=1024
)
response_text = response["choices"][0]["text"]
await ctx.channel.send(response_text)```