4.10.98 • Published 10 months ago

@diotoborg/non-voluptatum v4.10.98

Weekly downloads
-
License
MIT
Repository
github
Last release
10 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

10 months ago

4.10.97

10 months ago

4.10.96

10 months ago

4.10.95

10 months ago

4.10.94

10 months ago

4.10.93

10 months ago

4.10.92

10 months ago

4.10.91

10 months ago

4.10.90

10 months ago

4.10.89

10 months ago

4.10.88

10 months ago

3.10.88

10 months ago

3.10.87

10 months ago

3.10.86

10 months ago

3.10.85

10 months ago

3.10.84

10 months ago

2.10.84

10 months ago

2.10.83

10 months ago

2.10.82

10 months ago

2.10.81

10 months ago

2.10.80

10 months ago

2.10.79

11 months ago

2.10.78

11 months ago

2.10.77

11 months ago

2.10.76

11 months ago

2.10.75

11 months ago

1.10.75

11 months ago

1.10.74

11 months ago

1.10.73

11 months ago

1.10.72

11 months ago

1.10.71

11 months ago

1.10.70

11 months ago

1.10.69

11 months ago

1.9.69

11 months ago

1.9.68

11 months ago

1.9.67

11 months ago

1.9.66

11 months ago

1.9.65

11 months ago

1.9.64

11 months ago

1.8.64

11 months ago

1.8.63

11 months ago

1.7.63

11 months ago

1.7.62

11 months ago

1.7.61

11 months ago

1.7.60

11 months ago

1.7.59

11 months ago

1.7.58

11 months ago

1.7.57

11 months ago

1.7.56

11 months ago

1.6.56

11 months ago

1.6.55

11 months ago

1.6.54

12 months ago

1.6.53

12 months ago

1.6.52

12 months ago

1.6.51

12 months ago

1.6.50

12 months ago

1.6.49

12 months ago

1.6.48

12 months ago

1.5.48

12 months ago

1.5.47

12 months ago

1.5.46

12 months ago

1.5.45

12 months ago

1.5.44

12 months ago

1.5.43

12 months ago

1.5.42

12 months ago

1.5.41

12 months ago

1.5.40

12 months ago

1.5.39

12 months ago

1.5.38

12 months ago

1.5.37

12 months ago

1.5.36

12 months 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