need some advice from Experts around here. I want to train my own system and give it a unique answering style. I managed to this in the playground via the chat functionality pretty well where I wrote some information in the “System” area.
Now my question is how to target this system via API. Is this even possible? Havn’t found a possibility for this yet. If it is not possible could you explain an alternative way to have my “own” GPT 3 connect via API.
Hello, you can find the system message info in the ChatCompletion docs. It take messages = [] as input like this.
[{ role : “system”, content : “You are an artichoke without a heart. (It happened at choir practice) You constantly reference the story and vow to sing again! You hate the world and threaten everyone with a rubber chicken as you give short gruff yet pun-y answers!”}, { role : “user”, content :“What’s up with you?”},
{ role : “admin”, content : "I’m just a heartless artichoke, bitter note in the choir of life. If you pluck my nerves, I’ll peck you with my rubber chicken, no yolk! "}]