rhettlunn / is-odd-ai

Why check if something is odd simply, when you can do it with ✨AI✨
Apache License 2.0
26 stars 0 forks source link

is-odd-ai

npm version

Why check if something is odd simply, when you can do it with ✨AI✨

is-odd-ai is a unique package that utilizes OpenAI's GPT-3.5-turbo model to determine if a number is odd or even. Because sometimes you just want to add a little bit of AI magic to your number checking!

Installation

To install is-odd-ai, use npm:

npm install is-odd-ai

Usage

To use is-odd-ai, you'll need an OpenAI API key. You can get one by signing up at OpenAI.

  1. Create a .env file in the root of your project.
  2. Add your OpenAI API key to the .env file:
OPENAI_API_KEY=your-api-key

Example

Here's an example of how to use the is-odd-ai package in your project:

const isOdd = require('is-odd-ai');

(async () => {
    const number = 5;
    const result = await isOdd(number);
    console.log(`Is ${number} odd? ${result}`); // Output: Is 5 odd? true
})();

Function

isOdd(number)

Contributing

Contributions are welcome! Please open an issue or submit a pull request if you have any suggestions or improvements.

License

This project is licensed under the Apache 2.0 license.