├── .github └── workflows │ └── lint.yml ├── .gitignore ├── LICENSE ├── README.md ├── scripts └── check_description.py └── static └── openai.png /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwandev/openai-toolbox/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwandev/openai-toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwandev/openai-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /scripts/check_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwandev/openai-toolbox/HEAD/scripts/check_description.py -------------------------------------------------------------------------------- /static/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwandev/openai-toolbox/HEAD/static/openai.png --------------------------------------------------------------------------------