├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── code_of_conduct.md ├── completion.go ├── go.mod ├── go.sum ├── image.go ├── openai.go ├── openai_test.go └── structs.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | *.png -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/completion.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/go.sum -------------------------------------------------------------------------------- /image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/image.go -------------------------------------------------------------------------------- /openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/openai.go -------------------------------------------------------------------------------- /openai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/openai_test.go -------------------------------------------------------------------------------- /structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausheong/openai/HEAD/structs.go --------------------------------------------------------------------------------