4.10.98 • Published 12 months ago

@diotoborg/non-voluptatum v4.10.98

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

This package package for interacting with GPT4-based chat services, OpenChat, Bard, Gemini, LlaMa, Mixtral, Claude, Naomi, Prodia, Kandinsky, Absolutebeauty, Sdxl, Dalle, AI Icon, etc.. without restrictions or limits

Installation

Installation For CLI

npm i -g rsnchat

Installation

npm i rsnchat

APIKEY

Discord : https://discord.gg/r5QWdKfQxr

Join discord server and create account with /new slash command and get your apikey with /key slash command for free!

Usage GPT3

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.gpt("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage GPT4

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.gpt4("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage OpenChat

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.openchat("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Bard

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.bard("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Gemini

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.gemini("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Bing

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.bing("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage LlaMa

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.llama("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Mixtral

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.mixtral("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage CodeLlama

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.codellama("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Claude3 (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.claude("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Naomi (ai girlfriend) (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.naomi("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage ZeroTwo (ai girl) (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

rsnchat.zerotwo("Hello, what is your name?").then((response) => {
  console.log(response.message);
});

Usage Prodia

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";
const negative_prompt = "blury, bad quality";
const model = "absolutereality_v181.safetensors [3d9d4d2b]";

rsnchat.prodia(prompt, negative_prompt, model).then((response) => {
  console.log(response);
});

Prodia Models

List of prodia models

Usage Kandinsky

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";
const negative_prompt = "blury, bad quality";

rsnchat.kandinsky(prompt, negative_prompt).then((response) => {
  console.log(response);
});

Usage Absolutebeauty

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";
const negative_prompt = "blury, bad quality";

rsnchat.absolutebeauty(prompt, negative_prompt).then((response) => {
  console.log(response);
});

Usage Sdxl

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";
const negative_prompt = "blury, bad quality";

rsnchat.sdxl(prompt, negative_prompt).then((response) => {
  console.log(response);
});

Usage Dalle

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";

rsnchat.dalle(prompt).then((response) => {
  console.log(response);
});

Usage AI Icon

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";

rsnchat.icon(prompt).then((response) => {
  console.log(response);
});

Usage Anime (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";

rsnchat.anime(prompt).then((response) => {
  console.log(response);
});

Usage Cartoon (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";

rsnchat.cartoon(prompt).then((response) => {
  console.log(response);
});

Usage Photograpy (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";

rsnchat.photograpy(prompt).then((response) => {
  console.log(response);
});

Usage Disney (premium)

const { RsnChat } = require("rsnchat");

const rsnchat = new RsnChat("rsnai_××××××××××××××××××××××");

const prompt = "beautiful girl";

rsnchat.premium(prompt).then((response) => {
  console.log(response);
});

Example CLI Command

rsnchat
Uint8ClampedArrayArray.prototype.flatlintdescriptionfast-copyformsObject.definePropertyservergradients csstermbabel-coreshrinkwraphashclasseswhatwgcollection.es6apolloqueueidentifiersbddconsoleonceaws.gitignorereplayfsbabeltypedarrayenvironmenttypedarrayslinkReactiveXes-shim APIflagnegativeexit-codefetchjshintstoragegatewayecmascriptES7writableamazonfpsframeroperating-systemhookformconsumebusydeep-copy@@toStringTagserializemoveCSSStyleDeclarationforEachreact animationvalidatecontainses6sortedcomputed-typesshimviewflatMapparsersetterjestvalidatorserviceprivate dataES2023back-endnamehas-owniteratorpurearktypeterminaloutputwindowqueueMicrotaskcheckmapreducechaies2016ES5css lessruntimetoArrayinternalobjectchinesemetadataacorneslintplugini18nArray.prototype.findLastinternal slotjson-schema-validatorhardlinks_.extendtslibworkflowfastcopyprefixinterruptsdirsqstoolsmonorepogroupByworkerfastclonemapsetdeep-clonetakeuser-streamscore-jscjkharmonydirectoryregular-expressionquerystringvaluecompilerroute53WebSocketsignoreshebangpyyamlmoduleprototypesharedarraybufferlruautoprefixerArray.prototype.includesSymbolObservablesjwtcallboundtypeofES2020progressschemeutilitiessesArray.prototype.flattendependenciesbannersignalspoint-freesomemomentjsonschemaendpoint$.extendreact-componentrouterobustserializerstyleUint32ArrayjsURLkinesistostringtaglibphonenumberECMAScript 2022concatimmerredux-toolkitdatacurriedUint16ArrayES2021expressionstringifieres2018css-in-jspinoeventEmitterhooksObject.isstringifycodesieassertstyled-componentsjQuery0beanstalkhttpsArray.prototype.filtermodulessyntaxerrorvalidfnmatchchromereactenumerableformatECMAScriptessuperagenttoStringTagtouchfile systemflagspreserve-symlinkspasswordconfigserializationpushRFC-6455censoremrStreamsextendebsperformantESstreamfast-deep-clonelinuxwindowsbrowserprotocol-buffersmkdirscolourtoSortedjavascriptvpcFunction.prototype.nameperformanceSetECMAScript 3positiveunicoderegular expressionstableMappropObject.keyslesscssinstallRxcallbacksigtermshamautoscalings3ECMAScript 7es-shimsjsdomgesturesprotowarningTypedArraytoolkitclassnamestesterreduxsigintparsecallbindsymlinkbindInt8ArrayeveryinvarianttextlazytelephoneObject.fromEntriesomitUnderscoreeventDispatcherminimalbootstrap lessjoicolumnstddreact posefull-widthpicomatchpruneio-tsflattenimportdescriptorsECMAScript 5uninstallttyregexspringhasOwn256Float64ArrayinstallerutilES8getintrinsicInt32ArraytacitdynamodbvalueselectronpatchReactiveExtensionslivemixinsglacierFloat32Arraytypees-abstractprocesshotshareddomglobstructuredClonekoreanTypeBoxECMAScript 2016zxautharraybufferES6transpilecloudsearchsortajaxfunctionalcssHyBifluxfromglobal this valuepromisees2015cryptoextracommand-linevestmockingpropertieskeyspathYAMLwhichroutingbundlingbinariesspinnerlanguageauthenticationawesomesauceString.prototype.matchAlles2017iterationaccessibilityStreamWeakMapselfcommanderjsdiffletloadingequaltesteslint-pluginfast-clonestartercolorjson-schema-validationyupcachefunctionmkdirpsequencesuperstructwriteisConcatSpreadableeslintfullwidthexitSystem.globalcall-boundWebSocketPushgraphqlimportexportestreefunction.lengthObservableESnext-0deletespinnersstyleguidefullmobile[[Prototype]]Array.prototype.containstypedredactwaapiiamconstdeeptraverseexecfilesymbolsagentcss nestinghelperECMAScript 2018utilsreadstylesheetweaksetaccessorquerycopychildmatchAlltrimStartmergesnsfast-deep-copyformattingcollectioninspect
4.10.98

12 months ago

4.10.97

12 months ago

4.10.96

12 months ago

4.10.95

1 year ago

4.10.94

1 year ago

4.10.93

1 year ago

4.10.92

1 year ago

4.10.91

1 year ago

4.10.90

1 year ago

4.10.89

1 year ago

4.10.88

1 year ago

3.10.88

1 year ago

3.10.87

1 year ago

3.10.86

1 year ago

3.10.85

1 year ago

3.10.84

1 year ago

2.10.84

1 year ago

2.10.83

1 year ago

2.10.82

1 year ago

2.10.81

1 year ago

2.10.80

1 year ago

2.10.79

1 year ago

2.10.78

1 year ago

2.10.77

1 year ago

2.10.76

1 year ago

2.10.75

1 year ago

1.10.75

1 year ago

1.10.74

1 year ago

1.10.73

1 year ago

1.10.72

1 year ago

1.10.71

1 year ago

1.10.70

1 year ago

1.10.69

1 year ago

1.9.69

1 year ago

1.9.68

1 year ago

1.9.67

1 year ago

1.9.66

1 year ago

1.9.65

1 year ago

1.9.64

1 year ago

1.8.64

1 year ago

1.8.63

1 year ago

1.7.63

1 year ago

1.7.62

1 year ago

1.7.61

1 year ago

1.7.60

1 year ago

1.7.59

1 year ago

1.7.58

1 year ago

1.7.57

1 year ago

1.7.56

1 year ago

1.6.56

1 year ago

1.6.55

1 year ago

1.6.54

1 year ago

1.6.53

1 year ago

1.6.52

1 year ago

1.6.51

1 year ago

1.6.50

1 year ago

1.6.49

1 year ago

1.6.48

1 year ago

1.5.48

1 year ago

1.5.47

1 year ago

1.5.46

1 year ago

1.5.45

1 year ago

1.5.44

1 year ago

1.5.43

1 year ago

1.5.42

1 year ago

1.5.41

1 year ago

1.5.40

1 year ago

1.5.39

1 year ago

1.5.38

1 year ago

1.5.37

1 year ago

1.5.36

1 year ago

1.5.35

1 year ago

1.5.34

1 year ago

1.5.33

1 year ago

1.5.32

1 year ago

1.5.31

1 year ago

1.5.30

1 year ago

1.5.29

1 year ago

1.5.28

1 year ago

1.5.27

1 year ago

1.5.26

1 year ago

1.5.25

1 year ago

1.4.25

1 year ago

1.4.24

1 year ago

1.4.23

1 year ago

1.4.22

1 year ago

1.4.21

1 year ago

1.4.20

1 year ago

1.4.19

1 year ago

1.4.18

1 year ago

1.4.17

1 year ago

1.4.16

1 year ago

1.4.15

1 year ago

1.4.14

1 year ago

1.3.14

1 year ago

1.3.13

1 year ago

1.2.13

1 year ago

1.2.12

1 year ago

1.2.11

1 year ago

1.2.10

1 year ago

1.2.9

1 year ago

1.2.8

1 year ago

1.2.7

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago