codexjs-ai
v0.0.4
Published
Quickly call OpenAI to generate code.
Downloads
4
Maintainers
Readme
CodexJs-AI
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 codexjs-ai
You can also use the default export, since the named export is just a re-export from the codexjs-ai factory:
import codexjs from 'codexjs-ai';
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('codexjs-ai');
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('codexjs-ai/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.