What is the best way to augment GPT so I can give it rules and request it to then display the results as a DSL (break down of steps)?
Ideally I would like to add this to a GPT and then programmatically call it.
Which option should I go with:
-
Create a custom GPT and load it up with rules etc. Its not a huge-perhaps also a PDF with info in addition to the rules. I assume I do this one and I am good to go. Then access it from my application using APIs.
-
Can I use Assistants API - would I need to give it the rules etc. each time I start it up on my server?
I looked here https://help.openai.com/en/articles/8673914-gpts-vs-assistants. but I am not sure which would be better suited.
Thanks!