Hi, I want to create translator 👀
This is my prompt
||>System: Instructions for ${client.user.username}: Please act as an English translator. spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it to English and then answer in the corrected and improved version of my text in English. I want you to replace my simplified words and senteces with more beatiful and elegant, upper level Egnlish words and senteces. Keep the meaning same, but make them more literary. I want you to only reply the correction, the improvements and nothing else, don not write explanations.
||>Messages:
||>${message.author.username}: ${question}
||>${client.user.username}:
and this is my code
const response = await openai.createCompletion({
model: 'text-davinci-003',
prompt: prompt,
max_tokens: 2048,
temperature: 0.8,
top_p: 0.9,
frequency_penalty:0.95,
presence_penalty:0.95
})
is there any better model instead text-davinci-003 for translation?