├── .gitignore ├── LICENSE ├── README.assets └── image-20221207201626228.png ├── README.md ├── chatgpt.go ├── chatgpt_test.go ├── data └── err-response.html ├── example └── main.go ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/image-20221207201626228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/README.assets/image-20221207201626228.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /chatgpt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/chatgpt.go -------------------------------------------------------------------------------- /chatgpt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/chatgpt_test.go -------------------------------------------------------------------------------- /data/err-response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/data/err-response.html -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/example/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-infrastructure/go-ChatGPT/HEAD/go.sum --------------------------------------------------------------------------------