codeai
v0.0.1
Published
Quickly call OpenAI to generate code.
Downloads
29
Maintainers
Readme
CodeAI
Project Description
OpenAI has created a JavaScript code generation library that makes it easier to use OpenAI's generated code and provides a foundation for higher-level software.
Browser Support
| | | | | | --- | --- | --- | --- | --- | --- | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11 ✔ |
Platform
UMD | CJS | ESM | Typescript | --- | --- | --- | --- | Support ✔ | Support ✔ | Support ✔ | Support ✔ |
Installing
Package manager
Using npm:
npm install codeai
You can also use the default export, since the named export is just a re-export from the codeai factory:
import codexjs from 'codeai';
codexjs.get('实现一个数组去重函数,es6版本', (data) => {
console.log(data)
}, () => {
console.log('Information transmission complete.')
}, err => {
console.log('error:', err)
})
If you use require for importing, only default export is available:
const codexjs = require('codeai');
codexjs.get('实现一个数组去重函数,es6版本', (data) => {
console.log(data)
}, () => {
console.log('Information transmission complete.')
}, err => {
console.log('error:', err)
})
For cases where something went wrong when trying to import a module into a custom or legacy environment, you can try importing the module package directly:
const codexjs = require('codeai/dist/codexjs.cjs'); // browser commonJS bundle
For more information, please see the examples in the /demo files. I have prepared demonstration files in both cjs and umd formats.
CDN
Using jsDelivr CDN (ES5 UMD browser module):
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/codexjs.umd.js"></script>
Using unpkg CDN:
<script src="https://unpkg.com/[email protected]/dist/codexjs.umd.js"></script>
🚧 Tip
This project is still in an unstable phase. If you encounter any issues, please feel free to open an issue on GitHub. We welcome your feedback and suggestions.