Is-even-ai – Check if a number is even using the power of AI
Published on: 2025-07-02 08:19:44
Check if a number is even using the power of ✨AI✨.
Uses OpenAI's GPT-3.5-turbo model under the hood to determine if a number is even.
For all those who want to use AI in their product but don't know how.
Inspired by the famous is-even npm package and this tweet.
Installation
This package is on npm.
npm install is-even-ai
Usage
import { areEqual , areNotEqual , isEven , isGreaterThan , isLessThan , isOdd , setApiKey , } from "is-even-ai" ; // won't need this if you have OPENAI_API_KEY in your environment setApiKey ( "YOUR_API_KEY" ) ; console . log ( await isEven ( 2 ) ) ; // true console . log ( await isEven ( 3 ) ) ; // false console . log ( await isOdd ( 4 ) ) ; // false console . log ( await isOdd ( 5 ) ) ; // true console . log ( await areEqual ( 6 , 6 ) ) ; // true console . log ( await areEqual ( 6 , 7 ) ) ; // false console . log ( await areNotEqual ( 6 , 7 ) ) ; // true console . log ( await areNotEqual ( 7 , 7 ) ) ; // false console . log ( await isGreaterThan ( 8 , 7
... Read full article.