Last active
July 18, 2020 02:32
-
-
Save mayfer/a9a3d89994eb2596790580962f3b5e81 to your computer and use it in GitHub Desktop.
GPT-3 Prompt standard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Request for comments: A standard format for sharing & using GPT-3 prompts that yield specific results | |
{ | |
"version": "0.1", | |
"name": "Chat bot", | |
"description": "Generic chat preset between user & an AI", | |
"prompt_template": `The following is a conversation with between {human_name} and an AI assistant. The assistant is helpful, creative, clever, and very friendly. | |
{human_name}: Hello, who are you? | |
AI: I am an AI created by OpenAI. How can I help you today? | |
{human_name}:`, | |
"stop_sequence": "{human_name}:", | |
"reprompt_template": "{human_name}:", | |
"temperature": 0.9, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment