1.7.64 • Published 12 months ago

@zitterorg/maxime-asperiores v1.7.64

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
mergepositivesymbolString.prototype.matchAllpostcsses2017typesafeinstallhookformfunctionswaitendpointstyleguideshebangkeysfixed-widthparentswhatwgspringproxyES6fantasy-landECMAScript 2021Uint8ClampedArrayspinnerregularpackageECMAScript 2016colourglobalThisInt16ArraytoSortedjshintslotgetintrinsicformconsolereactaccessibilitymetadatavalidationframerviewzerostreamssetmoveawesomesaucemochaArrayBufferfeedcommand-linetakekinesisimportexporttranspileArray.prototype.containsmapprivate dataequalityglobalnames__proto__logjson-schema-validatorvalidateStyleSheetroute53rdsYAMLtypeerrorappES2015System.globalimportecmascriptcommandjson-schemai18nreact animationfunction.lengthphoneexpressURLSearchParamsECMAScript 2023trimStartclipatchjsonschemaObject.entriesremovelibphonenumberclassesponyfillreal-timeinferenceform-validationutilitiesSetarraybufferreadpyyamlBigInt64Arraybabel-core-0vestbannereslintpluginobjectcjkchromiumshamloggerfsparsestringifierECMAScript 2018envastes-shimsserializationconcatMapMicrosoftcensorECMAScript 2019nopeloggingECMAScript 7deepcloneredacttoolstacitreducercharacterbinariessharedeselbreversedwafforkawsfilterchannelArray.prototype.flatMapsetImmediateatomcommanderhas-ownflagObservablesES7pluginredirectoffsetclassnametoobjectlrutestingconfigurabletypeES2016workeremrworkflowassertvaluesjasminejsonoptimistdomsuperstructHyBirestasciiarktypemulti-packagebrowserlistmatchAllhigher-orderfulltrimworkspace:*ECMAScript 3globeventDispatchershellfindLastsymbolspushminimalpackage managerperformanceES8columnsStreamcollection.es6diffcompilerglobal objectjschaicollectionboundpostcss-pluginjestprotoES2022spinnersfast-clonexmlserializeObjecttranspilersimpledbcloudwatchhasOwnPropertyguidfinduplocationupvarslanguageidlepackage.jsonsideES2017fasttypedrmexecfilekarma6to5textletcall-boundnegativeoptionavaistanbulbeanstalkcurlwgetpathObject.isECMAScript 6east-asian-widthflatMapvalue.envassertsassertionArrayBuffer.prototype.sliceargumentjoiRFC-6455japanesegenericsdom-testing-libraryrm -rfec2es2016setPrototypeOfgetuuididentifiersfullwidthdeletecolorgroupBynpmFunction.prototype.nametrimRighttoReverseddependenciesstylesrssrulespromiseES5deterministicprotobufCSSsomedirectorywhichbyteOffsetregular expressionses5poseRegExp#flagsqueueMicrotaskfindartweakmapReactiveExtensionsFloat32Arrayhelpersfull-widthdayjs@@toStringTagtc39fromvalidcodesArrayBuffer#sliceArray.prototype.findLastIndexArray.prototype.flatteninternalchinesechildreact-testing-libraryflattenweaksetairbnbcompareexpressionaccessortrimLeft[[Prototype]]reduxfetchxtermflagsmatchgetPrototypeOfinvariantsqsglobal this valuewindowenderconfigspecbddformatgetopttouchvisualbindreadablekeypropertyreact-hooksbabelJSONdescriptorsdefinetesterJSON-SchemapolyfillObject.keysdragCSSStyleDeclarationconsthasOwnqueueWeakMapassignObject.valuesansiwidthprunebinarygesturesjsdomjson-schema-validationutilsnumberURLstoragegatewayhttpsentriesimmerdeepcopy256self3dzodreversedynamodbSymbolcloudtrailrgbresolveBigUint64Arrayhttpscheme-validationtslibwarningsource mapoptimizerrouterArrayincludeswritesubprocesspackagesstringmanagerindicatortyped arrayrestfulUint32ArrayECMAScript 2015formattingrandomTypedArrayequal_.extendterminalcode pointsrm -fromites-abstractWebSocketiamrfc4122eventEmittercallboundcore-jscontainsapitelephonerangeerrorvariablespopmotionnegative zeroweblengthjsxkoreanisConcatSpreadableyamlbrowsertapTypeScriptlookignoreuninstallcircularsharedarraybufferpureReflect.getPrototypeOfArray.prototype.findLastcopyharmonyreusesettingsreact-hook-formimmutabledataieES2021emitl10nRxJSidRxio-tsmonorepoES2023eslintbyteLengtha11ymobiletransformtraverseclonefpdebugfastifycloudformationdataViewgraphqlprocessrecursivestylingnodejsmatchescloudfrontbundlingdatemodulesinstallertapeissyntaxstarteragentmrumodulevalidatorbusydeepttychromeextenddataviewnameqsschemethreegitignoreobjmake direspree
1.7.64

12 months ago

1.7.60

12 months ago

1.7.61

12 months ago

1.7.62

12 months ago

1.7.63

12 months ago

1.7.57

12 months ago

1.7.58

12 months ago

1.7.59

12 months ago

1.7.54

12 months ago

1.7.55

12 months ago

1.7.56

12 months ago

1.7.50

12 months ago

1.7.51

12 months ago

1.7.52

12 months ago

1.7.53

12 months ago

1.1.29

1 year ago

1.1.28

1 year ago

1.1.30

1 year ago

1.2.40

1 year ago

1.6.48

1 year ago

1.1.34

1 year ago

1.6.47

1 year ago

1.1.33

1 year ago

1.1.32

1 year ago

1.6.49

12 months ago

1.1.31

1 year ago

1.1.36

1 year ago

1.1.35

1 year ago

1.6.50

12 months ago

1.5.47

1 year ago

1.4.44

1 year ago

1.4.43

1 year ago

1.4.46

1 year ago

1.4.45

1 year ago

1.4.47

1 year ago

1.1.19

1 year ago

1.1.18

1 year ago

1.1.17

1 year ago

1.3.42

1 year ago

1.3.43

1 year ago

1.3.40

1 year ago

1.3.41

1 year ago

1.1.23

1 year ago

1.1.22

1 year ago

1.1.21

1 year ago

1.1.20

1 year ago

1.2.38

1 year ago

1.1.27

1 year ago

1.2.39

1 year ago

1.1.26

1 year ago

1.2.36

1 year ago

1.1.25

1 year ago

1.2.37

1 year ago

1.1.24

1 year ago

1.1.16

1 year ago

1.1.12

1 year ago

1.1.15

1 year ago

1.1.14

1 year ago

1.1.13

1 year ago

1.1.9

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.8

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.1.2

1 year ago

1.1.1

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago