├── .github └── workflows │ ├── cr.yml │ ├── go.yml │ ├── pr.yml │ └── release_build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README-CN.md ├── README.md ├── example ├── go.mod ├── go.sum └── main.go ├── go.mod ├── gpt.go ├── img └── chatgpt.gif ├── model.go ├── options.go └── utils.go /.github/workflows/cr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/.github/workflows/cr.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/.github/workflows/release_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/Makefile -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/README.md -------------------------------------------------------------------------------- /example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/example/go.mod -------------------------------------------------------------------------------- /example/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/example/go.sum -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/example/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hanyuancheung/gpt-go 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /gpt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/gpt.go -------------------------------------------------------------------------------- /img/chatgpt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/img/chatgpt.gif -------------------------------------------------------------------------------- /model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/model.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/options.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyuancheung/gpt-go/HEAD/utils.go --------------------------------------------------------------------------------