is-odd-ai
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:
Usage
To use is-odd-ai, you'll need an OpenAI API key. You can get one by signing up at OpenAI.
- Create a
.envfile in the root of your project. - Add your OpenAI API key to the
.envfile:
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 totrueif the number is odd,falseif 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.