I made a NextJS wrapper on the ChatGPT api with a few differences. (watch the video)
https://www.youtube.com/watch?v=B0CRZ_f8Obc&ab_channel=Max
You can create prompt templates with variables...
Using these variables you can almost unit-test your prompts, by giving values to put in the template and what value you expect ChatGPT to return.
Then - since using the ChatGPT api has a lot of boilerplate, I wanted to add a serverless wrapper around the prompts you create.
In Workflows you can convert your template into an api callable route (you can even chain together multiple prompts).
This can be used to reduce the amount of boilerplate templates which fill your backend.
Another feature I'm about to add means you can use it to create ChatGPT requests which don't require you to spin up your own instance of nextjs/server framework.
Allowing you to make these requests safely on the client side without exposing your api keys.
If anyone wants early access let me know!