0.0.1 • Published 2 years ago

codeai v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

CodeAI

npm version install size npm bundle size npm downloads

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

ChromeFirefoxSafariOperaEdgeIE
Latest ✔Latest ✔Latest ✔Latest ✔Latest ✔11 ✔

Platform

UMDCJSESMTypescript
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/codeai@0.0.4/dist/codexjs.umd.js"></script>

Using unpkg CDN:

<script src="https://unpkg.com/codeai@0.0.4/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.

License

MIT