Node.js client for the unofficial Character AI API, an awesome website which brings characters to life with AI!
This repository is inspired by RichardDorian's unofficial node API. Though, I found it hard to use and it was not really stable and archived. So I remade it in javascript.
This project is not affiliated with Character AI in any way! It is a community project. The purpose of this project is to bring and build projects powered by Character AI.
If you like this project, please check their website.
- 👍 Fully written in Javascript and CommonJS (for max compatibility and ease of use)
- ⌚ Asynchronous requests
- 🗣️ Use conversations or use the API to fetch information
- 🧸 Easy to use
- 🔁 Active development
- 👤 Guest & token login support
npm install node_characterai
Basic guest authentication and message:
const CharacterAI = require("node_characterai");
const characterAI = new CharacterAI();
(async () => {
// Authenticating as a guest (use `.authenticateWithToken()` to use an account)
await characterAI.authenticateAsGuest();
// Place your character's id here
const characterId = "8_1NyR8w1dOXmI1uWaieQcd147hecbdIK7CeEAIrdJw";
const chat = await characterAI.createOrContinueChat(characterId);
// Send a message
const response = await chat.sendAndAwaitResponse("Hello discord mod!", true);
console.log(response);
// Use `response.text` to use it as a string
})();
Some parts of the API, like managing a conversation, requires you to be logged in using an accessToken
.
To get it, you can open your browser, go to the Character.AI website in localStorage
.
To do so:
- Open the Character.AI website in your browser (https://beta.character.ai)
- Open the developer tools (F12, Ctrl+J, or Cmd+J)
- Go to the
Application
tab - Go to the
Storage
section and click onLocal Storage
- Look for the
@@auth0spajs@@::dyD3gE281MqgISG7FuIXYhL2WEknqZzv::https://auth0.character.ai/::openid profile email offline_access
key - Open the body with the arrows and copy the access token
When using the package, you can:
- Login as guest using
authenticateAsGuest()
- for mass usage or testing purposes - Login with your account or a token using
authenticateWithToken()
- for full features and unlimited messaging
You can find your character ID in the URL of a Character's chat page.
For example, if you go to the chat page of the character Test Character
you will see the URL https://beta.character.ai/chat?char=8_1NyR8w1dOXmI1uWaieQcd147hecbdIK7CeEAIrdJw
.
The last part of the URL is the character ID:
WARNING: This part is currently experimental, if you encounter any problem, open an Issue.
🖼️ Character AI has the ability to generate and interpret images in a conversation. Some characters base this concept into special characters, or maybe use it for recognizing images, or to interact with a character and give it more details on something: the possibilities are endless.
💁 Most of the Character AI image features can be used like so:
// Most of these functions will return you an URL to the image
await chat.generateImage("dolphins swimming in green water");
// If no mime type (file extension) is specified, the script will automatically detect it
await chat.uploadImage("https://www.example.com/image.jpg", "image/jpeg");
await chat.uploadImage("./photos/image.jpg");
// Other supported types are Buffers, Readable Streams, File Paths, and URLs
await chat.uploadImage(imageBuffer, "image/png");
await chat.sendAndAwaitResponse({ text: "What is in this image?", { image_rel_path: "https://www.example.com/coffee.jpg" } }, true);
// Including the image relative path is necessary to upload an image
Props to @creepycats for implementing most of this stuff out
Problem | Answer |
---|---|
❌ Token was invalid | Make sure your token is actually valid and you copied your entire token (its pretty long). |
On most systems, puppeteer will automatically locate Chromium. But on certain distributions, the path has to be specified manually. This warning occurs if node_characterai could not locate Chromium on linux (/usr/bin/chromium-browser), and will error if puppeteer cannot locate it automatically. See this for a fix. |
|
😮 Why are chromium processes opening? | This is because as of currently, the simple fetching is broken and I use puppeteer (a chromium browser control library) to go around cloudflare's restrictions. |
👥 authenticateAsGuest() doesn't work |
See issue #14. |
🦒 Hit the max amount of messages? | Sadly, guest accounts only have a limited amount of messages before they get limited and forced to login. See below for more info 👇 |
🪐 How to use an account to mass use the library? | You can use conversations, a feature introduced in 1.0.0 , to assign to users and channels. To reproduce a conversation, use OOC (out of character) to make the AI think you're with multiple people. See an example here: (Disclaimer: on some characters, their personality will make them ignore any OOC request). |
📣 Is this official? | No, this project is made by a fan of the website and is unofficial. To support the developers, please check out their website. |
😲 Did something awesome with node_characterai ? |
Please let me know! |
✉️ Want to contact me? | See my profile |
💡 Have an idea? | Open an issue in the Issues tab |
➕ Other issue? | Open an issue in the Issues tab |
- In the
Client
class, you can access theRequester
class and define puppeteer or other variables related to how CharacterAI will work usingcharacterAI.requester.(property)
. Also, anything here is subject to change, so make sure to update the package frequently.
Change the property .usePlus
from the requester and if needed, change .forceWaitingRoom
.
For example:
// Default is `false`
characterAI.requester.usePlus = true;
Around a few months ago, the package only required the node-fetch
module to run. The package was made using simple API requests.
However, over time, Cloudflare started fighting against scraping and bots, which also made it almost impossible for anyone to use this package.
This is where in versions 1.1 and higher, puppeteer is used (which uses a chromium browser) to make requests with the API.
👉 IMPORTANT: do the changes before you initialize your client!
In the CharacterAI class, you can access the requester and define the .puppeteerPath
variable or other arguments, and the properties include (and are subject to change in future versions):
// Chromium executable path (in some linux distributions, /usr/bin/chromium-browser)
puppeteerPath;
// Default arguments for when the browser launches
puppeteerLaunchArgs;
// Boolean representing the default timeout (default is 30000ms)
puppeteerNoDefaultTimeout;
// Number representing the default protocol timeout
puppeteerProtocolTimeout;
🐧 For linux users, if your puppeteer doesn't automatically detect the path to Chromium, you will need to specify it manually.
To do this, you just need to set puppeteerPath
to your Chromium path:
characterAI.puppeteerPath = "/path/to/chromium-browser";
On Linux, you can use the which
command to find where Chromium is installed:
$ which chromium-browser # or whatever command you use to launch chrome
💡 I recommend that you frequently update this package for bug fixes and new additions.
❤️ This project is updated frequently, always check for the latest version for new features or bug fixes.
🚀 If you have an issue or idea, let me know in the Issues section.
📜 If you use this API, you also bound to the terms of usage of their website.
(real)coloride - 2023, Licensed MIT.