The CharacterAI website has finally been updated to fix the wasteful serialization of conversation histories. Unfortunately, that change has broken this userscript.
Due to time constraints I am no longer maintaining this repository, and instead recommend that you look for other tools to export your CAI conversations. One such tool I've been suggested is a browser extension called "CAI Tools". I have not tested it myself and as such cannot vouch for it - but if you need a replacement for this userscript, I suggest searching for it and giving it a shot.
This userscript allows you to download your saved messages with any bot you've ever talked to, given you can reach their chat history page. If you're a bot creator, it also allows you to separately download your bot's definitions.
- Install a userscript manager.
- Personally I tested this with Violentmonkey on Firefox, but I think Greasemonkey and Tampermonkey should work as well.
- Install the userscript from here.
- Now, while you're talking to a character, click on "View Saved Chats" to go to their histories page:
- After a few seconds, a
Download
link should pop up next to the "Your past conversations with so-and-so" header: - Clicking on the link will download a
.json
file containing the bot's basic info (name, description, greeting) and all the interactions you've ever had with it. - If you're a bot creator, you can also head over into the Character Editor to download a bot's definitions:
-
If you've never used the "Save and Start New Chat" feature, you won't have the "View Saved Chats" option shown in the first screenshot.
-
That's fine, it just means you'll need to manually access the histories page by replacing the
/chat
path with/histories
in the URL. For example, if you're at:https://beta.character.ai/chat?char={{BOT_ID_HERE}}
Just rewrite the URL so it reads:
https://beta.character.ai/histories?char={{BOT_ID_HERE}}
And you'll reach the page that should show the
Download
link.
-
-
The script attempts to anonymize the dumped data (it scrubs known sensitive fields and attempts to replace any instances of your name within messages), but if you're paranoid, you should open the downloaded JSON and search for your username/email/display name just to make sure.
- v1.4:
- Fixed a bug where the
Download
link wouldn't show up for a given bot if you had a conversation with it where all of the messages were deleted.
- Fixed a bug where the
- v1.3:
- Implemented support for downloading a character's definitions from the Character Editor page.
- Fixed a bug where the
Download
link was not showing up on some bots that had trailing whitespace in their names (e.g.2B
).
- v1.2:
- Fixed a bug where the user's display name was not being redacted inside messages.
- v1.1:
- File was renamed so userscript managers pick up that it's a userscript and offer to install automatically.
- If you installed v1.0, you need to manually uninstall and re-install from the new link.
- v1.0:
- Initial release.
If the Download
link doesn't show up after a few seconds and you're on the proper page, check the DevTools console for errors.
Usually, failures are caused by some browser extension or configuration that stops the userscript from loading its external dependencies properly. However, there are two other known failure modes that seem to be somewhat common:
- Sometimes a character seems to have mismatched names depending on which API endpoint is being hit. In those cases, you'll need to manually download the response data instead of using the userscript, as described here.
- For whatever reason, some people report certain combinations of browser/OS/userscript managers not working, but upon switching to another browser/userscript manager everything works fine. If the download link never shows up, consider trying another browser or userscript manager (or both).