Posted on Thu Mar 23 00:44:26 2023 UTC
/r/ChatGPT/comments/11z30wk/chatgpt_basics_tips/
Prompts matter a lot!
Hi! Joining the prompt engineering club. Here is my take on basics of ChatGPT as well as some tips & tricks I've found so far. I'm more on the Software Development side, but I think the principles can be applied to other fields as well.
Basics
Model: GPT-3, GPT-4, etc., a trained model that can complete provided text
Prompt: an input to the Model
Answer: an output of the Model to the given Prompt
Prompt Engineering: a process of refinement a given Prompt to obtain the best Answer
Prompts
Multi-step Prompt: a Prompt that is a part of a sequence of Prompts that are focused on a specific task
Meta Prompt: a Prompt that asks to generate another Prompt
Reversed Prompt: a Prompt that provides an Answer and asks to provide the unknown Prompt as an Answer
Prompt Framework: a Prompt that is designed to set up a model in a specific way so that subsequent Prompts result in more efficient Answers
Prompt Pattern: a Prompt that contains placeholders for user input and is designed for specific tasks (e.g., finding bugs, refactoring, creating a story, etc.)
Prompt Refinement: a process of improving the efficiency of a Prompt by testing it on a known Answer until the model comes up with the needed result
Prompt Selection: a Prompt Refinement that imitates natural selection or genetic algorithms for finding the best Prompt for the given task
Components
Role: an introductory part of the Prompt that specifies how Model should behave in general (“Act as …”, “You’re …”, etc.)
Task: a main part of the Prompt that set up expectations of what the Answer should be (”Write 10 ideas for …”, “Find the solution to …”)
Format: a part of the Prompt that specifies the expected format of the Answer (”Format the result in table with columns…”, “Format the result in bulleted list…”)
Tips
Specify a Role as this highly influences the result (e.g., sometimes the Answer is something like “I can’t do this” until a Role is specified). Example: Act as a Senior Software Engineer that double checks everything, Act as a Senior Game Designer that is very creative and experienced, etc.
Instruct the model on how to come up with the Answer: the more text you allow the Model to include to Answer (considering that the number of tokens is within the context memory limit), the less freedom it has with each new token and, thus, the less likely it’ll do a mistake. Example: think step by step, analyze the given code line by line, apply SOLID principles, etc.
Use tables as they allow to constrain and structure the answer into a given set of columns, which can be very useful, and also limits the number of way the bot can make a mistake. Example: respond in table format with columns ‘Name’, ‘Pros’, ‘Cons’, etc.
Don’t try too hard on reducing the number of tokens in request: sometimes big task can be separated into smaller ones where only one chunk of introductory message should be shared with different chat windows
Iterate on complex tasks: start with something general and specialize as you go deeper; this also reduces the overall percentage of errors since the degree of freedom of the Model is reduced (however, don’t forget about the memory limit!)
Chain different Prompts for slower but more reliable results. Example: one bot could act as an Analyzer that analyzes the code step by step while other bot could act as an Extractor that formats the output of the Analyzer in a shorter and descriptive way
Use variables in curly brackets: the model is pretty good at combining formal logic of programming languages with expressiveness of natural languages. Example: respond with {a} and {a} reversed; a = Text
Right tool for the job: don’t use GPT-4 on simple tasks or experiments as this model is currently capped while being very effective on bigger and complex tasks; consider playing more with GPT-3.5 as it’s much faster, cheaper and has no limits
Don’t give up too fast: even if the simpler model like GPT-3.5 doesn’t give you an answer straight away, sometimes it’s still more efficient to invest more time into prompt engineering game (the model is not stupid)
Experiment more with Prompts that you know an Answer for, allowing for your internal AI (I mean brain) to adapt and find patterns.
References
https://github.com/openai/openai-cookbook/blob/main/techniques_to_improve_reliability.md: highly recommend to read this to understand under the hood how to improve Answers
To conclude, I can say that this thing is pretty much busted and it has a potential to boost my performance in so many ways that I've never imagined in my life. Can't wait to see new things coming out in the future!