codexjs-ai
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

CodexJs-AI

Quickly call OpenAI to generate code.

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

Chrome Firefox Safari Opera Edge IE
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/codexjs-ai@0.0.3/dist/codexjs.umd.js"></script>

Using unpkg CDN:

<script src="https://unpkg.com/codexjs-ai@0.0.3/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

Readme

Keywords

Package Sidebar

Install

npm i codexjs-ai

Weekly Downloads

10

Version

0.0.4

License

MIT

Unpacked Size

130 kB

Total Files

18

Last publish

Collaborators

  • zhukunpenglinyutong