├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── auth.go ├── chat-service ├── go.mod ├── go.sum ├── main.go ├── service.go └── types.go ├── chatgpt.go ├── chatgpt_test.go ├── go.mod ├── go.sum ├── makefile ├── types.go └── utils.go /.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/README.md -------------------------------------------------------------------------------- /auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/auth.go -------------------------------------------------------------------------------- /chat-service/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chat-service/go.mod -------------------------------------------------------------------------------- /chat-service/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chat-service/go.sum -------------------------------------------------------------------------------- /chat-service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chat-service/main.go -------------------------------------------------------------------------------- /chat-service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chat-service/service.go -------------------------------------------------------------------------------- /chat-service/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chat-service/types.go -------------------------------------------------------------------------------- /chatgpt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chatgpt.go -------------------------------------------------------------------------------- /chatgpt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/chatgpt_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/go.sum -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/makefile -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/types.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u2takey/chatgpt-go/HEAD/utils.go --------------------------------------------------------------------------------