Prompt Chaining

How to use prompt in combination with operators to chain multiple prompts together for tailored responses

Prompt chaining is the use of multiple requests and operators to get more specific information, add on information, or apply different processes to a root request in a single prompt. Let’s look at one of the examples from the above section:

chatgpt-3.5: 
update the http request to return the data from the for loop response above and merge the for loop into the script
Root requestOperatorSecondary request

update the http request to return the data from the for loop response above

and

merge the for loop into the script

In the example above, the secondary request is being used to apply a consolidation process to the root request.

Last updated