Need help from some pros here. A note to start that I don’t know any coding, I can understand plain logic though and look up some aspects of simple code if needed.
Objective: to build a website where a user uploads a document and gets full content as an end product, after the GPT goes through multiple chain prompts on its own.
The flow: user uploads document on website, GPT is activated via an API and presents a first output based on a pre defined instructions (I don’t want the user to prompt anything other than just uploading the document)
The user then feedbacks and gets a reply until they are satisfied and gives an approval.
Upon approval, we upload the output into the GPT via an API again, and this time I want the GPT be able to generate an output using a predefined set of instructions, this output then becomes the input for the next set of instructions and so on.
My experiments: In order to figure out these set of instructions and to make sure they work. I have built various GPTs using ChatGPT Plus.
Issues: The GPTs don’t seem to follow all the steps in the prompt despite it being very clear and listed as steps. Especially, when I ask it to perform a set of instructions on one element of the input document and then repeat those same steps for the other elements, it stops after doing it just once. I have even tried replacing the “now repeat the steps for every step in the document” with repeating the steps for each section, but still doesn’t work.
Another issue is that if I give it a set of steps that will create a document with different sections, it focuses on any one sections output more in random, so if I run it three times each time one section’s output will be better than the others.
I’d appreciate guidance. Of course, since the eventual goal is to have this work through my website am happy to abandon my custom GPT approach (since I can’t generate independent APIs for them anyway) and learn to do this using the main model. But my only condition would be that I want minimal user interactions, basically it should do things on its own following detailed instructions at every stage.
Lastly, another question, I have read on this forum that Assistants is an option to get these different bots with their own APIs. But I want these bots to be exclusive to me, from what I understand Assistants are not able to be made private, is that correct?
I truly appreciate any guidance.