ai-cant-even
Version:
A satirical AI-powered utility that's confidently wrong about basic math operations
32 lines (31 loc) • 918 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Provider = exports.Logic = exports.Confidence = void 0;
/**
* Confidence levels for the AI's responses
*/
var Confidence;
(function (Confidence) {
Confidence["OVERWHELMED"] = "OVERWHELMED";
Confidence["OVERTHINK"] = "OVERTHINK";
Confidence["SMUG"] = "SMUG";
Confidence["SNARKY"] = "SNARKY";
})(Confidence || (exports.Confidence = Confidence = {}));
/**
* Logic types for the AI's reasoning
*/
var Logic;
(function (Logic) {
Logic["SIMPLE"] = "SIMPLE";
Logic["NONSEQUITUR"] = "NONSEQUITUR";
Logic["PSEUDOMATH"] = "PSEUDOMATH";
Logic["VISUAL"] = "VISUAL";
})(Logic || (exports.Logic = Logic = {}));
/**
* Supported LLM providers
*/
var Provider;
(function (Provider) {
Provider["ANTHROPIC"] = "anthropic";
Provider["OPENAI"] = "openai";
})(Provider || (exports.Provider = Provider = {}));