A simple wrapper for the ChatGPT API
Only text-based prompts for now
// Example Promtp res, err = chat.SendPrompt("Tell me the story of golang with 200 characters") if err != nil { fmt.Println(err) os.Exit(1) } fmt.Println(res)
MIT