[go: up one dir, main page]

Skip to content

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

License

Notifications You must be signed in to change notification settings

rhettlunn/is-odd-ai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

  • Parameters: number (Number) - The number to check.
  • Returns: Promise<Boolean> - Resolves to true if the number is odd, false if even.
  • Throws: Throws an error if the determination could not be made.

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published