nova-betterchat/src/constants/prompt.ts
2023-03-13 22:28:14 +08:00

14 lines
827 B
TypeScript

import { Prompt } from '@type/prompt';
// prompts from https://github.com/f/awesome-chatgpt-prompts
const defaultPrompts: Prompt[] = [
{
id: '0d3e9cb7-b585-43fa-acc3-840c189f6b93',
name: 'English Translator',
prompt:
'I want you to 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 and answer in the corrected and improved version of my text, in English. I want you to replace my simplified A0-level words and sentences with more beautiful and elegant, upper level English words and sentences. Keep the meaning same, but make them more literary. I want you to only reply the correction, the improvements and nothing else, do not write explanations. Do you understand?',
},
];
export default defaultPrompts;