We’ve trained a model called ChatGPT which interacts in a conversational way. The dialogue format makes it possible for ChatGPT to answer followup questions, admit its mistakes, challenge incorrect premises, and reject inappropriate requests.
ChatGPT is a sibling model toInstructGPT, which is trained to follow an instruction in a prompt and provide a detailed response.
We are excited to introduce ChatGPT to get users’ feedback and learn about its strengths and weaknesses. During the research preview, usage of ChatGPT is free. Try it now atchatgpt.com(opens in a new window).
Samples
Fix code Home security Fermat's Little Theorem Neighbor introduction
User
this code is not working like i expect — how do i fix it?
resultWorkerErr := make(chan error)
defer close(resultWorkerErr)
go func() {
defer cancel()
resultWorkerErr
}()
err := b.worker(ctx)
cancel()
if err == nil {
return
}
return multierror.Append(err,
return multierror.Append(err,
Comments
Sign in or join free to leave a comment.
No comments yet. Be the first.