iamspro
iamspro t1_jdf0f1o wrote
Reply to comment by endless_sea_of_stars in [N] ChatGPT plugins by Singularian2501
Good point, that baking in could also include the overall sense of how to get the syntax right
iamspro t1_jderz7f wrote
Reply to comment by endless_sea_of_stars in [N] ChatGPT plugins by Singularian2501
I tried fine tuning vs few shot for my own implementation and in the end few shot was just much easier, despite the context window drawback. Huge advantage is you can dynamically add/remove/update APIs in an instant.
iamspro t1_jdeq8jw wrote
Reply to comment by nightofgrim in [N] ChatGPT plugins by Singularian2501
Awesome I did the same, plus a step to send those commands to the home assistant API. Then with Shortcuts I added a way to send the arbitrary sentence from Siri to this server. Still a bit awkward though because you have to say something like "hey siri tell gpt to turn off the kitchen light"
iamspro t1_iw7ut88 wrote
Reply to [D] ML/AI role as a disabled person by badhandml
I don't have any specific advice but I hope projects like the upcoming "Hey Github" voice-to-code help you in the future https://githubnext.com/projects/hey-github
Edit: ironically their scroll-animation-based website does not seem accessible at all
iamspro t1_jdj4wzl wrote
Reply to comment by countalabs in [N] ChatGPT plugins by Singularian2501
Fine-tuning is distinct afaik... using OpenAI's language for it[1]:
zero-shot: no examples in the prompt, just an input (and/or instruction)
few-shot: one or more examples of input+output in the prompt, plus new input
fine-tuning: updating the model with examples (which can then be used with zero- or few-shot as you wish)
[1] https://help.openai.com/en/articles/6654000-best-practices-for-prompt-engineering-with-openai-api (part 5)