Created
July 19, 2023 07:57
-
-
Save philschmid/64a46c63cccac9eb4a7d686dca69d5b7 to your computer and use it in GitHub Desktop.
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
B_INST, E_INST = "[INST]", "[/INST]" | |
B_SYS, E_SYS = "<<SYS>>\n", "\n<</SYS>>\n\n" | |
SYSTEM= """\ | |
You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. | |
If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.""" | |
INSTRUCTION="What is the receipe of mayonnaise?" | |
PROMPT = B_SYS + SYSTEM + E_SYS + B_INST + INSTRUCTION + E_INST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment