├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── groq.lisp ├── openai.asd ├── openai.lisp ├── package.lisp ├── temp_rewrite.lisp └── utils.lisp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/README.md -------------------------------------------------------------------------------- /groq.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/groq.lisp -------------------------------------------------------------------------------- /openai.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/openai.asd -------------------------------------------------------------------------------- /openai.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/openai.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/package.lisp -------------------------------------------------------------------------------- /temp_rewrite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/temp_rewrite.lisp -------------------------------------------------------------------------------- /utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-watson/openai/HEAD/utils.lisp --------------------------------------------------------------------------------