I’ve seen that some popular products using Open.ai opt for showing multiple results to the user.
I am wondering, is that the result of simply making the same request to OpenAI several times and showing the results?
I thought at first that they would use some kind of structure like shown on how to improve prompt design, but in many situations, the output would be too long for it it be the result of a single request (specially after checking the Going live requirements)
Isn’t it quite expensive for them to return around 7 results per query? Several companies like Copy.ai, Peppercontent and Copysmith does that for instance.
Also, they should need to do the queries in parallel so the user doesn’t need to wait for too long?
Hey @jamalavedra you can also send an array of prompts to the API and get an array of completions back. This can be an alternative to making multiple requests in some cases.