Stuck in docs
Closed this issue · 36 comments
Help me team, give me a code or assist me on how to chat to character using a specific chatId, I'm sending messages using .sendMessage and yes it's sending messages but where's the reply output? Hep me team to use it.
I'm using 2.0 version
And trust me, docs are really really confusing
Oh wow thank you for telling me about that. I will definitely rewrite the documentation as I didn't really indicate how to do that.
The reply output is in .content
. When you do sendMessage, you get a Message
class object with candidates (the message variants 0 -> 30) and content will give you the current one.
Oh wow thank you for telling me about that. I will definitely rewrite the documentation as I didn't really indicate how to do that.
The reply output is in
.content
. When you do sendMessage, you get aMessage
class object with candidates (the message variants 0 -> 30) and content will give you the current one.
Thank you for your fast response,
Just to be sure can you edit this code according to your answer?
async function run () {
const { CharacterAI } = require("node_characterai");
const characterAI = new CharacterAI();
characterAI.authenticate("123xxx").then(async r=> {
const character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc");
const convo = await character.DM("b670694c-aa1b-45c9-b958-xxx");
const dms = await convo.sendMessage("test");
console.log(dms);
});
}
run();
(Sorry the code is bit messy because it's a testing version)
This should be okay.
// no need to reimport twice!
const { CharacterAI } = require("node_characterai");
const characterAI = new CharacterAI();
// no need for a function, the callback does things fine!
characterAI.authenticate("123xxx").then(async () => {
// get your character
const character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc");
// dm it
const dm = await character.DM("b670694c-aa1b-45c9-b958-xxx");
// send it a message
const message = await dm.sendMessage("test");
// get its contents, or do more!
console.log(message.content);
});
Hopefully this helps you out! Thank you for your feedback.
This should be okay.
// no need to reimport twice! const { CharacterAI } = require("node_characterai"); const characterAI = new CharacterAI(); // no need for a function, the callback does things fine! characterAI.authenticate("123xxx").then(async () => { // get your character const character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc"); // dm it const dm = await character.DM("b670694c-aa1b-45c9-b958-xxx"); // send it a message const message = await dm.sendMessage("test"); // get its contents, or do more! console.log(message.content); });Hopefully this helps you out! Thank you for your feedback.
Okay great working as fluid!
Now if my ears are hungry for her voice speech, then how can I retrieve it?
For the same message
If you are talking about Text to speech as of this feature:
Use message.getTTSUrl(voiceId)
or message.getTTSUrlWithQuery("voice name")
to get the link to an mp3 file URL that you can use to do whatever you want with. You will have to manually download the file if needed.
Note: I will update the README.md
to include instructions to do that, as I missed the opportunity to demonstrate it.
But as of the real time call streaming feature, while it is functional in its aspect, it is currently broken by dependency libraries, which is something I'm actively trying to fix. See here to understand: #180 (comment)
I'm deeply sorry for the inconvenience caused, but it will be fixed by the time the beta is over. Speaking of which. Make sure to update frequently if you wish to know when the beta phase is over and stable is out.
Cheers
If you are talking about Text to speech as of this feature:
Use
message.getTTSUrl(voiceId)
ormessage.getTTSUrlWithQuery("voice name")
to get the link to an mp3 file URL that you can use to do whatever you want with. You will have to manually download the file if needed.Note: I will update the
README.md
to include instructions to do that, as I missed the opportunity to demonstrate it.But as of the real time call streaming feature, while it is functional in its aspect, it is currently broken by dependency libraries, which is something I'm actively trying to fix. See here to understand: #180 (comment)
I'm deeply sorry for the inconvenience caused, but it will be fixed by the time the beta is over. Speaking of which. Make sure to update frequently if you wish to know when the beta phase is over and stable is out.
Cheers
If I'm not wrong, as of present time sending images to character using codes is useless right..? Because there's no such feature available in cai in normal chats...
Using other modules when I sent an image to the character her reaction was kinda---
API endpoint response:
the image url i inserted:
If I'm not wrong, as of present time sending images to character using codes is useless right..? Because there's no such feature available in cai in normal chats...
CharacterAI used to support image uploading since beta and was effectively removed from the UI.
However, the argument still remains when sending messages, but I have not properly designed the CAIImage
class to be used manually like that as its a system class and used for the images in CharacterAI directly from their servers and cache. However, if you believe this is an important feature, I will open the image class to make it available to the public to use.
(Or basically, you cannot make custom images, only fetch them because of how I designed them at the current moment, but I am willing to redesign to make it friendly to use and make your own CAIImage
s. Please let me know.
And effectively, it is possible for the character to still react to the image, but I have not tested the feature out, I simply let it open for usage, because it was in the arguments when I was working on the method.
Cheers
If I'm not wrong, as of present time sending images to character using codes is useless right..? Because there's no such feature available in cai in normal chats...
CharacterAI used to support image uploading since beta and was effectively removed from the UI.
However, the argument still remains when sending messages, but I have not properly designed the
CAIImage
class to be used manually like that as its a system class and used for the images in CharacterAI directly from their servers and cache. However, if you believe this is an important feature, I will open the image class to make it available to the public to use.(Or basically, you cannot make custom images, only fetch them because of how I designed them at the current moment, but I am willing to redesign to make it friendly to use and make your own
CAIImage
s. Please let me know.And effectively, it is possible for the character to still react to the image, but I have not tested the feature out, I simply let it open for usage, because it was in the arguments when I was working on the method.
Cheers
I can't take this decision sir because cai image scanning capability is really weak right now, anyways thanks for assist I'm really thankful to you! Closing this issue because I'm good now. I'll come again if I stuck anywhere.
I can't take this decision sir because cai image scanning capability is really weak right now, anyways thanks for assist I'm really thankful to you! Closing this issue because I'm good now. I'll come again if I stuck anywhere.
Thank you for your meaningful feedback! It will help others in getting a clearer documentation and start aswell. Feel free to re-open the issue anytime or make a new one if you need to.
Again, this library is designed to be developer friendly, so please let me know your honest feedback and ideas.
Cheers, and good luck with your project.
To conclude, I wrote and added the chapter to help people with the same issue. The other README.md
rework is in the works.
https://github.com/realcoloride/node_characterai/blob/2.0/README.md#getting-voice-messages
Cheers
To conclude, I wrote and added the chapter to help people with the same issue. The other
README.md
rework is in the works. https://github.com/realcoloride/node_characterai/blob/2.0/README.md#getting-voice-messagesCheers
The issue is, docs are clean but not rookie friendly. Like there's not a specific gate to start from.
When I saw your doc i understood:
- Installation
- Connection and login
- Get inboxes
- ---- (message sending code not found)
- ---- (voice code not found)
In simple words step by step guide
To conclude, I wrote and added the chapter to help people with the same issue. The other
README.md
rework is in the works. https://github.com/realcoloride/node_characterai/blob/2.0/README.md#getting-voice-messagesCheers
Heyo sir!
Maybe you're not using pupeteer
in 2.0
anymore, so now it's capable enough to handle more than 1 user at a time using different chatId?
If no then how's it possible to handle more than one user.
And
Can I use pooling connection? Like, reusing exiting connection to avoid again and again login!? Like this:
let character;
const login = async () => {
const { CharacterAI } = require("node_characterai");
const characterAI = new CharacterAI();
await characterAI.authenticate("123xxx");
character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc");
}
login();
router.get('/', async (req, res) => {
const prompt = req.query.prompt;
if (!character) {
await login();
}
const dm = await character.DM("b670694c-aa1b-45c9-b958-xxx");
const message = await dm.sendMessage(prompt);
res.status(200).json({
status: true,
content: message.content,
});
});
Maybe you're not using
pupeteer
in2.0
anymore
Hello, to answer you first of yes puppeteer has been completely removed from2.0
. This is achieved by using the mobile endpoints, a long time requested feature (#104).
Second yes, you can handle multiple conversations at a time. You just simply need to store the conversation.
So, to help with your code:
// like i said, you don't need to require it multiple times.
// you will just make a memory leak. requiring is only once!
const { CharacterAI } = require("node_characterai");
const characterAI = new CharacterAI();
// store them for later. this is important!
let character;
let chat;
// you can use `then` for asynchronous calls in non asynchronous contexts.
// TIP: using (async() => { <insert code here> })();
// will guarantee everything to be async.
// so feel free to use that instead if you need to.
characterAI.authenticate("123xxx").then(async() => {
character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc");
chat = await character.DM("b670694c-aa1b-45c9-b958-xxx");
});
router.get('/', async (req, res) => {
const prompt = req.query.prompt;
// same thing here, you do not need to always create a DM.
// doing it over and over and over again will cause a memory leak.
const message = await dm.sendMessage(prompt);
res.status(200).json({
status: true,
content: message.content,
});
});
The rest is fine.
Now to continue with your request,
If no then how's it possible to handle more than one user.
This was always possible with 1.x
versions, but for 2.0
too the way you will do is by storing your chats somewhere.
Simply fetch them if needed, then you have to use them when needed. If you need more information about that implementation, let me know.
The schema should be:
- Step 1: Fetch your conversation somewhere and store it. This is your DM. Store it somewhere.
- Step 2: When prompted, grab your DM.
- Step 3: Send a message.
fetch -> store -> grab -> send
Also, as I see this is a regular occurrence, I will try to include the issues you face here to the README.md
to help with others out with the same problems you encounter.
Please let me know if you need help with anything else.
Cheers
Maybe you're not using
pupeteer
in2.0
anymore
Hello, to answer you first of yes puppeteer has been completely removed from2.0
. This is achieved by using the mobile endpoints, a long time requested feature (#104).Second yes, you can handle multiple conversations at a time. You just simply need to store the conversation.
So, to help with your code:
// like i said, you don't need to require it multiple times. // you will just make a memory leak. requiring is only once! const { CharacterAI } = require("node_characterai"); const characterAI = new CharacterAI(); // store them for later. this is important! let character; let chat; // you can use `then` for asynchronous calls in non asynchronous contexts. // TIP: using (async() => { <insert code here> })(); // will guarantee everything to be async. // so feel free to use that instead if you need to. characterAI.authenticate("123xxx").then(async() => { character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc"); chat = await character.DM("b670694c-aa1b-45c9-b958-xxx"); }); router.get('/', async (req, res) => { const prompt = req.query.prompt; // same thing here, you do not need to always create a DM. // doing it over and over and over again will cause a memory leak. const message = await dm.sendMessage(prompt); res.status(200).json({ status: true, content: message.content, }); });The rest is fine.
Now to continue with your request,
If no then how's it possible to handle more than one user.
This was always possible with
1.x
versions, but for2.0
too the way you will do is by storing your chats somewhere. Simply fetch them if needed, then you have to use them when needed. If you need more information about that implementation, let me know.The schema should be:
- Step 1: Fetch your conversation somewhere and store it. This is your DM. Store it somewhere.
- Step 2: When prompted, grab your DM.
- Step 3: Send a message.
fetch -> store -> grab -> send
Also, as I see this is a regular occurrence, I will try to include the issues you face here to the
README.md
to help with others out with the same problems you encounter.Please let me know if you need help with anything else.
Cheers
I'm storing chatIds in external SQL, and planning to write my code like this, (already tested with other modules, it's working fine)
const { CharacterAI } = require("node_characterai");
const characterAI = new CharacterAI();
let character;
(async () => {
await characterAI.authenticate("123xxx");
character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc");
})();
router.get('/', async (req, res) => {
const uid = req.query.id;
const prompt = req.query.prompt;
if (!uid || !prompt) {
return res.status(400).json({ status: false, message: "Missing uid or prompt." });
}
/* getChatId is a function which retrieves chatIds stored in SQL */
/* if the chatId of a specific user isn't available it'll return false */
let chatId = await getChatId(uid);
if (!chatId) {
/* Can you tell me the function to create new chat? */
chatId = /* chatId of of the chat created above */
/* using userId (any kind of string, number or anything), and chatId
we can assign a separate chatId to seprate users */
await getChatId(uid, chatId);
}
const chat = await character.DM(chatId);
const message = await chat.sendMessage(prompt);
res.status(200).json({
status: true,
content: message.content,
});
});
Hello, to create a new DM, use character.createDM()
.
Cheers
Using this logic suggested by you
// like i said, you don't need to require it multiple times.
// you will just make a memory leak. requiring is only once!
const { CharacterAI } = require("node_characterai");
const characterAI = new CharacterAI();
// store them for later. this is important!
let character;
let chat;
// you can use `then` for asynchronous calls in non asynchronous contexts.
// TIP: using (async() => { <insert code here> })();
// will guarantee everything to be async.
// so feel free to use that instead if you need to.
characterAI.authenticate("123xxx").then(async() => {
character = await characterAI.fetchCharacter("aI_74AVi9JzuXGnUURRIePw4zvKT2dyvnaANcug2TJc");
chat = await character.DM("b670694c-aa1b-45c9-b958-xxx");
});
router.get('/', async (req, res) => {
const prompt = req.query.prompt;
// same thing here, you do not need to always create a DM.
// doing it over and over and over again will cause a memory leak.
const message = await dm.sendMessage(prompt);
res.status(200).json({
status: true,
content: message.content,
});
});
Getting this issue on Koyeb :
0|cai-anya | Server running on port: http://localhost:8000
Instance is healthy. All health checks are passing.
0|cai-anya | Error: Failed opening websocket. Error:Error: Could not get edge rollout
0|cai-anya | at CharacterAI.openWebsockets (/cai-anya/node_modules/node_characterai/dist/client.js:94:19)
0|cai-anya | at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
0|cai-anya | at async CharacterAI.authenticate (/cai-anya/node_modules/node_characterai/dist/client.js:341:9)
0|cai-anya | Error: Failed opening websocket. Error:Error: Could not get edge rollout
0|cai-anya | at CharacterAI.openWebsockets (/cai-anya/node_modules/node_characterai/dist/client.js:94:19)
0|cai-anya | at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
0|cai-anya | at async CharacterAI.authenticate (/cai-anya/node_modules/node_characterai/dist/client.js:341:9)
Compiler pointing this codeline;
await characterAI.authenticate("123xxx");
/* - - - OR - - - */
characterAI.authenticate("123xxx").then(async () => /* logic */);
Missing package or it's just my mistake?
- Working fine on codespaces.
- Vercel asking for libportaudio2 package (not supported)
- Koyeb showing this error
This is the line of code in question.
https://github.com/realcoloride/node_characterai/blob/2.0/src/client.ts#L83
Basically, it is not supposed to happen.
This is an issue caused by what you see on your end, maybe cloudflare is blocking you? You should try to do this:
fetch("https://character.ai/") // or axios, make a `GET` request.
// in the response headers, look for `set-cookie`, you need to find the `edge-rollout` cookie.
And see if you're able to do it in the first place, look for the status code and response. And if the cookie shows up in the response headers.
This is the line of code in question. https://github.com/realcoloride/node_characterai/blob/2.0/src/client.ts#L83
Basically, it is not supposed to happen.
This is an issue caused by what you see on your end, maybe cloudflare is blocking you? You should try to do this:
fetch("https://character.ai/") // or axios, make a `GET` request. // in the response headers, look for `set-cookie`, you need to find the `edge-rollout` cookie.And see if you're able to do it in the first place, look for the status code and response. And if the cookie shows up in the response headers.
Where to do it? On koyeb or local machine.
Do it everywhere you get the error on.
Do it everywhere you get the error on.
Going to use this code, wait!
(async () => {
try {
const response = await fetch("https://character.ai/", { method: "GET", credentials: "include" });
const headers = response.headers;
const setCookieHeader = headers.get('set-cookie');
if (setCookieHeader) {
console.log("Set-Cookie Header:", setCookieHeader);
const cookies = setCookieHeader.split(';').map(cookie => cookie.trim());
const edgeRollout = cookies.find(cookie => cookie.startsWith("edge-rollout="));
if (edgeRollout) {
console.log("Found edge-rollout cookie:", edgeRollout);
} else {
console.log("edge-rollout cookie not found.");
}
} else {
console.log("No Set-Cookie header in the response.");
}
} catch (error) {
console.error("Error fetching the URL:", error);
}
})();
Koyeb
0|anya-v2 | Server running on port: http://localhost:8000
Instance is healthy. All health checks are passing.
0|anya-v2 | Set-Cookie Header: AMP_39bbdcaee6=JTdCJTIyZGV2aWNlSWQlMjIlM0ElMjIxNDMyNmI0MS1jMDhhLTQ3OTUtOTJjOS05OWM2MGE1YzU3ZGUlMjIlN0Q; Max-Age=31536000000; Domain=.character.ai; Path=/; SameSite=Lax, edge_rollout=NaN; Max-Age=300; Domain=character.ai; Path=/; HttpOnly; Secure; Priority=Low; SameSite=Lax, __cf_bm=yk.TUDWcQn5rvjsjIhoXz5t6Tsm_gK6n7t1RiiEUu0M-1734627729-1.0.1.1-Uc6Zh83TNppbfvXt0v7MNXeN.FnUrCD7khha.05PrwE.kxRoG4Kl1vypn1qh7vSmrkf9Crqcm_EP6vaAuHwKhg; path=/; expires=Thu, 19-Dec-24 17:32:09 GMT; domain=.character.ai; HttpOnly; Secure; SameSite=None
0|anya-v2 | edge-rollout cookie not found.
Termux
Server running on port 8080
Set-Cookie Header: AMP_39bbdcaee6=JTdCJTIyZGV2aWNlSWQlMjIlM0ElMjJkMTRlMjA0Yi0zNzc1LTQwNGUtOGE0Zi1hYzE2Yzc4MzQ4NmYlMjIlN0Q; Max-Age=31536000000; Domain=.character.ai; Path=/; SameSite=Lax, edge_rollout=NaN; Max-Age=300; Domain=character.ai; Path=/; HttpOnly; Secure; Priority=Low; SameSite=Lax, __cf_bm=pt1aKqkRKd_K8sAsk1GzzV39W9r7Fh2rhR9tQ0El6_4-1734627881-1.0.1.1-kPCorxYqMDECsPqw1Noivew3yoiSEcOOjcbVS30YSxb4P28e_x8MXKxjHRgOzSekQo69yuK_cylcYRvHmy4ARA; path=/; expires=Thu, 19-Dec-24 17:34:41 GMT; domain=.character.ai; HttpOnly; Secure; SameSite=None
edge-rollout cookie not found.
Codespaces
Not found at all?
I see, on your case it is called edge_rollout
and not edge-rollout
! Nice to know. I'll push a patch asap.
EDIT: your code has the mistake. I use the regex match /edge_rollout=(\d+)/
which should be ok?
Notify me please sir!
I see, on your case it is called
edge_rollout
and notedge-rollout
! Nice to know. I'll push a patch asap.EDIT: your code has the mistake. I use the regex match
/edge_rollout=(\d+)/
which should be ok?
Wait-- i don't understand
Could you try using this instead?
const edgeRollout = headers.get("set-cookie")?.match(/edge_rollout=(\d+)/)?.at(1);
This is causing an issue due to the cookie being named edge_rollout
(not with a -
).
cookie.startsWith("edge-rollout="));
So on Koyeb and Termux you cannot find it? Could you instead print the status
statusText
and text()
like I said previously to see what the response output is?
Koyeb
Status: 200
Status Text: OK
Response Body:
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><title>character.ai | Personalized AI for every moment of your day</title><meta name="description" content="Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads."/><meta property="og:type" content="website"/><meta property="og:title" content="character.ai | Personalized AI for every moment of your day"/><meta property="og:image" content="https://character.ai/character-ai.jpg"/><meta property="og:description" content="Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads."/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/><meta name="apple-itunes-app" content="app-id=1671705818"/><meta name="next-head-count" content="9"/><link rel="icon" href="/favicon.ico" sizes="any"/><link rel="icon" type="image/svg+xml" href="/icon.svg"/><meta name="next-font-preconnect"/><link rel="preload" href="/_next/static/media/05671187b3ec025d.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/media/a34f9d1faa5f3315.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/css/3809e6f163683140.css" as="style"/><link rel="stylesheet" href="/_next/static/css/3809e6f163683140.css" data-n-g=""/><noscript data-n-css=""></noscript><link rel="preload" href="/_next/static/chunks/3216.659bfcf760618cdc.js" as="script"/><link rel="preload" href="/_next/static/chunks/webpack-d6a17200e906e289.js" as="script"/><link rel="preload" href="/_next/static/chunks/framework-ed8cc3c33d3f647c.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-6175319feaec779b.js" as="script"/><link rel="preload" href="/_next/static/chunks/pages/_app-d0a802f0d4bd58ca.js" as="script"/><link rel="preload" href="/_next/static/chunks/aeb74aa0-38e5e71941fdf07a.js" as="script"/><link rel="preload" href="/_next/static/chunks/8092-586fc6bb614207df.js" as="script"/><link rel="preload" href="/_next/static/chunks/pages/index-9c39f6ed38dcdbc6.js" as="script"/><style id="__jsx-2063949595">:root{--font-inter:'__Inter_1fc7a2';--font-onest:'__Onest_9b70a6'}</style></head><body><div id="__next"><script>!function(){try{var d=document.documentElement,c=d.classList;c.remove('light','dark');var e=localStorage.getItem('theme');if('system'===e||(!e&&true)){var t='(prefers-color-scheme: dark)',m=window.matchMedia(t);if(m.media!==t||m.matches){d.style.colorScheme = 'dark';c.add('dark')}else{d.style.colorScheme = 'light';c.add('light')}}else if(e){c.add(e|| '')}if(e==='light'||e==='dark')d.style.colorScheme=e}catch(e){}}()</script><div data-overlay-container="true"><div class="Toastify"></div><main class="h-full"><style>
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #29D;
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #29D, 0 0 5px #29D;
opacity: 1;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: #29D;
border-left-color: #29D;
border-radius: 50%;
-webkit-animation: nprogresss-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style><div class="relative"><div class="flex"><main class="flex-1 min-h-screen max-w-full"></main></div></div><div class="fixed inset-x-0 bottom-0 md:absolute md:bottom-16 md:right-4 md:left-auto w-full md:max-w-64 shadow-sm bg-surface-elevation-3 p-4 rounded-spacing-xs text-sm z-50"><p>We use essential cookies to make our site work. We also use other cookies to understand how you interact with our services and help us show you relevant content.</p><br/><p>By clicking "Accept All" below, you consent to our use of cookies as further detailed in our Privacy Policy.</p><div class="flex gap-2 mt-2 w-full"><button class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:bg-surface-elevation-1 px-unit-4 min-w-unit-20 h-unit-10 text-md gap-unit-2 rounded-md [&>svg]:max-w-[theme(spacing.unit-8)] data-[pressed=true]:scale-[0.97] transition-transform-colors-opacity motion-reduce:transition-none bg-ghost text-primary data-[hover=true]:opacity-hover w-full" type="button">Reject All</button><button class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:bg-surface-elevation-1 px-unit-4 min-w-unit-20 h-unit-10 text-md gap-unit-2 rounded-md [&>svg]:max-w-[theme(spacing.unit-8)] data-[pressed=true]:scale-[0.97] transition-transform-colors-opacity motion-reduce:transition-none text-primary data-[hover=true]:opacity-hover bg-surface-elevation-2 w-full" type="button">Accept All</button></div></div></main></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"i18n":{"Guide":{"character-book":"Character Book","blog":"Blog","home":"Home","chats":"Chats","discover":"Discover","create":"Create","character":"Character","voice":"Voice","remove-from-recents":"Remove from recents","RecentChatCategoryTitles":{"today":"Today","yesterday":"Yesterday","this-week":"This Week","last-week":"Last Week","this-month":"This Month","a-while-ago":"A While Ago"},"recent-chats":"Recent chats","research":"Research"},"Categories":{"adventure":"Adventure","advice-and-connection":"Advice \u0026 Connection","all":"All","anime":"Anime","assistants":"Assistants","astrology":"Astrology","creative_writing":"Creative Writing","creativity":"Creativity","emotional_support":"Emotional Support","emotional_wellness":"Emotional Wellness","entertainment":"Entertainment","entertainment-and-gaming":"Entertainment \u0026 Gaming","fantasy":"Fantasy","fortune_tellers":"Fortune Tellers","friendship":"Friendship","games":"Games","games-and-puzzles":"Games \u0026 Puzzles","health-and-wellness":"Health \u0026 Wellness","history":"History","history-and-philosophy":"History \u0026 Philosophy","humor":"Humor","language-learning":"Language Learning","learn_a_language":"Learn a Language","learning":"Learning","lgbtq":"LGBTQ+","lifestyle":"Lifestyle","music_and_audio":"Music","mystery":"Mystery","paranormal":"Paranormal","parody":"Parody","personal_growth":"Personal Growth","productivity":"Productivity","professional":"Professional","religion":"Religion","role-playing":"Role Playing","romance":"Romance","role-playing-games":"Role Playing Games","rpg-and-puzzles":"RPG \u0026 Puzzles","school-and-homework":"School \u0026 Homework","sci-fi":"Sci-Fi","sci_fi":"Sci-Fi","speaking_practice":"Speaking Practice","technology_and_coding":"Technology \u0026 Coding","trivia":"Trivia","trending":"Trending","video_games":"Video Games","writing":"Creativity \u0026 Writing"},"Feed":{"for-you":"For you","try-these":"Try these","featured":"Featured","try-saying":"Try saying","because-you-liked":"Because you liked {{ name }}","because-you-chatted":"Because you chatted with {{ name }}","UseCases":{"practice-a-new-language":"Practice a new language","brainstorm-ideas":"Brainstorm ideas","get-book-recommendations":"Get book recommendations","plan-a-trip":"Plan a trip","practice-interviewing":"Practice interviewing","write-a-story":"Write a story","play-a-game":"Play a game","help-me-make-a-decision":"Help me make a decision"},"with-character":"with {{name}}","Categories":{"All":"All","Anime":"Anime","Helpers":"Helpers","Anime Game Characters":"Anime Game Characters","Games":"Games","Game Characters":"Game Characters","Comedy":"Comedy","VTuber":"VTuber","Books":"Books","Image Generating":"Image Generating","Discussion":"Discussion","History":"History","Language Learning":"Language Learning","Religion":"Religion","Animals":"Animals","Philosophy":"Philosophy","Politics":"Politics"},"ExampleChats":{"CharacterAssistant":{"q0":"What type of fish is Dory from Finding Nemo?","q1":"Create an ad campaign for a new video game","q2":"Decide between the Macbook Air and Macbook Pro"},"ElonMusk":{"q0":"Why did you buy twitter?","q1":"What do you think about Jeff Bezos' Blue Origin?","q2":"If you could time travel, when/where would you go?"},"AlternateTimeline":{"q0":"What if I invented a portal gun?","q1":"Access to my own personal time machine","q2":"Make me the negotiator for the first alien encounter"},"WhoWouldWin":{"q0":"Batman vs. Superman","q1":"Knight vs. Samurai","q2":"Lebron James vs. Michael Jordan"},"AreYouFeelingOkay":{"q0":"I had a hard time at work today","q1":"How can I be more successful in my profession","q2":"What is a good way to make a big change in life?"},"DebateChampion":{"q0":"Star Wars is overrated","q1":"Pepsi is better than Coca-Cola","q2":"Cats are better than dogs"}},"recommended":"Recommended"},"CharacterEditor":{"best-practices":"Best practices","create-character":"Create Character","save-changes":"Save Changes","new-character":"New Character...","editing-character":"Editing {{name}}...","Step":{"customize":"Customize","advanced":"Advanced"},"Form":{"character-name":"Character name","character-name-placeholder":"e.g. Albert Einstein","tagline":"Tagline","tagline-placeholder":"Add a short tagline of your Character","tagline-tooltip":"How your Character would describe themselves","description":"Description","description-placeholder":"How would your Character describe themselves?","description-tooltip":"How your Character would describe themselves","greeting":"Greeting","greeting-placeholder":"e.g. Hello, I am Albert. Ask me anything about my scientific contributions.","greeting-tooltip":"The first thing your Character will say at the beginning of every chat","voice":"Voice","visibility":"Visibility","definition":"Definition","character-definition":"Definition","character-definition-placeholder":"What's your Character's backstory? How do you want it to talk or act?","character-definition-tooltip":"Specific instructions on how your bot will behave and how it responds to messages","keep-character-definition-private":"Keep Character definition private","more-options":"More options","GenerateAvatar":{"generate-image":"Generate image","upload-image":"Upload image","describe-character":"Describe Character","what-does-your-character-look-like":"What does your Character look like?","what-does-character-name-look-like":"What does {{ name }} look like?"}},"failed-to-save-changes-not-community-guidelines":"Failed to save your Character. Your changes may not meet Character.AI community guidelines.","no-perms":"You do not have permissions to edit this Character","character-created":"Success: Character created","character-updated":"Success: Character updated","character-created-failed":"Failed to create your Character. Please try again.","character-updated-failed":"Failed to update your Character. Please try again.","editing-locked":"Congratulations! Editing is locked at this time since your Character has many fans. Please see our Terms of Service for details.","sign-up-to-create-character":"Sign up or log in to create a Character","save-and-chat":"Save and Chat","user-message":"User message","character-message":"Character message","end-of-dialog":"End of dialog","add-new-dialog":"Add new dialog","other-info":"Other info","example-conversation":"Example conversation #{{number}}","text-mode":"Text Mode","interactive-mode":"Interactive Mode","interactive-warning":"Warning - Interactive mode may change the format of existing definition.","please-review-before-saving":"Please review before saving."},"VoiceEditor":{"create-voice":"Create Voice","save-changes":"Save Changes","no-perms":"You do not have permissions to edit this voice"},"Chat":{"similar-characters":"Similar Characters","title":"Chat with {{name}}","view-pinned-memories":"Pinned","chat-pinned-memories":"Pinned","view-chat-history":"View Chat History","chat-history":"History","view-archived-chats":"View Archived Chats","archived-history":"Archived History","archived-chat":"Chat archived","unarchived-chat":"Chat unarchived","previous-conversations":"Previous conversations","start-new-chat":"New chat","view-model":"Model","share-character":"Share","view-character-profile":"View Character profile","view-creator-profile":"View Creator profile","enable-voice":"Voice","disable-voice":"Disable Voice","voice-inactivity":"Voice muted due to inactivity","enable-voice-tooltip":"Turn voice on","disable-voice-tooltip":"Turn voice off","change-voice":"Change Voice","call-character":"Call Character","change-persona":"Change Persona","edit-character":"Edit Character","copy-character":"Copy Character","Image":{"something-went-wrong-making-this-image":"Something went wrong making this image","creating-image":"Creating image"},"delete-messages":"Delete message","are-you-sure-you-want-to-delete-this-message":"Are you sure you want to delete this message?","delete-messages-action":"Delete message","report":"Report","Filter":{"you-can-continue-the-conversation-or-generate-a-new-response-by-swiping":"Send a new message to continue the conversation","sometimes-the-ai-generates-a-reply-that-doesnt-meet-our-guidelines":"This content has been filtered. Please make sure your chats comply with our Terms and Community Guidelines.","reported":"Reported"},"edited":"(edited)","edit-message":"Edit message","submit-edit":"Submit edit","tooltip-message-edited-by-user":"Message edited by user","created-by":"Created by \u003c2\u003e{{author}}\u003c/2\u003e","send-a-message":"Send a message...","message":"Message...","message-char":"Message {{char}}...","rewind-conversation":"Rewind to here","duplicate-conversation":"New chat from here","duplicate-chat-started":"New chat started","do-not-leave-page":"Please wait. A new tab will open with your new chat.","are-you-sure-you-want-to-rewind-the-conversation-to-this-point":"Are you sure you want to rewind the conversation to this point?","rewind":"Rewind","rewind-successful":"Rewind successful","delete-successful":"Delete successful","sign-up-to-chat-with-character-name":"Sign up to chat with {{character}}","pin-message":"Pin message","unpin-message":"Unpin message","max-pin-limit-reached":"Maximum pinned memory limit reached","pinned":"Pinned","third-party-translation-detected-text-formatting-disabled":"Third-party translation detected, text formatting disabled","chat-with-character-on-character-ai":"Chat with {{ character }} on Character.AI!","are-you-sure-you-want-to-unpin":"Are you sure you want to unpin this memory?","no-pinned-memories-yet":"You don't have any pinned memories for this chat yet","no-archived-chats-yet":"No archived chats yet","no-chats-yet":"No chats yet","to-pin-a-memory":"To pin a memory, press on the three dots next to a chat message. This way, {{ name }} will always remember that message in this chat.","the-character":"the Character","sorry-this-character-is-not-available-to-chat":"Sorry, this Character is not available to chat","something-went-wrong-loading-the-chat":"Something went wrong loading the chat","reply-idea":"Reply idea","try-this-reply":"Try this reply","reply-idea-title":"Reply idea:","generate-reply":"Generate reply","sending-as":"Sending as: {{persona}}","too-many-messages-to-duplicate":"Too many messages to duplicate","upgrade":"Upgrade","upgrade-suffix--for-faster-response-times":"for faster response times","play-voice":"Play voice","stop-voice":"Stop voice","abort-voice":"Abort voice","scroll-to-bottom":"Go to most recent message","ai-conversation-reset":"AI conversation reset","reset-ai-conversation":"Reset AI conversation","leave-room":"Leave group","delete-room":"Delete group","auto-reply":"Auto-reply","characters-can-auto-reply":"Characters can auto-reply","participants-count":"{{count}} participants","message-placeholder":"Message","view-room-details":"View group details","edit-room":"Edit group","create":"Create","room-characters-count":"Characters: {{count}} / {{max}}","are-you-sure-you-want-to-delete-this-room":"Are you sure you want to delete this group chat?","are-you-sure-you-want-to-leave-this-room":"Are you sure you want to leave this group chat?","remove-user":"Remove User","are-you-sure-you-want-to-kick-user-from-this-room":"Are you sure you want to kick {{user}} from this group?","sorry-this-room-is-unavailable-to-you":"Sorry this group chat is unavailable to you","edit-group-name":"Edit group name","enter-group-name":"Enter group name","user-input-filtered-message":"Your message may not meet our community guidelines and wasn't sent","licensed-professional-disclaimer":"This is not a real person or licensed professional. Nothing said here is a substitute for professional advice, diagnosis, or treatment.","ChatModelSelectorModal":{"title":"Preferred Model Type","model-smart":"Brainiac","model-smart-description":"Best for deep immersion","model-fast":"Flash","model-fast-description":"Quicker responses. Best for casual chat","model-default":"Prime","model-default-description":"Default: Mix of speed and intelligence","tooltip-model-availability":"The actual model used may vary based on system load and availability","dont-show-again":"Don't show again","start-chat":"Start new chat"}},"Feedback":{"tell-us-more":"Tell us more","submit-feedback":"Submit feedback","save-details":"Save details","anything-else":"Additional details","feedback":"Feedback","voice-feedback":"Voice Feedback","text-feedback":"Text Feedback"},"Voice":{"voices":"Voices","voice":"Voice","discover":"Discover","your-voices":"Your voices","saved":"Saved","play-sample":"Play Sample","select":"Select","no-voices":"No voices","enabled":"Voice enabled","error":"Voice error - try again","default":"Creator suggested","selected":"Currently Selected","system-suggested":"System suggested","search-label":"Search","enable-voice":"Give this Character a Voice","hold-to-change-voice":"Press \u0026 hold to switch voices","toggle-voice":"Toggle Character Voice","voice-on":"Voice On","voice-off":"Voice Muted","voice-error":"Voice error, try again","voice-inactivity":"Voice muted due to inactivity","voice-call-connection-failed":"Voice call connection failed","microphone-error":"Microphone error","you-probably-havent-granted-microphone-permissions":"You probably haven't granted microphone
Termux
Server running on port 8080
Status: 200
Status Text: OK
Response Body: <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><title>character.ai | Personalized AI for every moment of your day</title><meta name="description" content="Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads."/><meta property="og:type" content="website"/><meta property="og:title" content="character.ai | Personalized AI for every moment of your day"/><meta property="og:image" content="https://character.ai/character-ai.jpg"/><meta property="og:description" content="Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads."/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/><meta name="apple-itunes-app" content="app-id=1671705818"/><meta name="next-head-count" content="9"/><link rel="icon" href="/favicon.ico" sizes="any"/><link rel="icon" type="image/svg+xml" href="/icon.svg"/><meta name="next-font-preconnect"/><link rel="preload" href="/_next/static/media/05671187b3ec025d.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/media/a34f9d1faa5f3315.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/css/3809e6f163683140.css" as="style"/><link rel="stylesheet" href="/_next/static/css/3809e6f163683140.css" data-n-g=""/><noscript data-n-css=""></noscript><link rel="preload" href="/_next/static/chunks/3216.659bfcf760618cdc.js" as="script"/><link rel="preload" href="/_next/static/chunks/webpack-d6a17200e906e289.js" as="script"/><link rel="preload" href="/_next/static/chunks/framework-ed8cc3c33d3f647c.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-6175319feaec779b.js" as="script"/><link rel="preload" href="/_next/static/chunks/pages/_app-d0a802f0d4bd58ca.js" as="script"/><link rel="preload" href="/_next/static/chunks/aeb74aa0-38e5e71941fdf07a.js" as="script"/><link rel="preload" href="/_next/static/chunks/8092-586fc6bb614207df.js" as="script"/><link rel="preload" href="/_next/static/chunks/pages/index-9c39f6ed38dcdbc6.js" as="script"/><style id="__jsx-2063949595">:root{--font-inter:'__Inter_1fc7a2';--font-onest:'__Onest_9b70a6'}</style></head><body><div id="__next"><script>!function(){try{var d=document.documentElement,c=d.classList;c.remove('light','dark');var e=localStorage.getItem('theme');if('system'===e||(!e&&true)){var t='(prefers-color-scheme: dark)',m=window.matchMedia(t);if(m.media!==t||m.matches){d.style.colorScheme = 'dark';c.add('dark')}else{d.style.colorScheme = 'light';c.add('light')}}else if(e){c.add(e|| '')}if(e==='light'||e==='dark')d.style.colorScheme=e}catch(e){}}()</script><div data-overlay-container="true"><div class="Toastify"></div><main class="h-full"><style>
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #29D;
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #29D, 0 0 5px #29D;
opacity: 1;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: #29D;
border-left-color: #29D;
border-radius: 50%;
-webkit-animation: nprogresss-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style><div class="relative"><div class="flex"><main class="flex-1 min-h-screen max-w-full"></main></div></div></main></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"i18n":{"Guide":{"character-book":"Character Book","blog":"Blog","home":"Home","chats":"Chats","discover":"Discover","create":"Create","character":"Character","voice":"Voice","remove-from-recents":"Remove from recents","RecentChatCategoryTitles":{"today":"Today","yesterday":"Yesterday","this-week":"This Week","last-week":"Last Week","this-month":"This Month","a-while-ago":"A While Ago"},"recent-chats":"Recent chats","research":"Research"},"Categories":{"adventure":"Adventure","advice-and-connection":"Advice \u0026 Connection","all":"All","anime":"Anime","assistants":"Assistants","astrology":"Astrology","creative_writing":"Creative Writing","creativity":"Creativity","emotional_support":"Emotional Support","emotional_wellness":"Emotional Wellness","entertainment":"Entertainment","entertainment-and-gaming":"Entertainment \u0026 Gaming","fantasy":"Fantasy","fortune_tellers":"Fortune Tellers","friendship":"Friendship","games":"Games","games-and-puzzles":"Games \u0026 Puzzles","health-and-wellness":"Health \u0026 Wellness","history":"History","history-and-philosophy":"History \u0026 Philosophy","humor":"Humor","language-learning":"Language Learning","learn_a_language":"Learn a Language","learning":"Learning","lgbtq":"LGBTQ+","lifestyle":"Lifestyle","music_and_audio":"Music","mystery":"Mystery","paranormal":"Paranormal","parody":"Parody","personal_growth":"Personal Growth","productivity":"Productivity","professional":"Professional","religion":"Religion","role-playing":"Role Playing","romance":"Romance","role-playing-games":"Role Playing Games","rpg-and-puzzles":"RPG \u0026 Puzzles","school-and-homework":"School \u0026 Homework","sci-fi":"Sci-Fi","sci_fi":"Sci-Fi","speaking_practice":"Speaking Practice","technology_and_coding":"Technology \u0026 Coding","trivia":"Trivia","trending":"Trending","video_games":"Video Games","writing":"Creativity \u0026 Writing"},"Feed":{"for-you":"For you","try-these":"Try these","featured":"Featured","try-saying":"Try saying","because-you-liked":"Because you liked {{ name }}","because-you-chatted":"Because you chatted with {{ name }}","UseCases":{"practice-a-new-language":"Practice a new language","brainstorm-ideas":"Brainstorm ideas","get-book-recommendations":"Get book recommendations","plan-a-trip":"Plan a trip","practice-interviewing":"Practice interviewing","write-a-story":"Write a story","play-a-game":"Play a game","help-me-make-a-decision":"Help me make a decision"},"with-character":"with {{name}}","Categories":{"All":"All","Anime":"Anime","Helpers":"Helpers","Anime Game Characters":"Anime Game Characters","Games":"Games","Game Characters":"Game Characters","Comedy":"Comedy","VTuber":"VTuber","Books":"Books","Image Generating":"Image Generating","Discussion":"Discussion","History":"History","Language Learning":"Language Learning","Religion":"Religion","Animals":"Animals","Philosophy":"Philosophy","Politics":"Politics"},"ExampleChats":{"CharacterAssistant":{"q0":"What type of fish is Dory from Finding Nemo?","q1":"Create an ad campaign for a new video game","q2":"Decide between the Macbook Air and Macbook Pro"},"ElonMusk":{"q0":"Why did you buy twitter?","q1":"What do you think about Jeff Bezos' Blue Origin?","q2":"If you could time travel, when/where would you go?"},"AlternateTimeline":{"q0":"What if I invented a portal gun?","q1":"Access to my own personal time machine","q2":"Make me the negotiator for the first alien encounter"},"WhoWouldWin":{"q0":"Batman vs. Superman","q1":"Knight vs. Samurai","q2":"Lebron James vs. Michael Jordan"},"AreYouFeelingOkay":{"q0":"I had a hard time at work today","q1":"How can I be more successful in my profession","q2":"What is a good way to make a big change in life?"},"DebateChampion":{"q0":"Star Wars is overrated","q1":"Pepsi is better than Coca-Cola","q2":"Cats are better than dogs"}},"recommended":"Recommended"},"CharacterEditor":{"best-practices":"Best practices","create-character":"Create Character","save-changes":"Save Changes","new-character":"New Character...","editing-character":"Editing {{name}}...","Step":{"customize":"Customize","advanced":"Advanced"},"Form":{"character-name":"Character name","character-name-placeholder":"e.g. Albert Einstein","tagline":"Tagline","tagline-placeholder":"Add a short tagline of your Character","tagline-tooltip":"How your Character would describe themselves","description":"Description","description-placeholder":"How would your Character describe themselves?","description-tooltip":"How your Character would describe themselves","greeting":"Greeting","greeting-placeholder":"e.g. Hello, I am Albert. Ask me anything about my scientific contributions.","greeting-tooltip":"The first thing your Character will say at the beginning of every chat","voice":"Voice","visibility":"Visibility","definition":"Definition","character-definition":"Definition","character-definition-placeholder":"What's your Character's backstory? How do you want it to talk or act?","character-definition-tooltip":"Specific instructions on how your bot will behave and how it responds to messages","keep-character-definition-private":"Keep Character definition private","more-options":"More options","GenerateAvatar":{"generate-image":"Generate image","upload-image":"Upload image","describe-character":"Describe Character","what-does-your-character-look-like":"What does your Character look like?","what-does-character-name-look-like":"What does {{ name }} look like?"}},"failed-to-save-changes-not-community-guidelines":"Failed to save your Character. Your changes may not meet Character.AI community guidelines.","no-perms":"You do not have permissions to edit this Character","character-created":"Success: Character created","character-updated":"Success: Character updated","character-created-failed":"Failed to create your Character. Please try again.","character-updated-failed":"Failed to update your Character. Please try again.","editing-locked":"Congratulations! Editing is locked at this time since your Character has many fans. Please see our Terms of Service for details.","sign-up-to-create-character":"Sign up or log in to create a Character","save-and-chat":"Save and Chat","user-message":"User message","character-message":"Character message","end-of-dialog":"End of dialog","add-new-dialog":"Add new dialog","other-info":"Other info","example-conversation":"Example conversation #{{number}}","text-mode":"Text Mode","interactive-mode":"Interactive Mode","interactive-warning":"Warning - Interactive mode may change the format of existing definition.","please-review-before-saving":"Please review before saving."},"VoiceEditor":{"create-voice":"Create Voice","save-changes":"Save Changes","no-perms":"You do not have permissions to edit this voice"},"Chat":{"similar-characters":"Similar Characters","title":"Chat with {{name}}","view-pinned-memories":"Pinned","chat-pinned-memories":"Pinned","view-chat-history":"View Chat History","chat-history":"History","view-archived-chats":"View Archived Chats","archived-history":"Archived History","archived-chat":"Chat archived","unarchived-chat":"Chat unarchived","previous-conversations":"Previous conversations","start-new-chat":"New chat","view-model":"Model","share-character":"Share","view-character-profile":"View Character profile","view-creator-profile":"View Creator profile","enable-voice":"Voice","disable-voice":"Disable Voice","voice-inactivity":"Voice muted due to inactivity","enable-voice-tooltip":"Turn voice on","disable-voice-tooltip":"Turn voice off","change-voice":"Change Voice","call-character":"Call Character","change-persona":"Change Persona","edit-character":"Edit Character","copy-character":"Copy Character","Image":{"something-went-wrong-making-this-image":"Something went wrong making this image","creating-image":"Creating image"},"delete-messages":"Delete message","are-you-sure-you-want-to-delete-this-message":"Are you sure you want to delete this message?","delete-messages-action":"Delete message","report":"Report","Filter":{"you-can-continue-the-conversation-or-generate-a-new-response-by-swiping":"Send a new message to continue the conversation","sometimes-the-ai-generates-a-reply-that-doesnt-meet-our-guidelines":"This content has been filtered. Please make sure your chats comply with our Terms and Community Guidelines.","reported":"Reported"},"edited":"(edited)","edit-message":"Edit message","submit-edit":"Submit edit","tooltip-message-edited-by-user":"Message edited by user","created-by":"Created by \u003c2\u003e{{author}}\u003c/2\u003e","send-a-message":"Send a message...","message":"Message...","message-char":"Message {{char}}...","rewind-conversation":"Rewind to here","duplicate-conversation":"New chat from here","duplicate-chat-started":"New chat started","do-not-leave-page":"Please wait. A new tab will open with your new chat.","are-you-sure-you-want-to-rewind-the-conversation-to-this-point":"Are you sure you want to rewind the conversation to this point?","rewind":"Rewind","rewind-successful":"Rewind successful","delete-successful":"Delete successful","sign-up-to-chat-with-character-name":"Sign up to chat with {{character}}","pin-message":"Pin message","unpin-message":"Unpin message","max-pin-limit-reached":"Maximum pinned memory limit reached","pinned":"Pinned","third-party-translation-detected-text-formatting-disabled":"Third-party translation detected, text formatting disabled","chat-with-character-on-character-ai":"Chat with {{ character }} on Character.AI!","are-you-sure-you-want-to-unpin":"Are you sure you want to unpin this memory?","no-pinned-memories-yet":"You don't have any pinned memories for this chat yet","no-archived-chats-yet":"No archived chats yet","no-chats-yet":"No chats yet","to-pin-a-memory":"To pin a memory, press on the three dots next to a chat message. This way, {{ name }} will always remember that message in this chat.","the-character":"the Character","sorry-this-character-is-not-available-to-chat":"Sorry, this Character is not available to chat","something-went-wrong-loading-the-chat":"Something went wrong loading the chat","reply-idea":"Reply idea","try-this-reply":"Try this reply","reply-idea-title":"Reply idea:","generate-reply":"Generate reply","sending-as":"Sending as: {{persona}}","too-many-messages-to-duplicate":"Too many messages to duplicate","upgrade":"Upgrade","upgrade-suffix--for-faster-response-times":"for faster response times","play-voice":"Play voice","stop-voice":"Stop voice","abort-voice":"Abort voice","scroll-to-bottom":"Go to most recent message","ai-conversation-reset":"AI conversation reset","reset-ai-conversation":"Reset AI conversation","leave-room":"Leave group","delete-room":"Delete group","auto-reply":"Auto-reply","characters-can-auto-reply":"Characters can auto-reply","participants-count":"{{count}} participants","message-placeholder":"Message","view-room-details":"View group details","edit-room":"Edit group","create":"Create","room-characters-count":"Characters: {{count}} / {{max}}","are-you-sure-you-want-to-delete-this-room":"Are you sure you want to delete this group chat?","are-you-sure-you-want-to-leave-this-room":"Are you sure you want to leave this group chat?","remove-user":"Remove User","are-you-sure-you-want-to-kick-user-from-this-room":"Are you sure you want to kick {{user}} from this group?","sorry-this-room-is-unavailable-to-you":"Sorry this group chat is unavailable to you","edit-group-name":"Edit group name","enter-group-name":"Enter group name","user-input-filtered-message":"Your message may not meet our community guidelines and wasn't sent","licensed-professional-disclaimer":"This is not a real person or licensed professional. Nothing said here is a substitute for professional advice, diagnosis, or treatment.","ChatModelSelectorModal":{"title":"Preferred Model Type","model-smart":"Brainiac","model-smart-description":"Best for deep immersion","model-fast":"Flash","model-fast-description":"Quicker responses. Best for casual chat","model-default":"Prime","model-default-description":"Default: Mix of speed and intelligence","tooltip-model-availability":"The actual model used may vary based on system load and availability","dont-show-again":"Don't show again","start-chat":"Start new chat"}},"Feedback":{"tell-us-more":"Tell us more","submit-feedback":"Submit feedback","save-details":"Save details","anything-else":"Additional details","feedback":"Feedback","voice-feedback":"Voice Feedback","text-feedback":"Text Feedback"},"Voice":{"voices":"Voices","voice":"Voice","discover":"Discover","your-voices":"Your voices","saved":"Saved","play-sample":"Play Sample","select":"Select","no-voices":"No voices","enabled":"Voice enabled","error":"Voice error - try again","default":"Creator suggested","selected":"Currently Selected","system-suggested":"System suggested","search-label":"Search","enable-voice":"Give this Character a Voice","hold-to-change-voice":"Press \u0026 hold to switch voices","toggle-voice":"Toggle Character Voice","voice-on":"Voice On","voice-off":"Voice Muted","voice-error":"Voice error, try again","voice-inactivity":"Voice muted due to inactivity","voice-call-connection-failed":"Voice call connection failed","microphone-error":"Microphone error","you-probably-havent-granted-microphone-permissions":"You probably haven't granted microphone permissions"},"VoiceDetail":{"recent-chats":"Try with a recent chat","suggested-characters":"Try with these Characters"},"Form":{"labels":{"username":"Username","name":"Display Name","bio":"Bio","date":"Birthday","email":"Email","month":"Month","day":"Day","year":"Year"},"cancel":"Cancel","confirm":"Confirm","save":"Save","remove":"Remove","invalid-characters":"Your input contains one or more invalid characters.","date-required-error":"Your date of birth is required","date-min-error":"That date is too far in the past","date-max-error":"That date is too far in the future","date-day-range-error":"Day must be between 1 and 31"},"Home":{"hide-character":"Hide Character","title":"Character.AI","welcome-back":"Welcome back,","create-a-character":"Create a Character","not-vibing":"Not vibing with any Characters? Create one of your own! Customize things like their voice, conversation starts, their tone, and more!","witty":"witty","mentor":"mentor","more-options":"More Options…","introducing-character-calls":"Introducing Character Calls","compact-try-it-on-the-c-ai-mobile-app":"Try it on the c.ai mobile app","talk-live-with-your-characters-on-the-c-ai-mobile-app":"Talk live with your Characters on the c.ai mobile app"},"Share":{"character-link-copied":"Character link copied!","check-out-this-character":"Check out this Character\n{{href}}","check-out-this-creator":"Check out this creator on Character.AI\n{{href}}","share-link-copied":"{{title}} link copied!"},"Common":{"current-chat":"Current chat","chat":"Chat","search":"Search","one-moment-please":"One moment please...","regenerate":"Regenerate","generate":"Generate","hold-on":"Hold on a minute while we log you in.","no-results-at-this-time":"We're sorry, there are no results at this time","unsaved-changes-warning":"Changes you have made may not be saved","about":"About","_comment-view-character-book":"View Character Book","coming-soon":"Coming soon","close":"Close","login":"Login","logout":"Logout","deactivate":"Deactivate","cancel":"Cancel","try-again":"Try again","sign-in":"Sign in","sign-up":"Sign up","retry":"Retry","settings":"Settings","report":"Report","report-issue":"Report an Issue","manage":"Manage","num-chats":"{{num}} chats","num-chats_one":"{{num}} chat","num-chats_other":"{{num}} chats","num-character-chats":"{{num}} Character Chats","num-character-chats_one":"{{num}} Character Chat","num-character-chats_other":"{{num}} Character Chats","num-likes":"{{num}} likes","num-likes_one":"{{num}} like","num-likes_other":"{{num}} likes","reply":"Reply...","chats":"{{formattedCount}} Chats","chats_one":"{{formattedCount}} Chat","chats_other":"{{formattedCount}} Chats","likes":"{{formattedCount}} Likes","likes_one":"{{formattedCount}} Like","likes_other":"{{formattedCount}} Likes","copy":"Copy","view-character-details":"View Character Details","message-copied-to-clipboard":"Message copied to clipboard","remember-everything-characters-say-are-made-up":"Remember: Everything Characters say is made up!","fiction-warning-collapsed":"This is A.I. and not a real person. Treat everything it says as fiction","fiction-warning-expanded":"This is an A.I. chatbot and not a real person. Treat everything it says as fiction. What is said should not be relied upon as fact or advice.","optional":"Optional","new":"New","default":"Default","persona":"Persona","characters":"Characters","creators":"Creators","select":"Select","unselect":"Unselect","success":"Success","active":"Active","submit":"Submit","next":"Next","studio":"Studio","back":"Back","characterCount":"pluralized_value","characterCount_one":"{{created}} Character","characterCount_other":"{{created}} Characters","edit":"Edit","rename":"Rename","archive":"Archive","unarchive":"Unarchive","new-chat":"New Chat","hide-character":"Hide Character","make-default":"Make default","clear-default":"Clear default","clear-search":"Clear search","add":"Add","delete":"Delete","loading":"Loading...","Visibility":{"public":"Public","unlisted":"Unlisted","private":"Private","Details":{"public":"Available for others to discover and chat with","unlisted":"Available for others to chat with via link","private":"Only available to you"}},"character-interactions":"Character interactions","continue":"Continue","export-data":"Export data","delete-account":"Delete account","generic-error":"Error: Please try again","success-request-initiated":"Success: Request initiated","labels":"Labels","legacy":"Legacy","or":"OR","use-of-character-ai-is-bound-by-our-terms-of-service-and-privacy-policy":"Use of Character.AI is bound by our \u003c1\u003eTerms of Service\u003c/1\u003e and \u003c3\u003ePrivacy Policy\u003c/3\u003e.","try-it-out":"Try it out","cai-attribution":"By @c.ai","legacy-site":"Back to old site","c-ai-chat-title":"c.ai - {{name}}","cai":"c.ai","something-went-wrong-please-try-again-later":"Something went wrong, please try again later.","like":"Like","dislike":"Dislike","company-motto":"Personalized AI for every moment of your day","join-us":"Join us!","copyright":"© Copyright 2024 Character Technologies, Inc.","yes":"Yes","done":"Done","code-copied-to-clipboard":"Code copied to clipboard","describe-your-image":"Describe your image","share":"Share","hello":"Hello","comment":"Comment","reset":"Reset","email-suggestion":"Use this email instead?","navigation-menu":"Navigation menu","rate":"Rate {{ number }} star","rate_plural":"Rate {{ number }} stars","add-remove":"Add / Remove","room":"Group Chat","users":"Users","save":"Save","change":"Change","view-more":"View more"},"SettingsPreferences":{"theme":"Theme","light":"Light","dark":"Dark","system":"System","language":"Language","default":"Default","classic":"Classic","canary":"Preview","prod":"Stable","dense":"Dense"},"GetTheApp":{"iphone-download-the-app":"Download the Character.AI mobile app from the App Store","android-download-the-app":"Download the Character.AI mobile app from the Google Play Store","scan-the-qr-code":"Scan the QR code to get the Character.AI app","get-app":"Get app"},"Subscription":{"free":"Free","upgrade":"Upgrade","upgrade-to":"Upgrade to","your-current-plan":"Your current plan","upgrade-your-plan-today":"Upgrade your plan today","feature-turbo-messages-name":"Turbo Messages","feature-turbo-messages-description":"Unlimited faster messages","feature-description-faster-response":"Faster response times","feature-description-dedicated-servers":"Dedicated servers, faster responses","feature-better-memory-name":"Better Memory","feature-better-memory-description":"Characters remember more","feature-customize-chats-name":"Customize Your Chats","feature-customize-chats-description":"Colors, backgrounds and more","feature-special-perks-name":"Special Perks","feature-special-perks-description":"Priority access to select new features","price-per-month":"\u003cprice\u003e{{price}}\u003c/price\u003e/month","button-call-to-action":"Subscribe for {{price}}/mo","button-disclaimer":"Auto renews monthly until canceled"},"DeleteAccount":{"manage-account-and-data":"Manage Account \u0026 Data","export-data-success":"You’ll receive an email with a link to download your data.","this-action-cannot-be-undone":"This action cannot be undone","things-will-be-lost":"Characters, chats, and activity associated with your account will be lost.","remove-your-subscription":"Remember to remove your subscription before deleting your account","enter-username-to-confirm":"Enter username to confirm"},"Search":{"placeholder":"Search for Characters","something-went-wrong-loading-search-results":"Something went wrong loading search results","your-input-is-invalid":"Inputs cannot contain special characters or be too short","search-results":"Search results","no-results":"No Characters found, maybe make one?","no-creators-found-with-that-name":"No creators found with that name"},"Signup":{"header":"Set Up Your Profile","we-need-one-last-thing":"We need one last thing from you","what-do-you-want-your-profile-image":"What do you want your profile image to look like?","claim-username":"Claim your username","username-placeholder":"Username","create-account-button":"Create account","disclaimer":"By continuing, you agree to our \u003c2\u003eTerms\u003c/2\u003e and acknowledge our \u003c6\u003ePrivacy Policy\u003c/6\u003e.","welcome":"Welcome to Character.AI","error-general":"There was an issue with your sign up.","error-signup-already-complete":"Signup already complete","error-couldnt-find-username":"Couldn't find user by username","error-acknowledge":"Must accept policies","error-missing-date-of-birth":"Missing date of birth","username-constraints":"Username must be between 3-20 characters and contain only letters, numbers, underscore and dash","error-invalid-date":"Invalid date of birth","error-username-exists":"Error: Username not available","when-is-your-birthday":"When's your birthday?","your-birthday-is-not-public":"Your birthday won't be displayed publicly","check-your-email":"Check your email","click-on-the-verification-link":"Click on the verification link sent to","not-seeing-the-email":"Not seeing the email? Check your spam folder.","finish-setup":"Finish Setup","age-and-user-name":"Verify your age and claim a username","toChat":"Sign Up to Chat","ineligible":"Sorry, looks like you're not eligible to keep using our services."},"Error":{"something-went-wrong":"Something went wrong!","please-refresh-or-try-again-later":"Please refresh or try again later","required":"{{name}} is required","minLength":"{{name}} must be at least {{minLength}} characters","maxLength":"{{name}} must be at most {{maxLength}} characters","imageUploadFailed":"Failed to upload image","enter-valid-email":"Please enter a valid email","sorry-cannot-use":"Sorry, you cannot use Character.AI at this time.","something-went-wrong-creating-your-room":"Something went wrong creating your group chat","something-went-wrong-updating-your-room":"Something went wrong updating your group chat","please-allow-popups":"Sign in popup was blocked, please hit the button to try again","auth-failed":"Sign in failed. Please try again. If the issue persists, please contact support."},"Socials":{"join-our-discord":"Join our Discord","discord-linking-error":"There was a problem linking your Discord account. Please try again.","discord-linking-success":"Your Discord account has been successfully linked","discord-join-cai-plus":"You're invited to join the \u003c1\u003ec.ai+\u003c/1\u003e community on Discord","plus-discord-invite-title":"You're invited to join the c.ai+ community on Discord","regular-discord-invite-title":"Join the Character Community on Discord","plus-discord-invite-description":"Link your Character account with Discord and get access to exclusive c.ai+ channels","discord-regular-invite-description":"Link your Character account with Discord and unlock special channels, commands and more","link-account-and-join":"Link account and join","open-discord":"Open community","relink-discord":"Re-link your account","discord-account-already-linked":"Your Discord account has already been linked, to continue open the community"},"Help":{"about-us":"About us","contact-us":"Contact us","community":"Community","work-with-us":"Work with us","terms-of-service":"Terms of Service","privacy-policy":"Privacy Policy","your-privacy-choices":"Your Privacy Choices","blog":"Blog","press":"Press","help-center":"Help Center","socials":"Socials","if-you-have-any-questions-or-need-help-visit-our-help-center":"If you have any questions or need help, visit our Help Center."},"Profile":{"title":"Character.AI – User profile of {{name}}","num-followers":"{{formatted}} Followers","num-followers_one":"{{formatted}} Followers","num-followers_other":"{{formatted}} Followers","num_following":"{{formatted}} Following","followers_num":"Followers {{formatted}}","followers_num_one":"Follower {{formatted}}","followers_num_other":"Followers {{formatted}}","following_num":"Following {{formatted}}","characters":"Characters","voices":"Voices","liked":"Liked","personas":"Personas","remixes":"Remixes","followButton":"Follow","followButtonFollowing":"Following","remixes-soon":"Remixes are coming soon…","block":"Block","unblock":"Unblock","block-confirmation":"Blocked {{name}}","unblock-confirmation":"Unblocked {{name}}","block-failed":"Failed to block {{name}}","unblock-failed":"Failed to unblock {{name}}","settings-button":"Settings","no-characters":"This user hasn't made any Characters yet.","no-characters-you":"You haven't made any Characters yet.","no-characters-liked":"You haven't liked any Characters yet.","create-a-voice":"Create a voice","no-voices":"This user hasn't made any voices yet.","user-profile":"User Profile","SortOption":{"Alphabetical":"Alphabetical","MostChats":"Most Chats","MostLikes":"Most Likes"},"FilterOption":{"ALL":"All","PUBLIC":"Public","UNLISTED":"Unlisted","PRIVATE":"Private"}},"feedback-utils":{"boring":"Boring","not-boring":"Not Boring","not-true":"Not True","true":"True","repetitive":"Repetitive","not-repetitive":"Not Repetitive","out-of-character":"Out of Character","not-out-of-character":"Not Out of Character","good-memory":"Good Memory","bad-memory":"Bad Memory","not-bad-memory":"Not Bad Memory","funny":"Funny","not-funny":"Not Funny","interesting":"Interesting","not-interesting":"Not Interesting","too-long":"Too Long","not-too-long":"Not Too Long","too-short":"Too Short","not-too-short":"Not Too Short","helpful":"Helpful","not-helpful":"Not Helpful","ends-chat-early":"Ended Chat Early","not-ends-chat-early":"Not Ended Chat Early","voice-wrong-voice":"Wrong Voice","voice-low-quality":"Low Quality","voice-incorrect-pronounciation":"Incorrect Pronounciation","voice-repeated-words":"Repeated Words","voice-missing-words":"Missing Words","voice-too-fast":"Too Fast","voice-too-slow":"Too Slow"},"Scenarios":{"what-do-you-want-to-do":"What do you want to do?","cooking":{"cook-something-for-dinner":"Cook something for dinner!"},"travel":{"go-on-an-adventure":"Go on an adventure!"},"creativity":{"nurture-your-creativity":"Nurture your creativity"},"who-do-you-want-talk-to":"Who do you want to talk to?","support":{"trusted-circle":"A trusted circle of support"},"learn":{"learn-something-new":"Learn something new today"},"challenge":{"epic-challenges-await":"Epic challenges await"},"exercise":{"get-fit-and-healthy":"Get fit and healthy","time-to-fell-your-best":"Time to feel your best"}},"Settings":{"account":"Account","profile":"Public profile","exp":"[Staff Only] Experiments","preferences":"Preferences","subscription":"Subscription","discord":"Go to community","link-discord":"Join community","get-the-app":"Get the app","chat-style":"Chat Style","preview-deployment":"Preview Release"},"User":{"profile":"Public profile","profile-updated":"Profile updated","profile-update-failed":"Profile update failed","error-username-exists":"Error: Username already exists","invite":"Invite"},"Character":{"by-username":"By @{{username}}"},"CharacterProfile":{"chat":"Chat","Tabs":{"About":"About","ChatStarters":"Chat Starters","SimilarCharacters":"Similar Characters"},"content-by-cai":"Content by c.ai","AboutSubSection":{"Description":"About {{characterName}}","Audience":"Who is {{characterName}} for","Expertise":"{{characterName}}'s Area of Expertise","Expertise_s":"{{characterName}}' Area of Expertise"},"ChatStarterDefaults":{"0":"If you could have any superpower for a day, what would you choose and how would you use it?","1":"What's the most hilarious or awkward story you've got?","2":"Picture this: you're stranded on a deserted island. What three items do you bring with you?","3":"If you could instantly become an expert in one skill or hobby, what would it be?"}},"Persona":{"create-persona":"Create a persona","characters-will-remember":"Characters will remember your persona information to improve their conversations with you","create-multiple-personas-to":"Create multiple personas to change your background info between chats","name":"Name","background":"Background","make-default-for-new-chats":"Make default for new chats","create-persona-success":"Successfully created your persona","failed-persona-too-long":"Failed: Your persona definition is too long.","failed-persona-name-too-long":"Failed: Your persona name is too long.","failed-persona-name-too-short":"Failed: Your persona name is too short.","failed-to-create-same-name-persona":"You cannot create a persona with the same name","failed-to-create-persona":"Failed to create your persona","failed-to-create-invalid-characters-persona":"Your persona name can only contain only letters, numbers, underscore, and dashes.","remove-persona-success":"Successfully removed your persona","update-persona-success":"Successfully updated your persona","failed-to-delete-persona":"Failed to delete persona","failed-to-update-persona":"Failed to update persona","failed-to-enable-disable-persona":"Failed to {{action}} this persona as your default persona.","are-you-sure-you-want-to-remove":"Are you sure you want to remove this persona?"},"Auth":{"continue-with":"Continue with {{provider}}","continue-with-email":"Continue with email","verification-link":"Open the verification link sent to {{email}}","didnt-receive-email":"Didn't receive the email?","resend":"Resend","continue":"Continue","email":"Email","trouble-signing-in":"Trouble signing in?"},"ExternalLinks":{"careers":"Careers","safety":"Safety","safety-center":"Safety Center","character-guide":"Character Guide","support":"Support","news":"News"},"Moderation":{"leave-comment":"Leave a comment","comment-placeholder":"Describe the issue in further detail","report-categories":{"abuse":"Threats \u0026 Harassment","violence":"Excessive Violence","falsity":"False Statements","hate":"Hate Speech","nsfw":"NSFW","sex_harass":"Sexual Harassment","minor":"Child Exploitation","self_harm":"Self Harm","terror":"Terrorism \u0026 Extremism","illegal":"Illegal Activities","drugs":"Drug Transactions","pii":"Invading Privacy","impersonate":"Impersonation","spam":"Commercial Spam"},"select-a-category":"Select a category","report-message-title":"Report Message","report-room-title":"Report Group","report-character":"Report Character","report-voice-title":"Report Voice","report-success":"Your report has been submitted.","report-failed":"Failed to create report. Please try again."},"Creator":{"topCharacters":"pluralized_field","topCharacters_one":"Top Character: {{character}}","topCharacters_other":"Top Characters: {{character}}"},"Monetization":{"faster-response-times":"Faster response times","upgrade-error":"Error: You already have a Subscription or you are not signed in","subscription-success":"Thank you for subscribing to c.ai+. You should notice the Character.AI+ logo at the top left. If you don't, it may take up to 30 minutes for your subscription to activate.","premium-feature-prefix":"Available for"},"Annotation":{"user":"User","annotator-labels":"Annotator","annotation-group-productivity-labels":"Productivity","annotation-group-lifestyle-labels":"Lifestyle","annotation-group-entertainment-labels":"Entertainment","annotation-group-user-labels":"User","annotation-group-safety-labels":"Safety","annotation-group-quality-labels":"Quality","annotations-sexually-suggestive-pg":"Sexually Suggestive PG","annotations-sexually-suggestive-pg-13":"Sexually Suggestive PG-13","annotations-sexually-suggestive-r":"Sexually Suggestive R","annotations-sexually-suggestive-x":"Sexually Suggestive X","annotations-repetitive":"Repetitive","annotations-nonsense":"Nonsense","annotations-looping":"Looping","annotations-out-of-character":"Out of Character","annotations-harmful-promotes-selfharm":"Promotes Self-Harm","annotations-harmful-promotes-terrorism":"Promotes Terrorism Or Mass Attacks","annotations-inaccurate":"Inaccurate","annotations-forgets-context":"Forgets Context","annotations-technology":"Technology","annotations-creative-arts":"Creative Arts","annotations-math":"Math","annotations-science":"Science","annotations-social_studies":"Social Studies","annotations-code":"Code","annotations-business":"Business","annotations-philosophy":"Philosophy","annotations-language-learning":"Language Learning","annotations-emotional-support":"Emotional Support","annotations-friendship":"Friendship","annotations-planning":"Planning","annotations-life-advice":"Life Advice","annotations-recommendation":"Recommendation","annotations-hobbies":"Hobbies","annotations-interactive-story-telling":"Interactive-Story-Telling","annotations-story-telling":"Story-Telling","annotations-comedy":"Comedy","annotations-discussion":"Discussion","annotations-gameplay":"Gameplay","annotations-hate-speech":"Hate Speech","annotations-disturbing-sexually":"Sexually Disturbing","annotations-disturbing-violence":"Violence Disturbing","annotations-regulated-controlled-substances":"Regulated Goods \u0026 Controlled Substances","annotations-criminal-activity-planning":"Criminal Activity \u0026 Planning","annotations-service-breaking-behavior":"Service Breaking Behavior","annotations-writing-mistake":"Writing Mistake","annotations-unsafe-eating":"Promotes Eating Disorders/Unsafe Eating","annotations-discusses-eating-disorder":"Discusses Eating Disorders","annotations-harmful-discusses-selfharm":"Discusses Self-Harm","annotations-child-violence":"Child Violence","annotations-csam":"CSAM","annotations-underage-sex":"Underage Sex","annotations-harassment":"Harassment \u0026 Bullying","annotations-kinks-fetishes":"Kinks \u0026 Fetishes","annotations-medical-advice":"Medical \u0026 Therapeutic Advice ","load-more":"Load more","previous-conversations":"Previous conversations","select-character":"Select a Character to start a new chat","edit":"Edit Mode","preview":"Preview Mode","mode":"{{mode}} Mode","questions":"Questions","delete-single":"Delete Message","delete-multiple":"Delete {{count}} Messages","no-turns-in-chat":"No turns in this chat","report-question":"Report Question","cancel-question-report":"Cancel Report","task-state-open":"Open","task-state-inprogress":"In Progress","task-state-reviewed":"Reviewed","task-state-needs-changes":"Needs Changes","task-state-making-changes":"Making Changes","task-state-needs-review":"Needs Review","task-state-inreview":"In Review","task-state-request-review":"Request Review","task-state-done":"Done","task-state-done-bad":"Done (Bad)","task-state-punted":"Punted","selection":"Selection","selection-help":"Defines how multi-selection works. For instance, whether you want to select the AI-only messages or All messages.","select-all-messages":"All Messages","select-ai-messages":"AI Messages","are-you-sure-you-want-to-delete-these-messages":"Are you sure you want to delete these messages?","all-tasks-completed":"Seems like you have completed all the tasks.\nPlease contact your manager for further instructions","error-loading-task":"Error loading the task: {{taskError}}","error-loading-chat":"Error loading the chat. You might not have access to the chat","error-chat-not-assigned":"Chat not assigned to this task","error-task-not-assigned":"Task not assigned to a user on Jira","previous-task":"Previous task","next-task":"Next task","skip-labels":"Skip","skip-labels-tooltip":"If you are unsure about what labels to use, select this option to skip labeling this message","task-id":"Task ID","instructions":"Instructions","preview-hint":"Preview Markdown","task-detail-hint":"Task details","settings-hint":"Settings","assignee":"Assignee","annotator-role":"Annotator","reviewer-role":"Reviewer","manager-role":"Manager","viewer-role":"Viewer","role-and-mode-info":"Viewing as {{role}} in {{mode}} mode","edit-hint":"Edit","readonly-hint":"Read-Only","model-server-override":"Model Server Override","toggle-thread-status-open":"Reopen","toggle-thread-status-resolved":"Resolve","toggle-thread-status-dismissed":"Dismiss","toggle-thread-status-deleted":"Delete","thread-status-open":"Open","thread-status-resolved":"Resolved","thread-status-dismissed":"Dismissed","thread-status-deleted":"Deleted","cycle-thread-severity":"Click to toggle Severity","thread-severity-info":"Info","thread-severity-error":"Error","thread-severity-warning":"Warning","add-comment":"Add comment here...","change-task-state":"Changing Task State","change-task-state-confirmation":"Are you sure you want to change the Task State to {{state}}?"},"About":{"paragraph-1":"Our mission is to empower everyone globally with personalized AI. We were founded by AI pioneers Noam Shazeer and Daniel De Freitas, and we make one of the world’s leading personal AI platforms, Character.AI. Character.AI is a full-stack AI company with a globally scaled direct-to-consumer platform. We are uniquely centered around people, letting users personalize their experience by interacting with AI “Characters.”","paragraph-2":"Character Technologies, Inc. is based in Menlo Park, CA.","paragraph-3":"We are working to put our technology into the hands of billions of people to engage with, and continuing to build personalized AI that can be helpful for any moment of your day.","join-out-community":"Join our Community","its-nice-to-see-ya":"it's nice to see ya","paragraph-7":"They are both committed to pushing the capabilities of technology for the benefit of every person.","Company":"Company","product":"Product","web-app":"Web App","iphone-app":"iPhone App","android-app":"Android App","resources":"Resources","faqs":"FAQs","safety-center":"Safety Center","learn-more":"Learn more","in-the-news":"In the News","about-c-ai":"About c.ai"},"CookieConsent":{"header-text":"We use essential cookies to make our site work. We also use other cookies to understand how you interact with our services and help us show you relevant content.","subtext":"By clicking \"Accept All\" below, you consent to our use of cookies as further detailed in our Privacy Policy.","accept-all":"Accept All","reject-all":"Reject All"},"legacy":{"_comment":"We updated our chat system and need to ask users to migrate certain older chats to our new system. This presents a simple modal explaining the users the action they need to take.","migrate-confirmation":"Your chats are migrating. Please check back in a few minutes.","migrate-body":"Looks like this chat is from the old/beta site.","migrate-note":"Note: Longer chats may take up to an hour to migrate.","migrate-action":"Migrate chat now","migrate-in-progress":"Migration in progress…","migrate-starting":"Starting migration…"},"Legal":{"terms-of-service":"Character.AI Terms of Service","privacy-policy":"Character.AI Privacy Policy","privacy-choices":"Character.AI - Your Privacy Choices","community-guidelines":"Character.AI Community Guidelines"},"EducationTooltip":{"chat-input-text":"Try sending a message in your preferred language."},"EducationCTA":{"Voice":{"title":"Characters now have a voice","description":"Hear your chats out loud","button":"Try with voice"}},"VoicePolicy":{"title":"Creating a Character Voice","item-1":"Always use Character Voices for good, and have fun!","item-2":"Never record third parties without their consent","item-3":"Don’t use protected intellectual property without approval","item-4":"Don’t use voices to engage in deepfakes, fraud, scams, or bullying","agree-btn":"Agree \u0026 Continue"},"EditVoice":{"screen":{"title":"Edit Voice","update":"Update Voice","edit-success":"Voice updated","discard-voice-confirmation":"Are you sure you want to abandon updating this voice?","delete-voice-confirmation":"Are you sure you want to delete this voice?","delete-voice-details":"This may take a few hours to be removed for everyone"}},"CreateVoice":{"cta":{"title":"Give your Characters a Voice","button-text":"Create Voice"},"screen":{"create-a-voice":"Create Voice","name-label":"Voice Name","voice-name-constraints":"Voice name is required and must be between {{min}} and {{max}} characters and contain only letters, numbers, underscore, dash, and space","gender-label":"Gender","description-label":"Description","voice-description-constraints":"Voice description must be less than {{max}} characters","generating-voice":"Generating Voice...","creating-voice":"This may take a few seconds","generate-button":"Generate Voice","visibility-label":"Visibility","save-button":"Save Voice","voice-preview-text-label":"Voice Intro","voice-preview-text-constraints":"Voice preview text must be less than {{max}} characters","upload-clip":"Upload sound","upload-clip-description":"Upload a 3-15s audio file","tap-record":"Tap to record","record-clip":"Record sound","record":"Record","stop":"Stop","rerecord":"Re-record","record-clip-description":"Record your own clip with the mic","voice-clip-length":"Upload a clip 3-15s long.","english-only":"Only English is supported at this time","clip-length-instructions":"Record a clip 3-15s long.","avoid-background-noise":"Avoid background noise.","voice-upload-error":"Error uploading voice file - please pick another one","character-voice-label":"Character Voice","select-voice-label":"Select Voice","voice-preview-instructions":"How your voice will be heard while previewing","voice-create-success":"Voice successfully created!","voice-create-success-2":"Go to a chat or Character editor to use the voice","delete-voice":"Delete Voice","sample-text-label":"Help me find what to say","try-saying":"Try saying...","voice-record-sample-text":"Once upon a time, in a land full of bouncy kangaroos and colorful parrots, Sam the sloth had a dream. He wanted to join the kangaroo hopping contest. Everyone cheered him on as he gave it his best hop.","make-voice-public":"Make voice public","make-voice-public-description":"Others can use with any Character","re-upload":"Re-upload","discard-voice-confirmation":"Are you sure you want to abandon creating this voice?","discard-voice-confirmation-details":"Your changes will not be saved","feature-not-available-region":"This feature is unavailable in your region","voice-integrity-error":"Cannot create voice","voice-integrity-error-details":"Audio clip does not meet our content policy","voice-name-integrity-error-details":"Invalid Voice name","voice-description-integrity-error-details":"Invalid Voice description","rate-voice":"How is the quality?","voice-feedback-title":"Voice Feedback","text-feedback-success":"Feedback submitted","upload-tips":"For best results, upload a clear 10-15 second audio clip (anything beyond 15s will be clipped). Avoid background noise.","upload-sound":"Upload Sound","upload-sound-desc":"Click or drag to upload an audio file","discard":"Discard","new-voice":"New Voice","voice-name-placeholder":"e.g. Albert Einstein","voice-description-placeholder":"Gentle and uplifting male with a subtle British accent","create":"Create","upload-error-too-short":"Audio file too short","upload-error-too-long":"Audio file too long","upload-error-description":"Upload a clip between 3-15 seconds"}},"VoiceVisibilityModal":{"title":"Making your voice public","description":"Anyone can discover and use this voice for their Character chats. You can always change this later.","confirm":"Confirm \u0026 Create voice","confirm-save":"Confirm \u0026 Update voice"},"Pages":{"titles":{"default":"Personalized AI for every moment of your day","about":"About","termsOfService":"Terms of Service","characterChat":"Chat with {{name}}","userProfile":"Profile of {{name}}"},"descriptions":{"default":"Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads.","characterChat":"Chat with {{name}}: {{title}}. Powered by an industry leading, AI large language model (LLM).","profileDefault":"{{name}}'s profile on Character.AI. Find or create the Character that's right for you. Chat with them, learn from them, and have fun!"}},"Interests":{"skip-button":"Skip","done-button":"Next","welcome-header":"Welcome to Character","welcome-question":"What are your interests?","custom-interests-label":"Type anything…","interests":{"homework-study-help":"Homework \u0026 Study Help","personal-growth":"Personal Growth","fitness-exercise":"Fitness \u0026 Exercise","meditation-mindfulness":"Meditation \u0026 Mindfulness","video-games":"Video Games","books-reading":"Books \u0026 Reading","movies-tv":"Movies \u0026 TV","writing":"Writing","career-advice":"Career Advice","language-learning":"Language Learning","personal-finance":"Personal Finance","productivity-time-management":"Productivity \u0026 Time Management","sports":"Sports","anime":"Anime","cooking-nutrition":"Cooking \u0026 Nutrition","travel-culture":"Travel \u0026 Culture","relationships-social-advice":"Relationships \u0026 Social Advice","news-current-events":"News \u0026 Current Events","mental-health-support":"Mental Health \u0026 Support","coding-programming":"Coding \u0026 Programming","spirituality-religion":"Spirituality \u0026 Religion","games-puzzles":"Games \u0026 Puzzles","comedy":"Comedy","interactive-storytelling":"Interactive Storytelling"},"pick-three":"Pick three or more"},"Months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"Calls":{"status-calling":"Calling...","status-no-voice-selected":"No voice selected","status-muted":"Muted","status-listening":"Listening","status-start-speaking":"Start speaking","status-ai-thinking":"AI thinking","status-tap-to-interrupt":"Tap to interrupt","hang-up":"Hang up","mute":"Mute","unmute":"Unmute","calls-available-on-the-app":"Calls available on the app","call-name":"Call {{name}}","voice-call-disconnected":"Voice call disconnected","voice-unavailable":"Voice unavailable"},"Errors":{"please-try-again-later":"Please try again later"},"SelfHarmSupport":{"title":"Help is available","body-1":"If you or someone you know is struggling or in a crisis, you're not alone. There are resources out there to help:","heading-2":"If you're in the United States","body-2":"Contact the National Suicide Prevention Lifeline at 988. Crisis workers are available 24 hours a day. Calls are free and confidential.","heading-3":"If you're in another country","body-3":"To find a crisis center near you, visit the International Association for Suicide Prevention.","body-4":"If you're thinking about engaging in self-harm or suicidal behavior, please seek help as soon as possible by contacting one of these services.","call":"Call 988","visit":"Visit findahelpline.com"},"Survey":{"title":"Share your thoughts","body":"Shape the future of Character.AI with your valuable feedback!","start-survey":"Start Survey","thank-you":"Thank you!"},"Sitemap":{"directoryResults":"Character Directory Results for: {{resultPage}}","characters":"Characters"},"Customization":{"customize":"Customize","chat-color":"Chat color","preview":"Preview","wallpaper":"Wallpaper","wallpaper-subtitle":"Customize your chat with AI-generated wallpapers","save-failed":"There was a problem saving changes. Please try again.","set-wallpaper":"Add wallpaper","generate-description":"Describe a scene, object, or character for your background","generate-placeholder":"Describe the wallpaper...","image-prompt-error-title":"Cannot create wallpaper","image-prompt-error-description":"Prompt does not meet our content policy","select-wallpaper":"Select as your wallpaper","ColorSchemes":{"red":"Red","peach":"Peach","clay":"Clay","honey":"Honey","yellow":"Yellow","green":"Green","pine":"Pine","aqua":"Aqua","blue":"Blue","indigo":"Indigo","purple":"Purple","silver":"Silver","grey":"Grey","black":"Black"}},"SignInDialog":{"heading":"Sign in","invite-code":"Invite code:"},"SignUpDialog":{"heading-1":"Immerse yourself in interactive entertainment","heading-2":"One last step...","subheading-1":"With Character.ai","subheading-2":"What year were you born"},"social":{"view-profile":"View profile"},"Social":{"kick-user":"Kick user"},"Birthdate":{"error-general":"An error occurred when trying to update your birthday. Visit support.character.ai"},"Invite":{"share-short-cta":"Invite","share-cta":"Claim your free month of c.ai+","accept-header-2":"has invited you to Character.ai","accept-description":"Accept the invite and claim your free month of \u003c2\u003ec.ai+\u003c/2\u003e to start chatting with millions of Characters that hear you, understand you and remember you.","accept-cta":"Accept Invite","invite-header":"Invite friends, Get a free month of \u003c2\u003ec.ai+\u003c/2\u003e","invite-description":"For every friend you invite that joins Character, earn a month free of turbo messages, better memory \u0026 more with \u003c2\u003ec.ai+\u003c/2\u003e\u003c3\u003eNot available to existing c.ai+ members that have already created accounts via iOS or Android.\u003c/3\u003e","invite-non-owner-description":"Share with friends to help them and {{name}} get free months of \u003c1\u003ec.ai+\u003c/1\u003e","invite-cta":"Invite now","invite-logged-in-cta":"Share","back-home":"Back to Character.ai","referral-status":"See your referral status","profile-cta":"Get invite code","meta":{"title":"Claim your free month of c.ai+","schema":{"about":"You have been invited to Character.ai","recipient":"You","name":"{{agent}}'s invite to Character.ai","alternate-name":"Character.ai Invite","description":"{{name}} (@{{username}}) has invited you to claim a free month of Character.ai"}},"upsell":{"upsell-text":"Share your invite code with friends and both of you will earn a free month of \u003c1\u003ec.ai+\u003c/1\u003e","cta":"Get invite code"},"status":{"title":"Get inviting!","title-max-redeemed":"Thank you!","title-ineligible":"Thank you!","redemption-info-header_one":"You've helped {{count}} friend claim a free month","redemption-info-header_other":"You've helped {{count}} friends claim a free month","reward-info-header":"You've earned {{count}} of {{max}} free months","reward-info-header-all":"You've earned all {{max}} available free months","last-reward-at":"Last month earned on {{lastRewardAtString}}"},"eligibility":{"ineligible-subscription-type":"You currently don't meet the requirements to receive any free months. Any new users that signup with your code will still receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e\u003cbr/\u003e","ineligible-max-redeemed":"You have already received the maximum rewards for inviting friends, amazing! Any new users that signup with your code will still receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e\u003cbr/\u003e","eligible_one":"Congrats! You're eligible for {{count}} more free month by inviting {{count}} more friend. Any new users that signup with your code will also receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e","eligible_other":"Congrats! You're eligible for {{count}} more free months by inviting {{count}} more friends. Any new users that signup with your code will also receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e"}},"Email":{"signin-link-preview":"Sign in to Character.AI","signin-link-main":"Your sign in link for Character.AI","signin-button":"Login to Character.AI","signin-link-instructions":"This link and code will only be valid for a short time. If the link does not work, you can use the link below directly:"},"Games":{"beta":"Beta","score":"Score","points":"Points","judge":"Judge","you":"You","opponent":"Opponent","to":"to","play":"Play","play-again":"Play Again","stop-game":"Stop Game","play-a-game":"Play a Game","interrupted":"You've stopped the game!","you-started-game":"You've started {{ gameName }}","rules":"Rules","this-character":"this character","your-high-scores":"YOUR HIGH SCORES","select-a-game":"Select a game to play with {{ characterName }}","your-friend":"your friend","default-description":"Play a word game with {{ characterName }}","oops-description":"You lost! Try again?","win-description":"You won! You earned {score} Points","stop-description":"You stopped the game!","same-thing-you-win":"Same thing! You win!","too-many-turns-you-lose":"Too many turns, you lost!","guess-word-you-win":"{{ characterName }} said, \"{{ word }}\". You win!","you-said-forbidden-word":"You said a forbidden word!"}},"user":null,"lang":"*","token":null,"ipCountry":"IN","localeCountry":"","locale":"*","dehydratedState":{"mutations":[],"queries":[]},"ampVariants":{"alt-chat-style":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"annotation-tool":{"key":"off","metadata":{"default":true}},"appsflyer-smart-banner":{"key":"treatment","metadata":{"experimentKey":"exp-4"},"value":"treatment"},"audio-annotation-tool":{"key":"off","metadata":{"default":true}},"birthdate-international":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"cai-plus-chat-customization":{"key":"on","value":"on"},"cai-plus-chat-upgrade-turbo-upsell":{"key":"off","metadata":{"default":true}},"cai-plus-features-relaunch":{"key":"on","value":"on"},"cai-plus-relaunch":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"category-carousel-v1":{"key":"treatment","metadata":{"experimentKey":"exp-2"},"value":"treatment"},"char-profile-link":{"key":"off","metadata":{"default":true}},"character-calls":{"key":"treatment","metadata":{"experimentKey":"exp-5"},"value":"treatment"},"character-calls-web":{"key":"treatment","metadata":{"experimentKey":"exp-2"},"value":"treatment"},"character-comments":{"key":"off","metadata":{"default":true}},"character-creation-dialog-ux":{"key":"off","metadata":{"default":true}},"character-profile":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"character-voices":{"key":"off","metadata":{"default":true}},"chat-improvements":{"key":"off","metadata":{"default":true}},"chat-improvements-2":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"create-character-voices":{"key":"off","metadata":{"default":true}},"creator-info":{"key":"off","metadata":{"default":true}},"creator-leaderboard":{"key":"off","metadata":{"default":true}},"default-voice":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"default-voice-dev":{"key":"off","metadata":{"default":true}},"demote-system-voices":{"key":"start-index-10","metadata":{"experimentKey":"exp-1"},"payload":{"startIndex":10},"value":"start-index-10"},"discord-account-linking":{"key":"on","value":"on"},"edit-messages":{"key":"off","metadata":{"default":true}},"email-autocorrect":{"key":"treatment","metadata":{"experimentKey":"exp-4"},"value":"treatment"},"enable-ssr":{"key":"off","metadata":{"default":true}},"eu-user":{"key":"control","value":"control"},"existing-user-birthday-picker":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"featured-creators":{"key":"off","metadata":{"default":true}},"featured-voices":{"key":"off","metadata":{"default":true}},"featured-voices-2":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"payload":{"featuredVoices":[{"id":"c14030ae-8405-11ee-b277-020017084944","name":"Zoey"},{"id":"60f440aa-8405-11ee-b277-020017084944","name":"Marie"},{"id":"46e7f596-8403-11ee-b277-020017084944","name":"Ignacio"},{"id":"2372d060-8401-11ee-b277-020017084944","name":"Taz"},{"id":"9815283b-47d7-4582-a98a-6890b9437d11","name":"Galen"},{"id":"06b4d874-d5ad-4290-b826-7ab90b39584d","name":"Ollie"},{"id":"78bfe953-3383-4790-913a-5f9273455b20","name":"Tala"},{"id":"91b464b9-2059-478a-b8e7-e10eb010cfb2","name":"Quinn"},{"id":"7bbee55e-a175-4cd6-b1d3-01187f9ec8d1","name":"Bodie"},{"id":"575b598d-adb4-41b5-b397-8a1f9895a39a","name":"Teacher"},{"id":"15590647-9362-40f7-a844-cd6d7104333f","name":"British"},{"id":"33c7753d-de43-4a8c-8175-e1a9a70aeced","name":"Vampire Bodyguard"},{"id":"b5902d7c-c7c0-4595-adf9-c919d6562513","name":"Francis"},{"id":"dfc3713a-b1c5-4095-92d4-bd2273682621","name":"Woman"},{"id":"0362127d-8061-429e-ae13-d4b77a05088f","name":"Bodyguard"},{"id":"607a8514-3d19-4e92-a64d-1756bb15f12a","name":"The Narrator"},{"id":"3592c5b5-7a3d-47fb-ab73-9eb90abba4f9","name":"African lady"},{"id":"b62c616c-7866-44fd-8572-58b63c4bd014","name":"Soft Bubbly"},{"id":"10e5e436-970a-4ae3-ad44-92f913754e29","name":"Southern"},{"id":"ef2d3be6-f59f-46b0-b8c3-999f9b31faa6","name":"Robot"},{"id":"71a78566-602f-4a39-8df0-aec30e246b4b","name":"Hailey"},{"id":"c1055228-7055-4958-b13d-cd06a5f0ad77","name":"French"},{"id":"0ec30b76-7d01-4519-a2da-6b3a29e7a9fb","name":"Hood"},{"id":"104924c4-53ea-4e3e-b54a-09e395304598","name":"Indian Girl Accent"},{"id":"ed478e86-6482-46da-8329-d405788ff155","name":"A French Girl"},{"id":"749401a6-fa67-4fed-9456-4ba504c46c77","name":"Male Russian Accent"},{"id":"a5d2813b-29ec-4d5f-beaa-94d7a6684a03","name":"Irish"}]},"value":"treatment"},"fullscreen-subscription-upsell":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"google-idp-auth":{"key":"on","value":"on"},"google-one-tap-login":{"key":"off","metadata":{"default":true}},"guide-search":{"key":"all-pages","metadata":{"experimentKey":"exp-1"},"value":"all-pages"},"holdout-feature-holdout":{"key":"off","metadata":{"default":true}},"homepage-v1-endpoints":{"key":"featured-v1","metadata":{"experimentKey":"exp-1"},"value":"featured-v1"},"language-chat-tooltip":{"key":"off","metadata":{"default":true}},"migrate-enabled":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"mobile-date-field":{"key":"google-style","metadata":{"experimentKey":"exp-1"},"value":"google-style"},"mobile-signup-redirect":{"key":"off","metadata":{"default":true}},"multiple-personas":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"pinned-messages":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"profile-subscription-banner":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"public-profile-redesign":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"recaptcha-enabled":{"key":"on","value":"on"},"remove-character":{"key":"off","metadata":{"default":true}},"remove-extra-amp-cookie":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"search-creators":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"select-language":{"key":"off","metadata":{"default":true}},"show-mu-banner":{"key":"off","metadata":{"default":true}},"sign-up-in":{"key":"treatment","metadata":{"experimentKey":"exp-6"},"value":"treatment"},"signup-to-chat-exp":{"key":"off","metadata":{"default":true}},"smart-custom-feedback-label-ordering":{"key":"off","metadata":{"default":true}},"suggested-replies":{"key":"off","metadata":{"default":true}},"top-header-blue-brand":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"user-persona":{"key":"off","metadata":{"default":true}},"voice-memo":{"key":"treatment","metadata":{"experimentKey":"exp-2"},"value":"treatment"},"voice-memo-dev":{"key":"off","metadata":{"default":true}},"voice-overrides-migration":{"key":"phase-2","value":"phase-2"},"voice-v3":{"key":"cloning-and-search","metadata":{"experimentKey":"exp-3"},"payload":{"cloning":true,"search":true,"tts":true},"value":"cloning-and-search"},"voice-web":{"key":"cloning-and-search","metadata":{"experimentKey":"exp-1"},"payload":{"cloning":true,"search":true,"tts":true},"value":"cloning-and-search"},"web-next-hero-scenarios":{"key":"off","metadata":{"default":true}},"web-next-opt-in":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"webnext":{"key":"on","value":"on"}},"statsigProps":{"user":{"customIDs":{"deviceID":"113bb295-7f7c-4f20-ae29-45f7a7f6a908"},"locale":"*","country":"","userAgent":"node","ip":"2409:40e6:29:1884:8000::","statsigEnvironment":{"tier":"production"}},"values":{"feature_gates":{"h+7YPBx+pqcr7fJDRPlUtX09tbptG/Nv5d/pxkGfxEo=":{"name":"h+7YPBx+pqcr7fJDRPlUtX09tbptG/Nv5d/pxkGfxEo=","value":false,"rule_id":"4060ehWhxr7YQN2KzTd10e","secondary_exposures":[]},"L/OFbrPDaKs2Qx6e2VYt5b38ztjKiwobErEesOR5yG4=":{"name":"L/OFbrPDaKs2Qx6e2VYt5b38ztjKiwobErEesOR5yG4=","value":false,"rule_id":"3OwF1S0x6MJYVqJWjhKPd8:0.00:5","secondary_exposures":[]},"dHnENwtUkdl/Qi2ut20+T4qbYdZUykvim5usgsycnkg=":{"name":"dHnENwtUkdl/Qi2ut20+T4qbYdZUykvim5usgsycnkg=","value":false,"rule_id":"7mPdFF80SMYU6KlYk6uQGf:0.00:1","secondary_exposures":[]},"Gbm6czeNSEW6q2mAdDKxIae9n6AbcuzoZ1yJgW6YScI=":{"name":"Gbm6czeNSEW6q2mAdDKxIae9n6AbcuzoZ1yJgW6YScI=","value":false,"rule_id":"default","secondary_exposures":[]},"YInuI1mJMy2mtzDnIMILmJCIXRQSCmrI3Z8aniEbZLQ=":{"name":"YInuI1mJMy2mtzDnIMILmJCIXRQSCmrI3Z8aniEbZLQ=","value":true,"rule_id":"disabled","secondary_exposures":[]},"Tl4J53h8ETMu5oxo1/Rc5n0XjZCk2kudnYZlUhXV44g=":{"name":"Tl4J53h8ETMu5oxo1/Rc5n0XjZCk2kudnYZlUhXV44g=","value":false,"rule_id":"default","secondary_exposures":[]},"NIJgMOyMwPkEtVFrNl6ByU4T4BRnzyfC83b7wqCvqCU=":{"name":"NIJgMOyMwPkEtVFrNl6ByU4T4BRnzyfC83b7wqCvqCU=","value":false,"rule_id":"default","secondary_exposures":[]},"ksomsXTBeBkkU8FKhV/Lb9hlxX24bdcL5cX3uF8Eo2o=":{"name":"ksomsXTBeBkkU8FKhV/Lb9hlxX24bdcL5cX3uF8Eo2o=","value":false,"rule_id":"default","secondary_exposures":[]},"kKPJEf3ewG+816B1hwEvZa3sgqKYfbJvwnGC8ShIlgU=":{"name":"kKPJEf3ewG+816B1hwEvZa3sgqKYfbJvwnGC8ShIlgU=","value":false,"rule_id":"default","secondary_exposures":[]},"jFdCBekTDowpfNZ1eEMOPrbocYpkBQCoq7m09RHc9HQ=":{"name":"jFdCBekTDowpfNZ1eEMOPrbocYpkBQCoq7m09RHc9HQ=","value":false,"rule_id":"default","secondary_exposures":[]},"1ydlvCWToPKsH5XJzri02t3acJl78cp+zUvH14FIU5M=":{"name":"1ydlvCWToPKsH5XJzri02t3acJl78cp+zUvH14FIU5M=","value":false,"rule_id":"default","secondary_exposures":[]},"8QQv9KaHgQjzpfAtzEgGzU1oDHiexPcw3FdHmGDinz0=":{"name":"8QQv9KaHgQjzpfAtzEgGzU1oDHiexPcw3FdHmGDinz0=","value":true,"rule_id":"2LdP4LdBsZrRl11isIjv48:100.00:2","secondary_exposures":[]},"PsRtJJ9DXoIsQ2M+qjawbhgmzgu1n7Yh2CKZQ74icmU=":{"name":"PsRtJJ9DXoIsQ2M+qjawbhgmzgu1n7Yh2CKZQ74icmU=","value":true,"rule_id":"24zPeKC8HD0k8MUIh4ev1N:100.00:4","secondary_exposures":[]},"FWIgZUPadkEjwhvVJGdPCoqvSciol0TJc1L+Z39+QAY=":{"name":"FWIgZUPadkEjwhvVJGdPCoqvSciol0TJc1L+Z39+QAY=","value":false,"rule_id":"default","secondary_exposures":[]},"iYvNTZ+eLnZsF1E9Trpd0XxFXOb69vRmWzFjBdVdvfg=":{"name":"iYvNTZ+eLnZsF1E9Trpd0XxFXOb69vRmWzFjBdVdvfg=","value":false,"rule_id":"1Lkw4aILsPSft0DRsYeOLM:20.00:3","secondary_exposures":[]},"+mzfcPCvrTVGMk3TsM6HalO39VYVFNiFs4p+jcYv/GI=":{"name":"+mzfcPCvrTVGMk3TsM6HalO39VYVFNiFs4p+jcYv/GI=","value":false,"rule_id":"default","secondary_exposures":[]},"UWLa1IrwvT1eKWTtEu/AMJcrIlY3vV8MjuCVpyX6Iyc=":{"name":"UWLa1IrwvT1eKWTtEu/AMJcrIlY3vV8MjuCVpyX6Iyc=","value":true,"rule_id":"1uYkDsXaBJPBmoIg9iAkwU:100.00:1","secondary_exposures":[]},"gooo7WYI0i1XWSW4dRRw18GxCq6p003DBZcOKp7oMjc=":{"name":"gooo7WYI0i1XWSW4dRRw18GxCq6p003DBZcOKp7oMjc=","value":false,"rule_id":"6RkNmMiNFDlFOLJeX8wloa:0.00:1","secondary_exposures":[]},"xUzEZkwTXvwZpmzFxpH0ahOoeWihDv3htQWtRz/Uv/A=":{"name":"xUzEZkwTXvwZpmzFxpH0ahOoeWihDv3htQWtRz/Uv/A=","value":false,"rule_id":"default","secondary_exposures":[]},"yMkjuHBtXPBJruHeAK5sXcSCf1/aWjzKnu2QT5DxQGA=":{"name":"yMkjuHBtXPBJruHeAK5sXcSCf1/aWjzKnu2QT5DxQGA=","value":true,"rule_id":"CY9XTFxaSn25OIjRfq3iE","secondary_exposures":[]},"qUSU2hQ9h9IzNnrdCoQO/LUi7QIh2ME28OY4O+qUrRY=":{"name":"qUSU2hQ9h9IzNnrdCoQO/LUi7QIh2ME28OY4O+qUrRY=","value":false,"rule_id":"6AD9T7Oq8qtKyYgm1wHoqQ:0.00:2","secondary_exposures":[]},"8ercpzJStFxBfc/hG3QZy5CHqj39EoXPFBrCLp5xwd0=":{"name":"8ercpzJStFxBfc/hG3QZy5CHqj39EoXPFBrCLp5xwd0=","value":false,"rule_id":"disabled","secondary_exposures":[]},"munsm+NH4c9b/f1+s9wImnYVqwaRyVpAudjgJMTuszY=":{"name":"munsm+NH4c9b/f1+s9wImnYVqwaRyVpAudjgJMTuszY=","value":true,"rule_id":"disabled","secondary_exposures":[]},"0+McNC+jAAFtlyIn1UPhgKM32U4M0STKtD+Os+VRSvE=":{"name":"0+McNC+jAAFtlyIn1UPhgKM32U4M0STKtD+Os+VRSvE=","value":true,"rule_id":"disabled","secondary_exposures":[]},"a2J8IRQ4DM9OVpwV2DRp8RJHYevi1wRSxWa3G+DUoMc=":{"name":"a2J8IRQ4DM9OVpwV2DRp8RJHYevi1wRSxWa3G+DUoMc=","value":true,"rule_id":"disabled","secondary_exposures":[]},"2Wz949I4Ox5Gse/X6BPw/ead9CWvtBWCJExqqNEQryE=":{"name":"2Wz949I4Ox5Gse/X6BPw/ead9CWvtBWCJExqqNEQryE=","value":true,"rule_id":"6RUYGt7ebt3rd4t82vwvmw:100.00:10","secondary_exposures":[]},"YQh6spQ3wkZx84HSo3cxCgasvla9uLVcwL2Hn2seVT0=":{"name":"YQh6spQ3wkZx84HSo3cxCgasvla9uLVcwL2Hn2seVT0=","value":false,"rule_id":"default","secondary_exposures":[]},"/XNVQ0R9Q4Tt+Yy/YDV/c/cB205n+5GqFXc/5f9T1nE=":{"name":"/XNVQ0R9Q4Tt+Yy/YDV/c/cB205n+5GqFXc/5f9T1nE=","value":false,"rule_id":"default","secondary_exposures":[]}},"dynamic_configs":{"CFjf8nVvBN2mehK36rPDmXNAlej8kVVUVW65CKDAALI=":{"name":"CFjf8nVvBN2mehK36rPDmXNAlej8kVVUVW65CKDAALI=","value":{"surveyURL":""},"group":"disabled","rule_id":"disabled","is_device_based":false,"secondary_exposures":[]},"qCO4y3/B/TLDA69Oqnq62YzZwhqzPLP81r0WHqt8KHc=":{"name":"qCO4y3/B/TLDA69Oqnq62YzZwhqzPLP81r0WHqt8KHc=","value":{},"group":"default","rule_id":"default","is_device_based":false,"secondary_exposures":[]},"IRXh/YfFKgtuW27QW+WbHZ8uLtmJEMikOvdjGXFZP6M=":{"name":"IRXh/YfFKgtuW27QW+WbHZ8uLtmJEMikOvdjGXFZP6M=","value":{},"group":"default","rule_id":"default","is_device_based":false,"secondary_exposures":[]},"njue/3phRwU+CoVAd5W8BdWWQ6P3xab5W10k5bXemk0=":{"name":"njue/3phRwU+CoVAd5W8BdWWQ6P3xab5W10k5bXemk0=","value":{"signupToChat":true},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"2Gshm8MlYQTQa4l/2ichfZljcZ2N5cVqxH3kTnnBqR8=":{"name":"2Gshm8MlYQTQa4l/2ichfZljcZ2N5cVqxH3kTnnBqR8=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"abandoned","rule_id":"abandoned","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["maxRecentSearchQueries"],"is_user_in_experiment":false,"is_experiment_active":false,"is_in_layer":true},"8z+bN2OrattITwd/ZMXzCv2GCepaJi2b4ngIwjytNps=":{"name":"8z+bN2OrattITwd/ZMXzCv2GCepaJi2b4ngIwjytNps=","value":{},"group":"layerAssignment","rule_id":"layerAssignment","is_device_based":false,"secondary_exposures":[{"gate":"staff","gateValue":"false","ruleID":"default"},{"gate":"is_staff","gateValue":"false","ruleID":""}],"is_user_in_experiment":false,"is_experiment_active":true},"Dja7K8EiFEZnYZNeWnVWVnDGp1iwLswLiKxqUg48h+c=":{"name":"Dja7K8EiFEZnYZNeWnVWVnDGp1iwLswLiKxqUg48h+c=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["useNeo"],"is_user_in_experiment":false,"is_experiment_active":false,"is_in_layer":true},"lZwZUuIaq5EUkNHkkmzJrk1rXoCiqVTuPfdRoYeoSEM=":{"name":"lZwZUuIaq5EUkNHkkmzJrk1rXoCiqVTuPfdRoYeoSEM=","value":{"enabled":true,"variant":"newcopy"},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"ypQypVB9lkE6Bv598hnvX+P8rK2ztQ0rn1iJuFCmTwo=":{"name":"ypQypVB9lkE6Bv598hnvX+P8rK2ztQ0rn1iJuFCmTwo=","value":{},"group":"layerAssignment","rule_id":"layerAssignment","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":true},"1ZCcUEd7Hjus0DdvhZZsGrfDvN+JZA96KUu1qx76Nkk=":{"name":"1ZCcUEd7Hjus0DdvhZZsGrfDvN+JZA96KUu1qx76Nkk=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"prestart","rule_id":"prestart","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["maxRecentSearchQueries","useNeo"],"is_user_in_experiment":false,"is_experiment_active":false,"is_in_layer":true},"c4oHsZKhZ31W4H/cTtfwN0tX5RfkIDrBwcjmIQGvirk=":{"name":"c4oHsZKhZ31W4H/cTtfwN0tX5RfkIDrBwcjmIQGvirk=","value":{},"group":"inlineTargetingRules","rule_id":"inlineTargetingRules","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":true},"EoJq7AhQxrJ7QGOjpI18Q7ZmF+Y8m4wv5riwrWsDytM=":{"name":"EoJq7AhQxrJ7QGOjpI18Q7ZmF+Y8m4wv5riwrWsDytM=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"layerAssignment","rule_id":"layerAssignment","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["maxRecentSearchQueries"],"is_user_in_experiment":false,"is_experiment_active":true,"is_in_layer":true},"7agBIKa6IQnLPdkfDnifnAW7IQ/llLOjUDb1sCtKBr0=":{"name":"7agBIKa6IQnLPdkfDnifnAW7IQ/llLOjUDb1sCtKBr0=","value":{"enabled":true,"variant":"border"},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"0VC8QXe1x8olL50kQHwzTdZ11C7sS9pXNpvhiRq485M=":{"name":"0VC8QXe1x8olL50kQHwzTdZ11C7sS9pXNpvhiRq485M=","value":{"fasterResponsesFeatured":"treatment2"},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"GMrm494Za7TTKhGlUTG3j4678dUX65thGagjdYbyUIk=":{"name":"GMrm494Za7TTKhGlUTG3j4678dUX65thGagjdYbyUIk=","value":{"topics":{"role-playing":[{"name":"adventure","avatar":"uploaded/2022/12/8/qGJwWgN8hd239JzBzNMQPZDEZqcimkjiI4ZX_nAp1wM.webp?webp=true\u0026anim=0"},{"name":"anime","avatar":"uploaded/2022/11/17/k-quDTyIA3DbTYx29WrCP7TeP3Ja1alBwb2lh0SBZp8.webp?webp=true\u0026anim=0"},{"name":"fantasy","avatar":"uploaded/2023/9/5/SzgXYcomBhxzULfEKZjJVu-Ol6gXG1uJi-XkP94YrLw.webp?webp=true\u0026anim=0"},{"name":"history","avatar":"uploaded/2022/10/7/bL8CTNt4D0nXfHw1u_m3SmHU6lgDIzyFQzh_LOuJLU8.webp?webp=true\u0026anim=0"},{"name":"lgbtq","mature":true,"avatar":"uploaded/2024/12/3/KVophpx5SCLsblzcnPlEs6Up2b7x9zc-9SD_LrelWnM.webp?webp=true\u0026anim=0"},{"name":"mystery","avatar":"uploaded/2024/9/25/WJCv1u-wHUuGEhg6KaCi5tcwKRKApmVLacNwNhC-dlc.webp?webp=true\u0026anim=0"},{"name":"paranormal","avatar":"uploaded/2023/7/19/qHTNxqOKJqjXP5fgt2D9gYyMO98bYynWjHEhkDUFuZk.webp?webp=true\u0026anim=0"},{"name":"religion","mature":true,"avatar":"uploaded/2024/12/3/UqxbVRvPUayuT0E4lZ7JVj_9JH1cXsdqImhuY_s4CWk.webp?webp=true\u0026anim=0"},{"name":"romance","mature":true,"avatar":"uploaded/2024/12/3/HSuMFZgzkcln8ckM973ONiSufT2oO7SoH3kWgcMT_jk.jpg?webp=true\u0026anim=0"},{"name":"sci_fi","avatar":"uploaded/2022/10/9/AAUwehKov9h542rgBceGQ2L-MkjwMBSxoDgSsUkXIO4.webp?webp=true\u0026anim=0"}],"lifestyle":[{"name":"friendship","avatar":"uploaded/2024/11/29/14ndMsDtlgUnDdgqPFhBPOuYQ9PuOeww5Xx42cFZZxw.webp?webp=true\u0026anim=0"},{"name":"emotional_wellness","avatar":"uploaded/2024/7/11/e2DukE3QcFKQzID2oktGtaihF6t8drdi-MhuCgl0G2U.webp?webp=true\u0026anim=0"},{"name":"personal_growth","avatar":"uploaded/2023/4/21/Q0STz0Q87AN-Tsi74aXkF1_OCaZc3ivtekCIusPEqq8.webp?webp=true\u0026anim=0"}],"entertainment":[{"name":"humor","avatar":"uploaded/2024/11/29/RmWcGFxRpdOXKhFbh_4iA0FQYL7ExdxagJIpx7839KI.webp?webp=true\u0026anim=0"},{"name":"games","avatar":"uploaded/2024/2/8/ND0aDvzoaXqkq7FmjzqPWenQGiy1Tbgj-VtHdNFvAVs.webp?webp=true\u0026anim=0"},{"name":"astrology","avatar":"uploaded/mSZnfioPQeMtE9sA9q6uYnVZILMosnWn21wYaaDgi6U.webp?webp=true\u0026anim=0"},{"name":"fortune_tellers","avatar":"uploaded/2024/4/19/0t0WEdtSbFTrr1UccoPZ4SNv3dVVEi0xnFrRtkoJEMc.webp?webp=true\u0026anim=0"}],"productivity":[{"name":"learn_a_language","avatar":"uploaded/2024/9/6/yvgM1ito9vd3ERDMRUZ1QjmkpmMyU7j1-8O7mplepIo.webp?webp=true\u0026anim=0"},{"name":"speaking_practice","avatar":"uploaded/2022/11/2/8ClONPmny_VAZCy1XQN5wXmRMjEGTuNtrYNmKjmGz2I.webp?webp=true\u0026anim=0"},{"name":"assistants","avatar":"uploaded/2022/10/30/G6oTv-WmT-nfPfk76KSB-57ibDivunOFyTV88GleID8.webp?webp=true\u0026anim=0"},{"name":"creative_writing","avatar":"uploaded/2022/11/1/jN7L5f1Km0PE0HNAKJezNV6gRvOHC6jgYmgO8ovM9JY.webp?webp=true\u0026anim=0"}]},"showSkip":false,"enabled":true},"group":"4HwORXjmFJqTmRLwlbdJwY","rule_id":"4HwORXjmFJqTmRLwlbdJwY","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":true,"is_experiment_active":true}},"layer_configs":{"j8+KQ7Fzq0lE7Q9TSaDKyyg7w67BjTlR5g04i5EJ75o=":{"name":"j8+KQ7Fzq0lE7Q9TSaDKyyg7w67BjTlR5g04i5EJ75o=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"default","rule_id":"default","is_device_based":false,"secondary_exposures":[],"explicit_parameters":[],"undelegated_secondary_exposures":[]}},"sdkParams":{},"has_updates":true,"generator":"statsig-node-lite-sdk","sdkInfo":{"sdkType":"statsig-node-lite","sdkVersion":"0.3.0"},"time":1734570837653,"evaluated_keys":{"customIDs":{"deviceID":"113bb295-7f7c-4f20-ae29-45f7a7f6a908"}},"hash_used":"sha256","user":{"customIDs":{"deviceID":"113bb295-7f7c-4f20-ae29-45f7a7f6a908"},"locale":"*","country":"","userAgent":"node","ip":"2409:40e6:29:1884:8000::","statsigEnvironment":{"tier":"production"}}}},"accountIneligible":false,"trpcStateCompressed":"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","_sentryTraceData":"16b08fcdc31244fca983d4fd740ef7ab-abd99220f409c9f2-0","_sentryBaggage":"sentry-environment=production,sentry-release=ba78a6d3aeedef346915fc24f6715306d13f4c55,sentry-public_key=ec9642a19be21b8d99b816d70ffad372,sentry-trace_id=16b08fcdc31244fca983d4fd740ef7ab,sentry-sample_rate=0.001,sentry-transaction=%2F,sentry-sampled=false"},"__N_SSP":true},"page":"/","query":{},"buildId":"fLM9WbWi4SpM7aUCFSFEj","isFallback":false,"dynamicIds":[3216],"gssp":true,"customServer":true,"scriptLoader":[]}</script><script nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script async="" src="/_next/static/chunks/3216.659bfcf760618cdc.js"></script><script src="/_next/static/chunks/webpack-d6a17200e906e289.js" async=""></script><script src="/_next/static/chunks/framework-ed8cc3c33d3f647c.js" async=""></script><script src="/_next/static/chunks/main-6175319feaec779b.js" async=""></script><script src="/_next/static/chunks/pages/_app-d0a802f0d4bd58ca.js" async=""></script><script src="/_next/static/chunks/aeb74aa0-38e5e71941fdf07a.js" async=""></script><script src="/_next/static/chunks/8092-586fc6bb614207df.js" async=""></script><script src="/_next/static/chunks/pages/index-9c39f6ed38dcdbc6.js" async=""></script><script src="/_next/static/fLM9WbWi4SpM7aUCFSFEj/_buildManifest.js" async=""></script><script src="/_next/static/fLM9WbWi4SpM7aUCFSFEj/_ssgManifest.js" async=""></script></body></html>
Codespaces
Status: 200
Status Text: OK
Response Body: <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><title>character.ai | Personalized AI for every moment of your day</title><meta name="description" content="Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads."/><meta property="og:type" content="website"/><meta property="og:title" content="character.ai | Personalized AI for every moment of your day"/><meta property="og:image" content="https://character.ai/character-ai.jpg"/><meta property="og:description" content="Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads."/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/><meta name="apple-itunes-app" content="app-id=1671705818"/><meta name="next-head-count" content="9"/><link rel="icon" href="/favicon.ico" sizes="any"/><link rel="icon" type="image/svg+xml" href="/icon.svg"/><meta name="next-font-preconnect"/><link rel="preload" href="/_next/static/media/05671187b3ec025d.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/media/a34f9d1faa5f3315.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/css/3809e6f163683140.css" as="style"/><link rel="stylesheet" href="/_next/static/css/3809e6f163683140.css" data-n-g=""/><noscript data-n-css=""></noscript><link rel="preload" href="/_next/static/chunks/3216.659bfcf760618cdc.js" as="script"/><link rel="preload" href="/_next/static/chunks/webpack-d6a17200e906e289.js" as="script"/><link rel="preload" href="/_next/static/chunks/framework-ed8cc3c33d3f647c.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-6175319feaec779b.js" as="script"/><link rel="preload" href="/_next/static/chunks/pages/_app-d0a802f0d4bd58ca.js" as="script"/><link rel="preload" href="/_next/static/chunks/aeb74aa0-38e5e71941fdf07a.js" as="script"/><link rel="preload" href="/_next/static/chunks/8092-586fc6bb614207df.js" as="script"/><link rel="preload" href="/_next/static/chunks/pages/index-9c39f6ed38dcdbc6.js" as="script"/><style id="__jsx-2063949595">:root{--font-inter:'__Inter_1fc7a2';--font-onest:'__Onest_9b70a6'}</style></head><body><div id="__next"><script>!function(){try{var d=document.documentElement,c=d.classList;c.remove('light','dark');var e=localStorage.getItem('theme');if('system'===e||(!e&&true)){var t='(prefers-color-scheme: dark)',m=window.matchMedia(t);if(m.media!==t||m.matches){d.style.colorScheme = 'dark';c.add('dark')}else{d.style.colorScheme = 'light';c.add('light')}}else if(e){c.add(e|| '')}if(e==='light'||e==='dark')d.style.colorScheme=e}catch(e){}}()</script><div data-overlay-container="true"><div class="Toastify"></div><main class="h-full"><style>
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #29D;
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #29D, 0 0 5px #29D;
opacity: 1;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: #29D;
border-left-color: #29D;
border-radius: 50%;
-webkit-animation: nprogresss-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style><div class="relative"><div class="flex"><main class="flex-1 min-h-screen max-w-full"></main></div></div></main></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"i18n":{"Guide":{"character-book":"Character Book","blog":"Blog","home":"Home","chats":"Chats","discover":"Discover","create":"Create","character":"Character","voice":"Voice","remove-from-recents":"Remove from recents","RecentChatCategoryTitles":{"today":"Today","yesterday":"Yesterday","this-week":"This Week","last-week":"Last Week","this-month":"This Month","a-while-ago":"A While Ago"},"recent-chats":"Recent chats","research":"Research"},"Categories":{"adventure":"Adventure","advice-and-connection":"Advice \u0026 Connection","all":"All","anime":"Anime","assistants":"Assistants","astrology":"Astrology","creative_writing":"Creative Writing","creativity":"Creativity","emotional_support":"Emotional Support","emotional_wellness":"Emotional Wellness","entertainment":"Entertainment","entertainment-and-gaming":"Entertainment \u0026 Gaming","fantasy":"Fantasy","fortune_tellers":"Fortune Tellers","friendship":"Friendship","games":"Games","games-and-puzzles":"Games \u0026 Puzzles","health-and-wellness":"Health \u0026 Wellness","history":"History","history-and-philosophy":"History \u0026 Philosophy","humor":"Humor","language-learning":"Language Learning","learn_a_language":"Learn a Language","learning":"Learning","lgbtq":"LGBTQ+","lifestyle":"Lifestyle","music_and_audio":"Music","mystery":"Mystery","paranormal":"Paranormal","parody":"Parody","personal_growth":"Personal Growth","productivity":"Productivity","professional":"Professional","religion":"Religion","role-playing":"Role Playing","romance":"Romance","role-playing-games":"Role Playing Games","rpg-and-puzzles":"RPG \u0026 Puzzles","school-and-homework":"School \u0026 Homework","sci-fi":"Sci-Fi","sci_fi":"Sci-Fi","speaking_practice":"Speaking Practice","technology_and_coding":"Technology \u0026 Coding","trivia":"Trivia","trending":"Trending","video_games":"Video Games","writing":"Creativity \u0026 Writing"},"Feed":{"for-you":"For you","try-these":"Try these","featured":"Featured","try-saying":"Try saying","because-you-liked":"Because you liked {{ name }}","because-you-chatted":"Because you chatted with {{ name }}","UseCases":{"practice-a-new-language":"Practice a new language","brainstorm-ideas":"Brainstorm ideas","get-book-recommendations":"Get book recommendations","plan-a-trip":"Plan a trip","practice-interviewing":"Practice interviewing","write-a-story":"Write a story","play-a-game":"Play a game","help-me-make-a-decision":"Help me make a decision"},"with-character":"with {{name}}","Categories":{"All":"All","Anime":"Anime","Helpers":"Helpers","Anime Game Characters":"Anime Game Characters","Games":"Games","Game Characters":"Game Characters","Comedy":"Comedy","VTuber":"VTuber","Books":"Books","Image Generating":"Image Generating","Discussion":"Discussion","History":"History","Language Learning":"Language Learning","Religion":"Religion","Animals":"Animals","Philosophy":"Philosophy","Politics":"Politics"},"ExampleChats":{"CharacterAssistant":{"q0":"What type of fish is Dory from Finding Nemo?","q1":"Create an ad campaign for a new video game","q2":"Decide between the Macbook Air and Macbook Pro"},"ElonMusk":{"q0":"Why did you buy twitter?","q1":"What do you think about Jeff Bezos' Blue Origin?","q2":"If you could time travel, when/where would you go?"},"AlternateTimeline":{"q0":"What if I invented a portal gun?","q1":"Access to my own personal time machine","q2":"Make me the negotiator for the first alien encounter"},"WhoWouldWin":{"q0":"Batman vs. Superman","q1":"Knight vs. Samurai","q2":"Lebron James vs. Michael Jordan"},"AreYouFeelingOkay":{"q0":"I had a hard time at work today","q1":"How can I be more successful in my profession","q2":"What is a good way to make a big change in life?"},"DebateChampion":{"q0":"Star Wars is overrated","q1":"Pepsi is better than Coca-Cola","q2":"Cats are better than dogs"}},"recommended":"Recommended"},"CharacterEditor":{"best-practices":"Best practices","create-character":"Create Character","save-changes":"Save Changes","new-character":"New Character...","editing-character":"Editing {{name}}...","Step":{"customize":"Customize","advanced":"Advanced"},"Form":{"character-name":"Character name","character-name-placeholder":"e.g. Albert Einstein","tagline":"Tagline","tagline-placeholder":"Add a short tagline of your Character","tagline-tooltip":"How your Character would describe themselves","description":"Description","description-placeholder":"How would your Character describe themselves?","description-tooltip":"How your Character would describe themselves","greeting":"Greeting","greeting-placeholder":"e.g. Hello, I am Albert. Ask me anything about my scientific contributions.","greeting-tooltip":"The first thing your Character will say at the beginning of every chat","voice":"Voice","visibility":"Visibility","definition":"Definition","character-definition":"Definition","character-definition-placeholder":"What's your Character's backstory? How do you want it to talk or act?","character-definition-tooltip":"Specific instructions on how your bot will behave and how it responds to messages","keep-character-definition-private":"Keep Character definition private","more-options":"More options","GenerateAvatar":{"generate-image":"Generate image","upload-image":"Upload image","describe-character":"Describe Character","what-does-your-character-look-like":"What does your Character look like?","what-does-character-name-look-like":"What does {{ name }} look like?"}},"failed-to-save-changes-not-community-guidelines":"Failed to save your Character. Your changes may not meet Character.AI community guidelines.","no-perms":"You do not have permissions to edit this Character","character-created":"Success: Character created","character-updated":"Success: Character updated","character-created-failed":"Failed to create your Character. Please try again.","character-updated-failed":"Failed to update your Character. Please try again.","editing-locked":"Congratulations! Editing is locked at this time since your Character has many fans. Please see our Terms of Service for details.","sign-up-to-create-character":"Sign up or log in to create a Character","save-and-chat":"Save and Chat","user-message":"User message","character-message":"Character message","end-of-dialog":"End of dialog","add-new-dialog":"Add new dialog","other-info":"Other info","example-conversation":"Example conversation #{{number}}","text-mode":"Text Mode","interactive-mode":"Interactive Mode","interactive-warning":"Warning - Interactive mode may change the format of existing definition.","please-review-before-saving":"Please review before saving."},"VoiceEditor":{"create-voice":"Create Voice","save-changes":"Save Changes","no-perms":"You do not have permissions to edit this voice"},"Chat":{"similar-characters":"Similar Characters","title":"Chat with {{name}}","view-pinned-memories":"Pinned","chat-pinned-memories":"Pinned","view-chat-history":"View Chat History","chat-history":"History","view-archived-chats":"View Archived Chats","archived-history":"Archived History","archived-chat":"Chat archived","unarchived-chat":"Chat unarchived","previous-conversations":"Previous conversations","start-new-chat":"New chat","view-model":"Model","share-character":"Share","view-character-profile":"View Character profile","view-creator-profile":"View Creator profile","enable-voice":"Voice","disable-voice":"Disable Voice","voice-inactivity":"Voice muted due to inactivity","enable-voice-tooltip":"Turn voice on","disable-voice-tooltip":"Turn voice off","change-voice":"Change Voice","call-character":"Call Character","change-persona":"Change Persona","edit-character":"Edit Character","copy-character":"Copy Character","Image":{"something-went-wrong-making-this-image":"Something went wrong making this image","creating-image":"Creating image"},"delete-messages":"Delete message","are-you-sure-you-want-to-delete-this-message":"Are you sure you want to delete this message?","delete-messages-action":"Delete message","report":"Report","Filter":{"you-can-continue-the-conversation-or-generate-a-new-response-by-swiping":"Send a new message to continue the conversation","sometimes-the-ai-generates-a-reply-that-doesnt-meet-our-guidelines":"This content has been filtered. Please make sure your chats comply with our Terms and Community Guidelines.","reported":"Reported"},"edited":"(edited)","edit-message":"Edit message","submit-edit":"Submit edit","tooltip-message-edited-by-user":"Message edited by user","created-by":"Created by \u003c2\u003e{{author}}\u003c/2\u003e","send-a-message":"Send a message...","message":"Message...","message-char":"Message {{char}}...","rewind-conversation":"Rewind to here","duplicate-conversation":"New chat from here","duplicate-chat-started":"New chat started","do-not-leave-page":"Please wait. A new tab will open with your new chat.","are-you-sure-you-want-to-rewind-the-conversation-to-this-point":"Are you sure you want to rewind the conversation to this point?","rewind":"Rewind","rewind-successful":"Rewind successful","delete-successful":"Delete successful","sign-up-to-chat-with-character-name":"Sign up to chat with {{character}}","pin-message":"Pin message","unpin-message":"Unpin message","max-pin-limit-reached":"Maximum pinned memory limit reached","pinned":"Pinned","third-party-translation-detected-text-formatting-disabled":"Third-party translation detected, text formatting disabled","chat-with-character-on-character-ai":"Chat with {{ character }} on Character.AI!","are-you-sure-you-want-to-unpin":"Are you sure you want to unpin this memory?","no-pinned-memories-yet":"You don't have any pinned memories for this chat yet","no-archived-chats-yet":"No archived chats yet","no-chats-yet":"No chats yet","to-pin-a-memory":"To pin a memory, press on the three dots next to a chat message. This way, {{ name }} will always remember that message in this chat.","the-character":"the Character","sorry-this-character-is-not-available-to-chat":"Sorry, this Character is not available to chat","something-went-wrong-loading-the-chat":"Something went wrong loading the chat","reply-idea":"Reply idea","try-this-reply":"Try this reply","reply-idea-title":"Reply idea:","generate-reply":"Generate reply","sending-as":"Sending as: {{persona}}","too-many-messages-to-duplicate":"Too many messages to duplicate","upgrade":"Upgrade","upgrade-suffix--for-faster-response-times":"for faster response times","play-voice":"Play voice","stop-voice":"Stop voice","abort-voice":"Abort voice","scroll-to-bottom":"Go to most recent message","ai-conversation-reset":"AI conversation reset","reset-ai-conversation":"Reset AI conversation","leave-room":"Leave group","delete-room":"Delete group","auto-reply":"Auto-reply","characters-can-auto-reply":"Characters can auto-reply","participants-count":"{{count}} participants","message-placeholder":"Message","view-room-details":"View group details","edit-room":"Edit group","create":"Create","room-characters-count":"Characters: {{count}} / {{max}}","are-you-sure-you-want-to-delete-this-room":"Are you sure you want to delete this group chat?","are-you-sure-you-want-to-leave-this-room":"Are you sure you want to leave this group chat?","remove-user":"Remove User","are-you-sure-you-want-to-kick-user-from-this-room":"Are you sure you want to kick {{user}} from this group?","sorry-this-room-is-unavailable-to-you":"Sorry this group chat is unavailable to you","edit-group-name":"Edit group name","enter-group-name":"Enter group name","user-input-filtered-message":"Your message may not meet our community guidelines and wasn't sent","licensed-professional-disclaimer":"This is not a real person or licensed professional. Nothing said here is a substitute for professional advice, diagnosis, or treatment.","ChatModelSelectorModal":{"title":"Preferred Model Type","model-smart":"Brainiac","model-smart-description":"Best for deep immersion","model-fast":"Flash","model-fast-description":"Quicker responses. Best for casual chat","model-default":"Prime","model-default-description":"Default: Mix of speed and intelligence","tooltip-model-availability":"The actual model used may vary based on system load and availability","dont-show-again":"Don't show again","start-chat":"Start new chat"}},"Feedback":{"tell-us-more":"Tell us more","submit-feedback":"Submit feedback","save-details":"Save details","anything-else":"Additional details","feedback":"Feedback","voice-feedback":"Voice Feedback","text-feedback":"Text Feedback"},"Voice":{"voices":"Voices","voice":"Voice","discover":"Discover","your-voices":"Your voices","saved":"Saved","play-sample":"Play Sample","select":"Select","no-voices":"No voices","enabled":"Voice enabled","error":"Voice error - try again","default":"Creator suggested","selected":"Currently Selected","system-suggested":"System suggested","search-label":"Search","enable-voice":"Give this Character a Voice","hold-to-change-voice":"Press \u0026 hold to switch voices","toggle-voice":"Toggle Character Voice","voice-on":"Voice On","voice-off":"Voice Muted","voice-error":"Voice error, try again","voice-inactivity":"Voice muted due to inactivity","voice-call-connection-failed":"Voice call connection failed","microphone-error":"Microphone error","you-probably-havent-granted-microphone-permissions":"You probably haven't granted microphone permissions"},"VoiceDetail":{"recent-chats":"Try with a recent chat","suggested-characters":"Try with these Characters"},"Form":{"labels":{"username":"Username","name":"Display Name","bio":"Bio","date":"Birthday","email":"Email","month":"Month","day":"Day","year":"Year"},"cancel":"Cancel","confirm":"Confirm","save":"Save","remove":"Remove","invalid-characters":"Your input contains one or more invalid characters.","date-required-error":"Your date of birth is required","date-min-error":"That date is too far in the past","date-max-error":"That date is too far in the future","date-day-range-error":"Day must be between 1 and 31"},"Home":{"hide-character":"Hide Character","title":"Character.AI","welcome-back":"Welcome back,","create-a-character":"Create a Character","not-vibing":"Not vibing with any Characters? Create one of your own! Customize things like their voice, conversation starts, their tone, and more!","witty":"witty","mentor":"mentor","more-options":"More Options…","introducing-character-calls":"Introducing Character Calls","compact-try-it-on-the-c-ai-mobile-app":"Try it on the c.ai mobile app","talk-live-with-your-characters-on-the-c-ai-mobile-app":"Talk live with your Characters on the c.ai mobile app"},"Share":{"character-link-copied":"Character link copied!","check-out-this-character":"Check out this Character\n{{href}}","check-out-this-creator":"Check out this creator on Character.AI\n{{href}}","share-link-copied":"{{title}} link copied!"},"Common":{"current-chat":"Current chat","chat":"Chat","search":"Search","one-moment-please":"One moment please...","regenerate":"Regenerate","generate":"Generate","hold-on":"Hold on a minute while we log you in.","no-results-at-this-time":"We're sorry, there are no results at this time","unsaved-changes-warning":"Changes you have made may not be saved","about":"About","_comment-view-character-book":"View Character Book","coming-soon":"Coming soon","close":"Close","login":"Login","logout":"Logout","deactivate":"Deactivate","cancel":"Cancel","try-again":"Try again","sign-in":"Sign in","sign-up":"Sign up","retry":"Retry","settings":"Settings","report":"Report","report-issue":"Report an Issue","manage":"Manage","num-chats":"{{num}} chats","num-chats_one":"{{num}} chat","num-chats_other":"{{num}} chats","num-character-chats":"{{num}} Character Chats","num-character-chats_one":"{{num}} Character Chat","num-character-chats_other":"{{num}} Character Chats","num-likes":"{{num}} likes","num-likes_one":"{{num}} like","num-likes_other":"{{num}} likes","reply":"Reply...","chats":"{{formattedCount}} Chats","chats_one":"{{formattedCount}} Chat","chats_other":"{{formattedCount}} Chats","likes":"{{formattedCount}} Likes","likes_one":"{{formattedCount}} Like","likes_other":"{{formattedCount}} Likes","copy":"Copy","view-character-details":"View Character Details","message-copied-to-clipboard":"Message copied to clipboard","remember-everything-characters-say-are-made-up":"Remember: Everything Characters say is made up!","fiction-warning-collapsed":"This is A.I. and not a real person. Treat everything it says as fiction","fiction-warning-expanded":"This is an A.I. chatbot and not a real person. Treat everything it says as fiction. What is said should not be relied upon as fact or advice.","optional":"Optional","new":"New","default":"Default","persona":"Persona","characters":"Characters","creators":"Creators","select":"Select","unselect":"Unselect","success":"Success","active":"Active","submit":"Submit","next":"Next","studio":"Studio","back":"Back","characterCount":"pluralized_value","characterCount_one":"{{created}} Character","characterCount_other":"{{created}} Characters","edit":"Edit","rename":"Rename","archive":"Archive","unarchive":"Unarchive","new-chat":"New Chat","hide-character":"Hide Character","make-default":"Make default","clear-default":"Clear default","clear-search":"Clear search","add":"Add","delete":"Delete","loading":"Loading...","Visibility":{"public":"Public","unlisted":"Unlisted","private":"Private","Details":{"public":"Available for others to discover and chat with","unlisted":"Available for others to chat with via link","private":"Only available to you"}},"character-interactions":"Character interactions","continue":"Continue","export-data":"Export data","delete-account":"Delete account","generic-error":"Error: Please try again","success-request-initiated":"Success: Request initiated","labels":"Labels","legacy":"Legacy","or":"OR","use-of-character-ai-is-bound-by-our-terms-of-service-and-privacy-policy":"Use of Character.AI is bound by our \u003c1\u003eTerms of Service\u003c/1\u003e and \u003c3\u003ePrivacy Policy\u003c/3\u003e.","try-it-out":"Try it out","cai-attribution":"By @c.ai","legacy-site":"Back to old site","c-ai-chat-title":"c.ai - {{name}}","cai":"c.ai","something-went-wrong-please-try-again-later":"Something went wrong, please try again later.","like":"Like","dislike":"Dislike","company-motto":"Personalized AI for every moment of your day","join-us":"Join us!","copyright":"© Copyright 2024 Character Technologies, Inc.","yes":"Yes","done":"Done","code-copied-to-clipboard":"Code copied to clipboard","describe-your-image":"Describe your image","share":"Share","hello":"Hello","comment":"Comment","reset":"Reset","email-suggestion":"Use this email instead?","navigation-menu":"Navigation menu","rate":"Rate {{ number }} star","rate_plural":"Rate {{ number }} stars","add-remove":"Add / Remove","room":"Group Chat","users":"Users","save":"Save","change":"Change","view-more":"View more"},"SettingsPreferences":{"theme":"Theme","light":"Light","dark":"Dark","system":"System","language":"Language","default":"Default","classic":"Classic","canary":"Preview","prod":"Stable","dense":"Dense"},"GetTheApp":{"iphone-download-the-app":"Download the Character.AI mobile app from the App Store","android-download-the-app":"Download the Character.AI mobile app from the Google Play Store","scan-the-qr-code":"Scan the QR code to get the Character.AI app","get-app":"Get app"},"Subscription":{"free":"Free","upgrade":"Upgrade","upgrade-to":"Upgrade to","your-current-plan":"Your current plan","upgrade-your-plan-today":"Upgrade your plan today","feature-turbo-messages-name":"Turbo Messages","feature-turbo-messages-description":"Unlimited faster messages","feature-description-faster-response":"Faster response times","feature-description-dedicated-servers":"Dedicated servers, faster responses","feature-better-memory-name":"Better Memory","feature-better-memory-description":"Characters remember more","feature-customize-chats-name":"Customize Your Chats","feature-customize-chats-description":"Colors, backgrounds and more","feature-special-perks-name":"Special Perks","feature-special-perks-description":"Priority access to select new features","price-per-month":"\u003cprice\u003e{{price}}\u003c/price\u003e/month","button-call-to-action":"Subscribe for {{price}}/mo","button-disclaimer":"Auto renews monthly until canceled"},"DeleteAccount":{"manage-account-and-data":"Manage Account \u0026 Data","export-data-success":"You’ll receive an email with a link to download your data.","this-action-cannot-be-undone":"This action cannot be undone","things-will-be-lost":"Characters, chats, and activity associated with your account will be lost.","remove-your-subscription":"Remember to remove your subscription before deleting your account","enter-username-to-confirm":"Enter username to confirm"},"Search":{"placeholder":"Search for Characters","something-went-wrong-loading-search-results":"Something went wrong loading search results","your-input-is-invalid":"Inputs cannot contain special characters or be too short","search-results":"Search results","no-results":"No Characters found, maybe make one?","no-creators-found-with-that-name":"No creators found with that name"},"Signup":{"header":"Set Up Your Profile","we-need-one-last-thing":"We need one last thing from you","what-do-you-want-your-profile-image":"What do you want your profile image to look like?","claim-username":"Claim your username","username-placeholder":"Username","create-account-button":"Create account","disclaimer":"By continuing, you agree to our \u003c2\u003eTerms\u003c/2\u003e and acknowledge our \u003c6\u003ePrivacy Policy\u003c/6\u003e.","welcome":"Welcome to Character.AI","error-general":"There was an issue with your sign up.","error-signup-already-complete":"Signup already complete","error-couldnt-find-username":"Couldn't find user by username","error-acknowledge":"Must accept policies","error-missing-date-of-birth":"Missing date of birth","username-constraints":"Username must be between 3-20 characters and contain only letters, numbers, underscore and dash","error-invalid-date":"Invalid date of birth","error-username-exists":"Error: Username not available","when-is-your-birthday":"When's your birthday?","your-birthday-is-not-public":"Your birthday won't be displayed publicly","check-your-email":"Check your email","click-on-the-verification-link":"Click on the verification link sent to","not-seeing-the-email":"Not seeing the email? Check your spam folder.","finish-setup":"Finish Setup","age-and-user-name":"Verify your age and claim a username","toChat":"Sign Up to Chat","ineligible":"Sorry, looks like you're not eligible to keep using our services."},"Error":{"something-went-wrong":"Something went wrong!","please-refresh-or-try-again-later":"Please refresh or try again later","required":"{{name}} is required","minLength":"{{name}} must be at least {{minLength}} characters","maxLength":"{{name}} must be at most {{maxLength}} characters","imageUploadFailed":"Failed to upload image","enter-valid-email":"Please enter a valid email","sorry-cannot-use":"Sorry, you cannot use Character.AI at this time.","something-went-wrong-creating-your-room":"Something went wrong creating your group chat","something-went-wrong-updating-your-room":"Something went wrong updating your group chat","please-allow-popups":"Sign in popup was blocked, please hit the button to try again","auth-failed":"Sign in failed. Please try again. If the issue persists, please contact support."},"Socials":{"join-our-discord":"Join our Discord","discord-linking-error":"There was a problem linking your Discord account. Please try again.","discord-linking-success":"Your Discord account has been successfully linked","discord-join-cai-plus":"You're invited to join the \u003c1\u003ec.ai+\u003c/1\u003e community on Discord","plus-discord-invite-title":"You're invited to join the c.ai+ community on Discord","regular-discord-invite-title":"Join the Character Community on Discord","plus-discord-invite-description":"Link your Character account with Discord and get access to exclusive c.ai+ channels","discord-regular-invite-description":"Link your Character account with Discord and unlock special channels, commands and more","link-account-and-join":"Link account and join","open-discord":"Open community","relink-discord":"Re-link your account","discord-account-already-linked":"Your Discord account has already been linked, to continue open the community"},"Help":{"about-us":"About us","contact-us":"Contact us","community":"Community","work-with-us":"Work with us","terms-of-service":"Terms of Service","privacy-policy":"Privacy Policy","your-privacy-choices":"Your Privacy Choices","blog":"Blog","press":"Press","help-center":"Help Center","socials":"Socials","if-you-have-any-questions-or-need-help-visit-our-help-center":"If you have any questions or need help, visit our Help Center."},"Profile":{"title":"Character.AI – User profile of {{name}}","num-followers":"{{formatted}} Followers","num-followers_one":"{{formatted}} Followers","num-followers_other":"{{formatted}} Followers","num_following":"{{formatted}} Following","followers_num":"Followers {{formatted}}","followers_num_one":"Follower {{formatted}}","followers_num_other":"Followers {{formatted}}","following_num":"Following {{formatted}}","characters":"Characters","voices":"Voices","liked":"Liked","personas":"Personas","remixes":"Remixes","followButton":"Follow","followButtonFollowing":"Following","remixes-soon":"Remixes are coming soon…","block":"Block","unblock":"Unblock","block-confirmation":"Blocked {{name}}","unblock-confirmation":"Unblocked {{name}}","block-failed":"Failed to block {{name}}","unblock-failed":"Failed to unblock {{name}}","settings-button":"Settings","no-characters":"This user hasn't made any Characters yet.","no-characters-you":"You haven't made any Characters yet.","no-characters-liked":"You haven't liked any Characters yet.","create-a-voice":"Create a voice","no-voices":"This user hasn't made any voices yet.","user-profile":"User Profile","SortOption":{"Alphabetical":"Alphabetical","MostChats":"Most Chats","MostLikes":"Most Likes"},"FilterOption":{"ALL":"All","PUBLIC":"Public","UNLISTED":"Unlisted","PRIVATE":"Private"}},"feedback-utils":{"boring":"Boring","not-boring":"Not Boring","not-true":"Not True","true":"True","repetitive":"Repetitive","not-repetitive":"Not Repetitive","out-of-character":"Out of Character","not-out-of-character":"Not Out of Character","good-memory":"Good Memory","bad-memory":"Bad Memory","not-bad-memory":"Not Bad Memory","funny":"Funny","not-funny":"Not Funny","interesting":"Interesting","not-interesting":"Not Interesting","too-long":"Too Long","not-too-long":"Not Too Long","too-short":"Too Short","not-too-short":"Not Too Short","helpful":"Helpful","not-helpful":"Not Helpful","ends-chat-early":"Ended Chat Early","not-ends-chat-early":"Not Ended Chat Early","voice-wrong-voice":"Wrong Voice","voice-low-quality":"Low Quality","voice-incorrect-pronounciation":"Incorrect Pronounciation","voice-repeated-words":"Repeated Words","voice-missing-words":"Missing Words","voice-too-fast":"Too Fast","voice-too-slow":"Too Slow"},"Scenarios":{"what-do-you-want-to-do":"What do you want to do?","cooking":{"cook-something-for-dinner":"Cook something for dinner!"},"travel":{"go-on-an-adventure":"Go on an adventure!"},"creativity":{"nurture-your-creativity":"Nurture your creativity"},"who-do-you-want-talk-to":"Who do you want to talk to?","support":{"trusted-circle":"A trusted circle of support"},"learn":{"learn-something-new":"Learn something new today"},"challenge":{"epic-challenges-await":"Epic challenges await"},"exercise":{"get-fit-and-healthy":"Get fit and healthy","time-to-fell-your-best":"Time to feel your best"}},"Settings":{"account":"Account","profile":"Public profile","exp":"[Staff Only] Experiments","preferences":"Preferences","subscription":"Subscription","discord":"Go to community","link-discord":"Join community","get-the-app":"Get the app","chat-style":"Chat Style","preview-deployment":"Preview Release"},"User":{"profile":"Public profile","profile-updated":"Profile updated","profile-update-failed":"Profile update failed","error-username-exists":"Error: Username already exists","invite":"Invite"},"Character":{"by-username":"By @{{username}}"},"CharacterProfile":{"chat":"Chat","Tabs":{"About":"About","ChatStarters":"Chat Starters","SimilarCharacters":"Similar Characters"},"content-by-cai":"Content by c.ai","AboutSubSection":{"Description":"About {{characterName}}","Audience":"Who is {{characterName}} for","Expertise":"{{characterName}}'s Area of Expertise","Expertise_s":"{{characterName}}' Area of Expertise"},"ChatStarterDefaults":{"0":"If you could have any superpower for a day, what would you choose and how would you use it?","1":"What's the most hilarious or awkward story you've got?","2":"Picture this: you're stranded on a deserted island. What three items do you bring with you?","3":"If you could instantly become an expert in one skill or hobby, what would it be?"}},"Persona":{"create-persona":"Create a persona","characters-will-remember":"Characters will remember your persona information to improve their conversations with you","create-multiple-personas-to":"Create multiple personas to change your background info between chats","name":"Name","background":"Background","make-default-for-new-chats":"Make default for new chats","create-persona-success":"Successfully created your persona","failed-persona-too-long":"Failed: Your persona definition is too long.","failed-persona-name-too-long":"Failed: Your persona name is too long.","failed-persona-name-too-short":"Failed: Your persona name is too short.","failed-to-create-same-name-persona":"You cannot create a persona with the same name","failed-to-create-persona":"Failed to create your persona","failed-to-create-invalid-characters-persona":"Your persona name can only contain only letters, numbers, underscore, and dashes.","remove-persona-success":"Successfully removed your persona","update-persona-success":"Successfully updated your persona","failed-to-delete-persona":"Failed to delete persona","failed-to-update-persona":"Failed to update persona","failed-to-enable-disable-persona":"Failed to {{action}} this persona as your default persona.","are-you-sure-you-want-to-remove":"Are you sure you want to remove this persona?"},"Auth":{"continue-with":"Continue with {{provider}}","continue-with-email":"Continue with email","verification-link":"Open the verification link sent to {{email}}","didnt-receive-email":"Didn't receive the email?","resend":"Resend","continue":"Continue","email":"Email","trouble-signing-in":"Trouble signing in?"},"ExternalLinks":{"careers":"Careers","safety":"Safety","safety-center":"Safety Center","character-guide":"Character Guide","support":"Support","news":"News"},"Moderation":{"leave-comment":"Leave a comment","comment-placeholder":"Describe the issue in further detail","report-categories":{"abuse":"Threats \u0026 Harassment","violence":"Excessive Violence","falsity":"False Statements","hate":"Hate Speech","nsfw":"NSFW","sex_harass":"Sexual Harassment","minor":"Child Exploitation","self_harm":"Self Harm","terror":"Terrorism \u0026 Extremism","illegal":"Illegal Activities","drugs":"Drug Transactions","pii":"Invading Privacy","impersonate":"Impersonation","spam":"Commercial Spam"},"select-a-category":"Select a category","report-message-title":"Report Message","report-room-title":"Report Group","report-character":"Report Character","report-voice-title":"Report Voice","report-success":"Your report has been submitted.","report-failed":"Failed to create report. Please try again."},"Creator":{"topCharacters":"pluralized_field","topCharacters_one":"Top Character: {{character}}","topCharacters_other":"Top Characters: {{character}}"},"Monetization":{"faster-response-times":"Faster response times","upgrade-error":"Error: You already have a Subscription or you are not signed in","subscription-success":"Thank you for subscribing to c.ai+. You should notice the Character.AI+ logo at the top left. If you don't, it may take up to 30 minutes for your subscription to activate.","premium-feature-prefix":"Available for"},"Annotation":{"user":"User","annotator-labels":"Annotator","annotation-group-productivity-labels":"Productivity","annotation-group-lifestyle-labels":"Lifestyle","annotation-group-entertainment-labels":"Entertainment","annotation-group-user-labels":"User","annotation-group-safety-labels":"Safety","annotation-group-quality-labels":"Quality","annotations-sexually-suggestive-pg":"Sexually Suggestive PG","annotations-sexually-suggestive-pg-13":"Sexually Suggestive PG-13","annotations-sexually-suggestive-r":"Sexually Suggestive R","annotations-sexually-suggestive-x":"Sexually Suggestive X","annotations-repetitive":"Repetitive","annotations-nonsense":"Nonsense","annotations-looping":"Looping","annotations-out-of-character":"Out of Character","annotations-harmful-promotes-selfharm":"Promotes Self-Harm","annotations-harmful-promotes-terrorism":"Promotes Terrorism Or Mass Attacks","annotations-inaccurate":"Inaccurate","annotations-forgets-context":"Forgets Context","annotations-technology":"Technology","annotations-creative-arts":"Creative Arts","annotations-math":"Math","annotations-science":"Science","annotations-social_studies":"Social Studies","annotations-code":"Code","annotations-business":"Business","annotations-philosophy":"Philosophy","annotations-language-learning":"Language Learning","annotations-emotional-support":"Emotional Support","annotations-friendship":"Friendship","annotations-planning":"Planning","annotations-life-advice":"Life Advice","annotations-recommendation":"Recommendation","annotations-hobbies":"Hobbies","annotations-interactive-story-telling":"Interactive-Story-Telling","annotations-story-telling":"Story-Telling","annotations-comedy":"Comedy","annotations-discussion":"Discussion","annotations-gameplay":"Gameplay","annotations-hate-speech":"Hate Speech","annotations-disturbing-sexually":"Sexually Disturbing","annotations-disturbing-violence":"Violence Disturbing","annotations-regulated-controlled-substances":"Regulated Goods \u0026 Controlled Substances","annotations-criminal-activity-planning":"Criminal Activity \u0026 Planning","annotations-service-breaking-behavior":"Service Breaking Behavior","annotations-writing-mistake":"Writing Mistake","annotations-unsafe-eating":"Promotes Eating Disorders/Unsafe Eating","annotations-discusses-eating-disorder":"Discusses Eating Disorders","annotations-harmful-discusses-selfharm":"Discusses Self-Harm","annotations-child-violence":"Child Violence","annotations-csam":"CSAM","annotations-underage-sex":"Underage Sex","annotations-harassment":"Harassment \u0026 Bullying","annotations-kinks-fetishes":"Kinks \u0026 Fetishes","annotations-medical-advice":"Medical \u0026 Therapeutic Advice ","load-more":"Load more","previous-conversations":"Previous conversations","select-character":"Select a Character to start a new chat","edit":"Edit Mode","preview":"Preview Mode","mode":"{{mode}} Mode","questions":"Questions","delete-single":"Delete Message","delete-multiple":"Delete {{count}} Messages","no-turns-in-chat":"No turns in this chat","report-question":"Report Question","cancel-question-report":"Cancel Report","task-state-open":"Open","task-state-inprogress":"In Progress","task-state-reviewed":"Reviewed","task-state-needs-changes":"Needs Changes","task-state-making-changes":"Making Changes","task-state-needs-review":"Needs Review","task-state-inreview":"In Review","task-state-request-review":"Request Review","task-state-done":"Done","task-state-done-bad":"Done (Bad)","task-state-punted":"Punted","selection":"Selection","selection-help":"Defines how multi-selection works. For instance, whether you want to select the AI-only messages or All messages.","select-all-messages":"All Messages","select-ai-messages":"AI Messages","are-you-sure-you-want-to-delete-these-messages":"Are you sure you want to delete these messages?","all-tasks-completed":"Seems like you have completed all the tasks.\nPlease contact your manager for further instructions","error-loading-task":"Error loading the task: {{taskError}}","error-loading-chat":"Error loading the chat. You might not have access to the chat","error-chat-not-assigned":"Chat not assigned to this task","error-task-not-assigned":"Task not assigned to a user on Jira","previous-task":"Previous task","next-task":"Next task","skip-labels":"Skip","skip-labels-tooltip":"If you are unsure about what labels to use, select this option to skip labeling this message","task-id":"Task ID","instructions":"Instructions","preview-hint":"Preview Markdown","task-detail-hint":"Task details","settings-hint":"Settings","assignee":"Assignee","annotator-role":"Annotator","reviewer-role":"Reviewer","manager-role":"Manager","viewer-role":"Viewer","role-and-mode-info":"Viewing as {{role}} in {{mode}} mode","edit-hint":"Edit","readonly-hint":"Read-Only","model-server-override":"Model Server Override","toggle-thread-status-open":"Reopen","toggle-thread-status-resolved":"Resolve","toggle-thread-status-dismissed":"Dismiss","toggle-thread-status-deleted":"Delete","thread-status-open":"Open","thread-status-resolved":"Resolved","thread-status-dismissed":"Dismissed","thread-status-deleted":"Deleted","cycle-thread-severity":"Click to toggle Severity","thread-severity-info":"Info","thread-severity-error":"Error","thread-severity-warning":"Warning","add-comment":"Add comment here...","change-task-state":"Changing Task State","change-task-state-confirmation":"Are you sure you want to change the Task State to {{state}}?"},"About":{"paragraph-1":"Our mission is to empower everyone globally with personalized AI. We were founded by AI pioneers Noam Shazeer and Daniel De Freitas, and we make one of the world’s leading personal AI platforms, Character.AI. Character.AI is a full-stack AI company with a globally scaled direct-to-consumer platform. We are uniquely centered around people, letting users personalize their experience by interacting with AI “Characters.”","paragraph-2":"Character Technologies, Inc. is based in Menlo Park, CA.","paragraph-3":"We are working to put our technology into the hands of billions of people to engage with, and continuing to build personalized AI that can be helpful for any moment of your day.","join-out-community":"Join our Community","its-nice-to-see-ya":"it's nice to see ya","paragraph-7":"They are both committed to pushing the capabilities of technology for the benefit of every person.","Company":"Company","product":"Product","web-app":"Web App","iphone-app":"iPhone App","android-app":"Android App","resources":"Resources","faqs":"FAQs","safety-center":"Safety Center","learn-more":"Learn more","in-the-news":"In the News","about-c-ai":"About c.ai"},"CookieConsent":{"header-text":"We use essential cookies to make our site work. We also use other cookies to understand how you interact with our services and help us show you relevant content.","subtext":"By clicking \"Accept All\" below, you consent to our use of cookies as further detailed in our Privacy Policy.","accept-all":"Accept All","reject-all":"Reject All"},"legacy":{"_comment":"We updated our chat system and need to ask users to migrate certain older chats to our new system. This presents a simple modal explaining the users the action they need to take.","migrate-confirmation":"Your chats are migrating. Please check back in a few minutes.","migrate-body":"Looks like this chat is from the old/beta site.","migrate-note":"Note: Longer chats may take up to an hour to migrate.","migrate-action":"Migrate chat now","migrate-in-progress":"Migration in progress…","migrate-starting":"Starting migration…"},"Legal":{"terms-of-service":"Character.AI Terms of Service","privacy-policy":"Character.AI Privacy Policy","privacy-choices":"Character.AI - Your Privacy Choices","community-guidelines":"Character.AI Community Guidelines"},"EducationTooltip":{"chat-input-text":"Try sending a message in your preferred language."},"EducationCTA":{"Voice":{"title":"Characters now have a voice","description":"Hear your chats out loud","button":"Try with voice"}},"VoicePolicy":{"title":"Creating a Character Voice","item-1":"Always use Character Voices for good, and have fun!","item-2":"Never record third parties without their consent","item-3":"Don’t use protected intellectual property without approval","item-4":"Don’t use voices to engage in deepfakes, fraud, scams, or bullying","agree-btn":"Agree \u0026 Continue"},"EditVoice":{"screen":{"title":"Edit Voice","update":"Update Voice","edit-success":"Voice updated","discard-voice-confirmation":"Are you sure you want to abandon updating this voice?","delete-voice-confirmation":"Are you sure you want to delete this voice?","delete-voice-details":"This may take a few hours to be removed for everyone"}},"CreateVoice":{"cta":{"title":"Give your Characters a Voice","button-text":"Create Voice"},"screen":{"create-a-voice":"Create Voice","name-label":"Voice Name","voice-name-constraints":"Voice name is required and must be between {{min}} and {{max}} characters and contain only letters, numbers, underscore, dash, and space","gender-label":"Gender","description-label":"Description","voice-description-constraints":"Voice description must be less than {{max}} characters","generating-voice":"Generating Voice...","creating-voice":"This may take a few seconds","generate-button":"Generate Voice","visibility-label":"Visibility","save-button":"Save Voice","voice-preview-text-label":"Voice Intro","voice-preview-text-constraints":"Voice preview text must be less than {{max}} characters","upload-clip":"Upload sound","upload-clip-description":"Upload a 3-15s audio file","tap-record":"Tap to record","record-clip":"Record sound","record":"Record","stop":"Stop","rerecord":"Re-record","record-clip-description":"Record your own clip with the mic","voice-clip-length":"Upload a clip 3-15s long.","english-only":"Only English is supported at this time","clip-length-instructions":"Record a clip 3-15s long.","avoid-background-noise":"Avoid background noise.","voice-upload-error":"Error uploading voice file - please pick another one","character-voice-label":"Character Voice","select-voice-label":"Select Voice","voice-preview-instructions":"How your voice will be heard while previewing","voice-create-success":"Voice successfully created!","voice-create-success-2":"Go to a chat or Character editor to use the voice","delete-voice":"Delete Voice","sample-text-label":"Help me find what to say","try-saying":"Try saying...","voice-record-sample-text":"Once upon a time, in a land full of bouncy kangaroos and colorful parrots, Sam the sloth had a dream. He wanted to join the kangaroo hopping contest. Everyone cheered him on as he gave it his best hop.","make-voice-public":"Make voice public","make-voice-public-description":"Others can use with any Character","re-upload":"Re-upload","discard-voice-confirmation":"Are you sure you want to abandon creating this voice?","discard-voice-confirmation-details":"Your changes will not be saved","feature-not-available-region":"This feature is unavailable in your region","voice-integrity-error":"Cannot create voice","voice-integrity-error-details":"Audio clip does not meet our content policy","voice-name-integrity-error-details":"Invalid Voice name","voice-description-integrity-error-details":"Invalid Voice description","rate-voice":"How is the quality?","voice-feedback-title":"Voice Feedback","text-feedback-success":"Feedback submitted","upload-tips":"For best results, upload a clear 10-15 second audio clip (anything beyond 15s will be clipped). Avoid background noise.","upload-sound":"Upload Sound","upload-sound-desc":"Click or drag to upload an audio file","discard":"Discard","new-voice":"New Voice","voice-name-placeholder":"e.g. Albert Einstein","voice-description-placeholder":"Gentle and uplifting male with a subtle British accent","create":"Create","upload-error-too-short":"Audio file too short","upload-error-too-long":"Audio file too long","upload-error-description":"Upload a clip between 3-15 seconds"}},"VoiceVisibilityModal":{"title":"Making your voice public","description":"Anyone can discover and use this voice for their Character chats. You can always change this later.","confirm":"Confirm \u0026 Create voice","confirm-save":"Confirm \u0026 Update voice"},"Pages":{"titles":{"default":"Personalized AI for every moment of your day","about":"About","termsOfService":"Terms of Service","characterChat":"Chat with {{name}}","userProfile":"Profile of {{name}}"},"descriptions":{"default":"Chat with millions of AI Characters anytime, anywhere. Super-intelligent chat bots that hear you, understand you, and remember you. Free to use with no ads.","characterChat":"Chat with {{name}}: {{title}}. Powered by an industry leading, AI large language model (LLM).","profileDefault":"{{name}}'s profile on Character.AI. Find or create the Character that's right for you. Chat with them, learn from them, and have fun!"}},"Interests":{"skip-button":"Skip","done-button":"Next","welcome-header":"Welcome to Character","welcome-question":"What are your interests?","custom-interests-label":"Type anything…","interests":{"homework-study-help":"Homework \u0026 Study Help","personal-growth":"Personal Growth","fitness-exercise":"Fitness \u0026 Exercise","meditation-mindfulness":"Meditation \u0026 Mindfulness","video-games":"Video Games","books-reading":"Books \u0026 Reading","movies-tv":"Movies \u0026 TV","writing":"Writing","career-advice":"Career Advice","language-learning":"Language Learning","personal-finance":"Personal Finance","productivity-time-management":"Productivity \u0026 Time Management","sports":"Sports","anime":"Anime","cooking-nutrition":"Cooking \u0026 Nutrition","travel-culture":"Travel \u0026 Culture","relationships-social-advice":"Relationships \u0026 Social Advice","news-current-events":"News \u0026 Current Events","mental-health-support":"Mental Health \u0026 Support","coding-programming":"Coding \u0026 Programming","spirituality-religion":"Spirituality \u0026 Religion","games-puzzles":"Games \u0026 Puzzles","comedy":"Comedy","interactive-storytelling":"Interactive Storytelling"},"pick-three":"Pick three or more"},"Months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"Calls":{"status-calling":"Calling...","status-no-voice-selected":"No voice selected","status-muted":"Muted","status-listening":"Listening","status-start-speaking":"Start speaking","status-ai-thinking":"AI thinking","status-tap-to-interrupt":"Tap to interrupt","hang-up":"Hang up","mute":"Mute","unmute":"Unmute","calls-available-on-the-app":"Calls available on the app","call-name":"Call {{name}}","voice-call-disconnected":"Voice call disconnected","voice-unavailable":"Voice unavailable"},"Errors":{"please-try-again-later":"Please try again later"},"SelfHarmSupport":{"title":"Help is available","body-1":"If you or someone you know is struggling or in a crisis, you're not alone. There are resources out there to help:","heading-2":"If you're in the United States","body-2":"Contact the National Suicide Prevention Lifeline at 988. Crisis workers are available 24 hours a day. Calls are free and confidential.","heading-3":"If you're in another country","body-3":"To find a crisis center near you, visit the International Association for Suicide Prevention.","body-4":"If you're thinking about engaging in self-harm or suicidal behavior, please seek help as soon as possible by contacting one of these services.","call":"Call 988","visit":"Visit findahelpline.com"},"Survey":{"title":"Share your thoughts","body":"Shape the future of Character.AI with your valuable feedback!","start-survey":"Start Survey","thank-you":"Thank you!"},"Sitemap":{"directoryResults":"Character Directory Results for: {{resultPage}}","characters":"Characters"},"Customization":{"customize":"Customize","chat-color":"Chat color","preview":"Preview","wallpaper":"Wallpaper","wallpaper-subtitle":"Customize your chat with AI-generated wallpapers","save-failed":"There was a problem saving changes. Please try again.","set-wallpaper":"Add wallpaper","generate-description":"Describe a scene, object, or character for your background","generate-placeholder":"Describe the wallpaper...","image-prompt-error-title":"Cannot create wallpaper","image-prompt-error-description":"Prompt does not meet our content policy","select-wallpaper":"Select as your wallpaper","ColorSchemes":{"red":"Red","peach":"Peach","clay":"Clay","honey":"Honey","yellow":"Yellow","green":"Green","pine":"Pine","aqua":"Aqua","blue":"Blue","indigo":"Indigo","purple":"Purple","silver":"Silver","grey":"Grey","black":"Black"}},"SignInDialog":{"heading":"Sign in","invite-code":"Invite code:"},"SignUpDialog":{"heading-1":"Immerse yourself in interactive entertainment","heading-2":"One last step...","subheading-1":"With Character.ai","subheading-2":"What year were you born"},"social":{"view-profile":"View profile"},"Social":{"kick-user":"Kick user"},"Birthdate":{"error-general":"An error occurred when trying to update your birthday. Visit support.character.ai"},"Invite":{"share-short-cta":"Invite","share-cta":"Claim your free month of c.ai+","accept-header-2":"has invited you to Character.ai","accept-description":"Accept the invite and claim your free month of \u003c2\u003ec.ai+\u003c/2\u003e to start chatting with millions of Characters that hear you, understand you and remember you.","accept-cta":"Accept Invite","invite-header":"Invite friends, Get a free month of \u003c2\u003ec.ai+\u003c/2\u003e","invite-description":"For every friend you invite that joins Character, earn a month free of turbo messages, better memory \u0026 more with \u003c2\u003ec.ai+\u003c/2\u003e\u003c3\u003eNot available to existing c.ai+ members that have already created accounts via iOS or Android.\u003c/3\u003e","invite-non-owner-description":"Share with friends to help them and {{name}} get free months of \u003c1\u003ec.ai+\u003c/1\u003e","invite-cta":"Invite now","invite-logged-in-cta":"Share","back-home":"Back to Character.ai","referral-status":"See your referral status","profile-cta":"Get invite code","meta":{"title":"Claim your free month of c.ai+","schema":{"about":"You have been invited to Character.ai","recipient":"You","name":"{{agent}}'s invite to Character.ai","alternate-name":"Character.ai Invite","description":"{{name}} (@{{username}}) has invited you to claim a free month of Character.ai"}},"upsell":{"upsell-text":"Share your invite code with friends and both of you will earn a free month of \u003c1\u003ec.ai+\u003c/1\u003e","cta":"Get invite code"},"status":{"title":"Get inviting!","title-max-redeemed":"Thank you!","title-ineligible":"Thank you!","redemption-info-header_one":"You've helped {{count}} friend claim a free month","redemption-info-header_other":"You've helped {{count}} friends claim a free month","reward-info-header":"You've earned {{count}} of {{max}} free months","reward-info-header-all":"You've earned all {{max}} available free months","last-reward-at":"Last month earned on {{lastRewardAtString}}"},"eligibility":{"ineligible-subscription-type":"You currently don't meet the requirements to receive any free months. Any new users that signup with your code will still receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e\u003cbr/\u003e","ineligible-max-redeemed":"You have already received the maximum rewards for inviting friends, amazing! Any new users that signup with your code will still receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e\u003cbr/\u003e","eligible_one":"Congrats! You're eligible for {{count}} more free month by inviting {{count}} more friend. Any new users that signup with your code will also receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e","eligible_other":"Congrats! You're eligible for {{count}} more free months by inviting {{count}} more friends. Any new users that signup with your code will also receive a free month of \u003c2\u003ec.ai+\u003c/2\u003e"}},"Email":{"signin-link-preview":"Sign in to Character.AI","signin-link-main":"Your sign in link for Character.AI","signin-button":"Login to Character.AI","signin-link-instructions":"This link and code will only be valid for a short time. If the link does not work, you can use the link below directly:"},"Games":{"beta":"Beta","score":"Score","points":"Points","judge":"Judge","you":"You","opponent":"Opponent","to":"to","play":"Play","play-again":"Play Again","stop-game":"Stop Game","play-a-game":"Play a Game","interrupted":"You've stopped the game!","you-started-game":"You've started {{ gameName }}","rules":"Rules","this-character":"this character","your-high-scores":"YOUR HIGH SCORES","select-a-game":"Select a game to play with {{ characterName }}","your-friend":"your friend","default-description":"Play a word game with {{ characterName }}","oops-description":"You lost! Try again?","win-description":"You won! You earned {score} Points","stop-description":"You stopped the game!","same-thing-you-win":"Same thing! You win!","too-many-turns-you-lose":"Too many turns, you lost!","guess-word-you-win":"{{ characterName }} said, \"{{ word }}\". You win!","you-said-forbidden-word":"You said a forbidden word!"}},"user":null,"lang":"*","token":null,"ipCountry":"IN","localeCountry":"","locale":"*","dehydratedState":{"mutations":[],"queries":[]},"ampVariants":{"alt-chat-style":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"annotation-tool":{"key":"off","metadata":{"default":true}},"appsflyer-smart-banner":{"key":"treatment","metadata":{"experimentKey":"exp-4"},"value":"treatment"},"audio-annotation-tool":{"key":"off","metadata":{"default":true}},"birthdate-international":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"cai-plus-chat-customization":{"key":"on","value":"on"},"cai-plus-chat-upgrade-turbo-upsell":{"key":"off","metadata":{"default":true}},"cai-plus-features-relaunch":{"key":"on","value":"on"},"cai-plus-relaunch":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"category-carousel-v1":{"key":"treatment","metadata":{"experimentKey":"exp-2"},"value":"treatment"},"char-profile-link":{"key":"on","value":"on"},"character-calls":{"key":"treatment","metadata":{"experimentKey":"exp-5"},"value":"treatment"},"character-calls-web":{"key":"treatment","metadata":{"experimentKey":"exp-2"},"value":"treatment"},"character-comments":{"key":"off","metadata":{"default":true}},"character-creation-dialog-ux":{"key":"off","metadata":{"default":true}},"character-profile":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"character-voices":{"key":"off","metadata":{"default":true}},"chat-improvements":{"key":"off","metadata":{"default":true}},"chat-improvements-2":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"create-character-voices":{"key":"off","metadata":{"default":true}},"creator-info":{"key":"off","metadata":{"default":true}},"creator-leaderboard":{"key":"off","metadata":{"default":true}},"default-voice":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"default-voice-dev":{"key":"off","metadata":{"default":true}},"demote-system-voices":{"key":"start-index-10","metadata":{"experimentKey":"exp-1"},"payload":{"startIndex":10},"value":"start-index-10"},"discord-account-linking":{"key":"on","value":"on"},"edit-messages":{"key":"off","metadata":{"default":true}},"email-autocorrect":{"key":"treatment","metadata":{"experimentKey":"exp-4"},"value":"treatment"},"enable-ssr":{"key":"off","metadata":{"default":true}},"eu-user":{"key":"control","value":"control"},"existing-user-birthday-picker":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"featured-creators":{"key":"off","metadata":{"default":true}},"featured-voices":{"key":"off","metadata":{"default":true}},"featured-voices-2":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"payload":{"featuredVoices":[{"id":"c14030ae-8405-11ee-b277-020017084944","name":"Zoey"},{"id":"60f440aa-8405-11ee-b277-020017084944","name":"Marie"},{"id":"46e7f596-8403-11ee-b277-020017084944","name":"Ignacio"},{"id":"2372d060-8401-11ee-b277-020017084944","name":"Taz"},{"id":"9815283b-47d7-4582-a98a-6890b9437d11","name":"Galen"},{"id":"06b4d874-d5ad-4290-b826-7ab90b39584d","name":"Ollie"},{"id":"78bfe953-3383-4790-913a-5f9273455b20","name":"Tala"},{"id":"91b464b9-2059-478a-b8e7-e10eb010cfb2","name":"Quinn"},{"id":"7bbee55e-a175-4cd6-b1d3-01187f9ec8d1","name":"Bodie"},{"id":"575b598d-adb4-41b5-b397-8a1f9895a39a","name":"Teacher"},{"id":"15590647-9362-40f7-a844-cd6d7104333f","name":"British"},{"id":"33c7753d-de43-4a8c-8175-e1a9a70aeced","name":"Vampire Bodyguard"},{"id":"b5902d7c-c7c0-4595-adf9-c919d6562513","name":"Francis"},{"id":"dfc3713a-b1c5-4095-92d4-bd2273682621","name":"Woman"},{"id":"0362127d-8061-429e-ae13-d4b77a05088f","name":"Bodyguard"},{"id":"607a8514-3d19-4e92-a64d-1756bb15f12a","name":"The Narrator"},{"id":"3592c5b5-7a3d-47fb-ab73-9eb90abba4f9","name":"African lady"},{"id":"b62c616c-7866-44fd-8572-58b63c4bd014","name":"Soft Bubbly"},{"id":"10e5e436-970a-4ae3-ad44-92f913754e29","name":"Southern"},{"id":"ef2d3be6-f59f-46b0-b8c3-999f9b31faa6","name":"Robot"},{"id":"71a78566-602f-4a39-8df0-aec30e246b4b","name":"Hailey"},{"id":"c1055228-7055-4958-b13d-cd06a5f0ad77","name":"French"},{"id":"0ec30b76-7d01-4519-a2da-6b3a29e7a9fb","name":"Hood"},{"id":"104924c4-53ea-4e3e-b54a-09e395304598","name":"Indian Girl Accent"},{"id":"ed478e86-6482-46da-8329-d405788ff155","name":"A French Girl"},{"id":"749401a6-fa67-4fed-9456-4ba504c46c77","name":"Male Russian Accent"},{"id":"a5d2813b-29ec-4d5f-beaa-94d7a6684a03","name":"Irish"}]},"value":"treatment"},"fullscreen-subscription-upsell":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"google-idp-auth":{"key":"on","value":"on"},"google-one-tap-login":{"key":"off","metadata":{"default":true}},"guide-search":{"key":"all-pages","metadata":{"experimentKey":"exp-1"},"value":"all-pages"},"holdout-feature-holdout":{"key":"off","metadata":{"default":true}},"homepage-v1-endpoints":{"key":"featured-v1","metadata":{"experimentKey":"exp-1"},"value":"featured-v1"},"language-chat-tooltip":{"key":"off","metadata":{"default":true}},"migrate-enabled":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"mobile-date-field":{"key":"google-style","metadata":{"experimentKey":"exp-1"},"value":"google-style"},"mobile-signup-redirect":{"key":"off","metadata":{"default":true}},"multiple-personas":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"pinned-messages":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"profile-subscription-banner":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"public-profile-redesign":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"recaptcha-enabled":{"key":"on","value":"on"},"remove-character":{"key":"off","metadata":{"default":true}},"remove-extra-amp-cookie":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"search-creators":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"select-language":{"key":"off","metadata":{"default":true}},"show-mu-banner":{"key":"off","metadata":{"default":true}},"sign-up-in":{"key":"treatment","metadata":{"experimentKey":"exp-6"},"value":"treatment"},"signup-to-chat-exp":{"key":"off","metadata":{"default":true}},"smart-custom-feedback-label-ordering":{"key":"off","metadata":{"default":true}},"suggested-replies":{"key":"off","metadata":{"default":true}},"top-header-blue-brand":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"user-persona":{"key":"off","metadata":{"default":true}},"voice-memo":{"key":"treatment","metadata":{"experimentKey":"exp-2"},"value":"treatment"},"voice-memo-dev":{"key":"off","metadata":{"default":true}},"voice-overrides-migration":{"key":"phase-2","value":"phase-2"},"voice-v3":{"key":"cloning-and-search","metadata":{"experimentKey":"exp-3"},"payload":{"cloning":true,"search":true,"tts":true},"value":"cloning-and-search"},"voice-web":{"key":"cloning-and-search","metadata":{"experimentKey":"exp-1"},"payload":{"cloning":true,"search":true,"tts":true},"value":"cloning-and-search"},"web-next-hero-scenarios":{"key":"off","metadata":{"default":true}},"web-next-opt-in":{"key":"treatment","metadata":{"experimentKey":"exp-1"},"value":"treatment"},"webnext":{"key":"on","value":"on"}},"statsigProps":{"user":{"customIDs":{"deviceID":"0dc68338-7f68-4e12-90b5-b88d982959c2"},"locale":"*","country":"","userAgent":"node","ip":"4.240.39.196","statsigEnvironment":{"tier":"production"}},"values":{"feature_gates":{"h+7YPBx+pqcr7fJDRPlUtX09tbptG/Nv5d/pxkGfxEo=":{"name":"h+7YPBx+pqcr7fJDRPlUtX09tbptG/Nv5d/pxkGfxEo=","value":false,"rule_id":"4060ehWhxr7YQN2KzTd10e","secondary_exposures":[]},"L/OFbrPDaKs2Qx6e2VYt5b38ztjKiwobErEesOR5yG4=":{"name":"L/OFbrPDaKs2Qx6e2VYt5b38ztjKiwobErEesOR5yG4=","value":false,"rule_id":"3OwF1S0x6MJYVqJWjhKPd8:0.00:5","secondary_exposures":[]},"dHnENwtUkdl/Qi2ut20+T4qbYdZUykvim5usgsycnkg=":{"name":"dHnENwtUkdl/Qi2ut20+T4qbYdZUykvim5usgsycnkg=","value":false,"rule_id":"7mPdFF80SMYU6KlYk6uQGf:0.00:1","secondary_exposures":[]},"Gbm6czeNSEW6q2mAdDKxIae9n6AbcuzoZ1yJgW6YScI=":{"name":"Gbm6czeNSEW6q2mAdDKxIae9n6AbcuzoZ1yJgW6YScI=","value":false,"rule_id":"default","secondary_exposures":[]},"YInuI1mJMy2mtzDnIMILmJCIXRQSCmrI3Z8aniEbZLQ=":{"name":"YInuI1mJMy2mtzDnIMILmJCIXRQSCmrI3Z8aniEbZLQ=","value":true,"rule_id":"disabled","secondary_exposures":[]},"Tl4J53h8ETMu5oxo1/Rc5n0XjZCk2kudnYZlUhXV44g=":{"name":"Tl4J53h8ETMu5oxo1/Rc5n0XjZCk2kudnYZlUhXV44g=","value":false,"rule_id":"default","secondary_exposures":[]},"NIJgMOyMwPkEtVFrNl6ByU4T4BRnzyfC83b7wqCvqCU=":{"name":"NIJgMOyMwPkEtVFrNl6ByU4T4BRnzyfC83b7wqCvqCU=","value":false,"rule_id":"default","secondary_exposures":[]},"ksomsXTBeBkkU8FKhV/Lb9hlxX24bdcL5cX3uF8Eo2o=":{"name":"ksomsXTBeBkkU8FKhV/Lb9hlxX24bdcL5cX3uF8Eo2o=","value":false,"rule_id":"default","secondary_exposures":[]},"kKPJEf3ewG+816B1hwEvZa3sgqKYfbJvwnGC8ShIlgU=":{"name":"kKPJEf3ewG+816B1hwEvZa3sgqKYfbJvwnGC8ShIlgU=","value":false,"rule_id":"default","secondary_exposures":[]},"jFdCBekTDowpfNZ1eEMOPrbocYpkBQCoq7m09RHc9HQ=":{"name":"jFdCBekTDowpfNZ1eEMOPrbocYpkBQCoq7m09RHc9HQ=","value":false,"rule_id":"default","secondary_exposures":[]},"1ydlvCWToPKsH5XJzri02t3acJl78cp+zUvH14FIU5M=":{"name":"1ydlvCWToPKsH5XJzri02t3acJl78cp+zUvH14FIU5M=","value":false,"rule_id":"default","secondary_exposures":[]},"8QQv9KaHgQjzpfAtzEgGzU1oDHiexPcw3FdHmGDinz0=":{"name":"8QQv9KaHgQjzpfAtzEgGzU1oDHiexPcw3FdHmGDinz0=","value":true,"rule_id":"2LdP4LdBsZrRl11isIjv48:100.00:2","secondary_exposures":[]},"PsRtJJ9DXoIsQ2M+qjawbhgmzgu1n7Yh2CKZQ74icmU=":{"name":"PsRtJJ9DXoIsQ2M+qjawbhgmzgu1n7Yh2CKZQ74icmU=","value":true,"rule_id":"24zPeKC8HD0k8MUIh4ev1N:100.00:4","secondary_exposures":[]},"FWIgZUPadkEjwhvVJGdPCoqvSciol0TJc1L+Z39+QAY=":{"name":"FWIgZUPadkEjwhvVJGdPCoqvSciol0TJc1L+Z39+QAY=","value":false,"rule_id":"default","secondary_exposures":[]},"iYvNTZ+eLnZsF1E9Trpd0XxFXOb69vRmWzFjBdVdvfg=":{"name":"iYvNTZ+eLnZsF1E9Trpd0XxFXOb69vRmWzFjBdVdvfg=","value":false,"rule_id":"1Lkw4aILsPSft0DRsYeOLM:20.00:3","secondary_exposures":[]},"+mzfcPCvrTVGMk3TsM6HalO39VYVFNiFs4p+jcYv/GI=":{"name":"+mzfcPCvrTVGMk3TsM6HalO39VYVFNiFs4p+jcYv/GI=","value":false,"rule_id":"default","secondary_exposures":[]},"UWLa1IrwvT1eKWTtEu/AMJcrIlY3vV8MjuCVpyX6Iyc=":{"name":"UWLa1IrwvT1eKWTtEu/AMJcrIlY3vV8MjuCVpyX6Iyc=","value":true,"rule_id":"1uYkDsXaBJPBmoIg9iAkwU:100.00:1","secondary_exposures":[]},"gooo7WYI0i1XWSW4dRRw18GxCq6p003DBZcOKp7oMjc=":{"name":"gooo7WYI0i1XWSW4dRRw18GxCq6p003DBZcOKp7oMjc=","value":false,"rule_id":"6RkNmMiNFDlFOLJeX8wloa:0.00:1","secondary_exposures":[]},"xUzEZkwTXvwZpmzFxpH0ahOoeWihDv3htQWtRz/Uv/A=":{"name":"xUzEZkwTXvwZpmzFxpH0ahOoeWihDv3htQWtRz/Uv/A=","value":false,"rule_id":"default","secondary_exposures":[]},"yMkjuHBtXPBJruHeAK5sXcSCf1/aWjzKnu2QT5DxQGA=":{"name":"yMkjuHBtXPBJruHeAK5sXcSCf1/aWjzKnu2QT5DxQGA=","value":true,"rule_id":"CY9XTFxaSn25OIjRfq3iE","secondary_exposures":[]},"qUSU2hQ9h9IzNnrdCoQO/LUi7QIh2ME28OY4O+qUrRY=":{"name":"qUSU2hQ9h9IzNnrdCoQO/LUi7QIh2ME28OY4O+qUrRY=","value":false,"rule_id":"6AD9T7Oq8qtKyYgm1wHoqQ:0.00:2","secondary_exposures":[]},"8ercpzJStFxBfc/hG3QZy5CHqj39EoXPFBrCLp5xwd0=":{"name":"8ercpzJStFxBfc/hG3QZy5CHqj39EoXPFBrCLp5xwd0=","value":false,"rule_id":"disabled","secondary_exposures":[]},"munsm+NH4c9b/f1+s9wImnYVqwaRyVpAudjgJMTuszY=":{"name":"munsm+NH4c9b/f1+s9wImnYVqwaRyVpAudjgJMTuszY=","value":true,"rule_id":"disabled","secondary_exposures":[]},"0+McNC+jAAFtlyIn1UPhgKM32U4M0STKtD+Os+VRSvE=":{"name":"0+McNC+jAAFtlyIn1UPhgKM32U4M0STKtD+Os+VRSvE=","value":true,"rule_id":"disabled","secondary_exposures":[]},"a2J8IRQ4DM9OVpwV2DRp8RJHYevi1wRSxWa3G+DUoMc=":{"name":"a2J8IRQ4DM9OVpwV2DRp8RJHYevi1wRSxWa3G+DUoMc=","value":true,"rule_id":"disabled","secondary_exposures":[]},"2Wz949I4Ox5Gse/X6BPw/ead9CWvtBWCJExqqNEQryE=":{"name":"2Wz949I4Ox5Gse/X6BPw/ead9CWvtBWCJExqqNEQryE=","value":true,"rule_id":"6RUYGt7ebt3rd4t82vwvmw:100.00:10","secondary_exposures":[]},"YQh6spQ3wkZx84HSo3cxCgasvla9uLVcwL2Hn2seVT0=":{"name":"YQh6spQ3wkZx84HSo3cxCgasvla9uLVcwL2Hn2seVT0=","value":false,"rule_id":"default","secondary_exposures":[]},"/XNVQ0R9Q4Tt+Yy/YDV/c/cB205n+5GqFXc/5f9T1nE=":{"name":"/XNVQ0R9Q4Tt+Yy/YDV/c/cB205n+5GqFXc/5f9T1nE=","value":false,"rule_id":"default","secondary_exposures":[]}},"dynamic_configs":{"CFjf8nVvBN2mehK36rPDmXNAlej8kVVUVW65CKDAALI=":{"name":"CFjf8nVvBN2mehK36rPDmXNAlej8kVVUVW65CKDAALI=","value":{"surveyURL":""},"group":"disabled","rule_id":"disabled","is_device_based":false,"secondary_exposures":[]},"qCO4y3/B/TLDA69Oqnq62YzZwhqzPLP81r0WHqt8KHc=":{"name":"qCO4y3/B/TLDA69Oqnq62YzZwhqzPLP81r0WHqt8KHc=","value":{},"group":"default","rule_id":"default","is_device_based":false,"secondary_exposures":[]},"IRXh/YfFKgtuW27QW+WbHZ8uLtmJEMikOvdjGXFZP6M=":{"name":"IRXh/YfFKgtuW27QW+WbHZ8uLtmJEMikOvdjGXFZP6M=","value":{},"group":"default","rule_id":"default","is_device_based":false,"secondary_exposures":[]},"njue/3phRwU+CoVAd5W8BdWWQ6P3xab5W10k5bXemk0=":{"name":"njue/3phRwU+CoVAd5W8BdWWQ6P3xab5W10k5bXemk0=","value":{"signupToChat":true},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"2Gshm8MlYQTQa4l/2ichfZljcZ2N5cVqxH3kTnnBqR8=":{"name":"2Gshm8MlYQTQa4l/2ichfZljcZ2N5cVqxH3kTnnBqR8=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"abandoned","rule_id":"abandoned","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["maxRecentSearchQueries"],"is_user_in_experiment":false,"is_experiment_active":false,"is_in_layer":true},"8z+bN2OrattITwd/ZMXzCv2GCepaJi2b4ngIwjytNps=":{"name":"8z+bN2OrattITwd/ZMXzCv2GCepaJi2b4ngIwjytNps=","value":{},"group":"layerAssignment","rule_id":"layerAssignment","is_device_based":false,"secondary_exposures":[{"gate":"staff","gateValue":"false","ruleID":"default"},{"gate":"is_staff","gateValue":"false","ruleID":""}],"is_user_in_experiment":false,"is_experiment_active":true},"Dja7K8EiFEZnYZNeWnVWVnDGp1iwLswLiKxqUg48h+c=":{"name":"Dja7K8EiFEZnYZNeWnVWVnDGp1iwLswLiKxqUg48h+c=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["useNeo"],"is_user_in_experiment":false,"is_experiment_active":false,"is_in_layer":true},"lZwZUuIaq5EUkNHkkmzJrk1rXoCiqVTuPfdRoYeoSEM=":{"name":"lZwZUuIaq5EUkNHkkmzJrk1rXoCiqVTuPfdRoYeoSEM=","value":{"enabled":true,"variant":"newcopy"},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"ypQypVB9lkE6Bv598hnvX+P8rK2ztQ0rn1iJuFCmTwo=":{"name":"ypQypVB9lkE6Bv598hnvX+P8rK2ztQ0rn1iJuFCmTwo=","value":{},"group":"layerAssignment","rule_id":"layerAssignment","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":true},"1ZCcUEd7Hjus0DdvhZZsGrfDvN+JZA96KUu1qx76Nkk=":{"name":"1ZCcUEd7Hjus0DdvhZZsGrfDvN+JZA96KUu1qx76Nkk=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"prestart","rule_id":"prestart","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["maxRecentSearchQueries","useNeo"],"is_user_in_experiment":false,"is_experiment_active":false,"is_in_layer":true},"c4oHsZKhZ31W4H/cTtfwN0tX5RfkIDrBwcjmIQGvirk=":{"name":"c4oHsZKhZ31W4H/cTtfwN0tX5RfkIDrBwcjmIQGvirk=","value":{},"group":"inlineTargetingRules","rule_id":"inlineTargetingRules","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":true},"EoJq7AhQxrJ7QGOjpI18Q7ZmF+Y8m4wv5riwrWsDytM=":{"name":"EoJq7AhQxrJ7QGOjpI18Q7ZmF+Y8m4wv5riwrWsDytM=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"layerAssignment","rule_id":"layerAssignment","is_device_based":false,"secondary_exposures":[],"explicit_parameters":["maxRecentSearchQueries"],"is_user_in_experiment":false,"is_experiment_active":true,"is_in_layer":true},"7agBIKa6IQnLPdkfDnifnAW7IQ/llLOjUDb1sCtKBr0=":{"name":"7agBIKa6IQnLPdkfDnifnAW7IQ/llLOjUDb1sCtKBr0=","value":{"enabled":true,"variant":"border"},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"0VC8QXe1x8olL50kQHwzTdZ11C7sS9pXNpvhiRq485M=":{"name":"0VC8QXe1x8olL50kQHwzTdZ11C7sS9pXNpvhiRq485M=","value":{"fasterResponsesFeatured":"treatment2"},"group":"launchedGroup","rule_id":"launchedGroup","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":false,"is_experiment_active":false},"GMrm494Za7TTKhGlUTG3j4678dUX65thGagjdYbyUIk=":{"name":"GMrm494Za7TTKhGlUTG3j4678dUX65thGagjdYbyUIk=","value":{"topics":{"role-playing":[{"name":"adventure","avatar":"uploaded/2022/12/8/qGJwWgN8hd239JzBzNMQPZDEZqcimkjiI4ZX_nAp1wM.webp?webp=true\u0026anim=0"},{"name":"anime","avatar":"uploaded/2022/11/17/k-quDTyIA3DbTYx29WrCP7TeP3Ja1alBwb2lh0SBZp8.webp?webp=true\u0026anim=0"},{"name":"fantasy","avatar":"uploaded/2023/9/5/SzgXYcomBhxzULfEKZjJVu-Ol6gXG1uJi-XkP94YrLw.webp?webp=true\u0026anim=0"},{"name":"history","avatar":"uploaded/2022/10/7/bL8CTNt4D0nXfHw1u_m3SmHU6lgDIzyFQzh_LOuJLU8.webp?webp=true\u0026anim=0"},{"name":"lgbtq","mature":true,"avatar":"uploaded/2024/12/3/KVophpx5SCLsblzcnPlEs6Up2b7x9zc-9SD_LrelWnM.webp?webp=true\u0026anim=0"},{"name":"mystery","avatar":"uploaded/2024/9/25/WJCv1u-wHUuGEhg6KaCi5tcwKRKApmVLacNwNhC-dlc.webp?webp=true\u0026anim=0"},{"name":"paranormal","avatar":"uploaded/2023/7/19/qHTNxqOKJqjXP5fgt2D9gYyMO98bYynWjHEhkDUFuZk.webp?webp=true\u0026anim=0"},{"name":"religion","mature":true,"avatar":"uploaded/2024/12/3/UqxbVRvPUayuT0E4lZ7JVj_9JH1cXsdqImhuY_s4CWk.webp?webp=true\u0026anim=0"},{"name":"romance","mature":true,"avatar":"uploaded/2024/12/3/HSuMFZgzkcln8ckM973ONiSufT2oO7SoH3kWgcMT_jk.jpg?webp=true\u0026anim=0"},{"name":"sci_fi","avatar":"uploaded/2022/10/9/AAUwehKov9h542rgBceGQ2L-MkjwMBSxoDgSsUkXIO4.webp?webp=true\u0026anim=0"}],"lifestyle":[{"name":"friendship","avatar":"uploaded/2024/11/29/14ndMsDtlgUnDdgqPFhBPOuYQ9PuOeww5Xx42cFZZxw.webp?webp=true\u0026anim=0"},{"name":"emotional_wellness","avatar":"uploaded/2024/7/11/e2DukE3QcFKQzID2oktGtaihF6t8drdi-MhuCgl0G2U.webp?webp=true\u0026anim=0"},{"name":"personal_growth","avatar":"uploaded/2023/4/21/Q0STz0Q87AN-Tsi74aXkF1_OCaZc3ivtekCIusPEqq8.webp?webp=true\u0026anim=0"}],"entertainment":[{"name":"humor","avatar":"uploaded/2024/11/29/RmWcGFxRpdOXKhFbh_4iA0FQYL7ExdxagJIpx7839KI.webp?webp=true\u0026anim=0"},{"name":"games","avatar":"uploaded/2024/2/8/ND0aDvzoaXqkq7FmjzqPWenQGiy1Tbgj-VtHdNFvAVs.webp?webp=true\u0026anim=0"},{"name":"astrology","avatar":"uploaded/mSZnfioPQeMtE9sA9q6uYnVZILMosnWn21wYaaDgi6U.webp?webp=true\u0026anim=0"},{"name":"fortune_tellers","avatar":"uploaded/2024/4/19/0t0WEdtSbFTrr1UccoPZ4SNv3dVVEi0xnFrRtkoJEMc.webp?webp=true\u0026anim=0"}],"productivity":[{"name":"learn_a_language","avatar":"uploaded/2024/9/6/yvgM1ito9vd3ERDMRUZ1QjmkpmMyU7j1-8O7mplepIo.webp?webp=true\u0026anim=0"},{"name":"speaking_practice","avatar":"uploaded/2022/11/2/8ClONPmny_VAZCy1XQN5wXmRMjEGTuNtrYNmKjmGz2I.webp?webp=true\u0026anim=0"},{"name":"assistants","avatar":"uploaded/2022/10/30/G6oTv-WmT-nfPfk76KSB-57ibDivunOFyTV88GleID8.webp?webp=true\u0026anim=0"},{"name":"creative_writing","avatar":"uploaded/2022/11/1/jN7L5f1Km0PE0HNAKJezNV6gRvOHC6jgYmgO8ovM9JY.webp?webp=true\u0026anim=0"}]},"showSkip":false,"enabled":true},"group":"4HwORXjmFJqTmRLwlbdJwY","rule_id":"4HwORXjmFJqTmRLwlbdJwY","is_device_based":false,"secondary_exposures":[],"is_user_in_experiment":true,"is_experiment_active":true}},"layer_configs":{"j8+KQ7Fzq0lE7Q9TSaDKyyg7w67BjTlR5g04i5EJ75o=":{"name":"j8+KQ7Fzq0lE7Q9TSaDKyyg7w67BjTlR5g04i5EJ75o=","value":{"maxRecentSearchQueries":0,"useNeo":true},"group":"default","rule_id":"default","is_device_based":false,"secondary_exposures":[],"explicit_parameters":[],"undelegated_secondary_exposures":[]}},"sdkParams":{},"has_updates":true,"generator":"statsig-node-lite-sdk","sdkInfo":{"sdkType":"statsig-node-lite","sdkVersion":"0.3.0"},"time":1734570837653,"evaluated_keys":{"customIDs":{"deviceID":"0dc68338-7f68-4e12-90b5-b88d982959c2"}},"hash_used":"sha256","user":{"customIDs":{"deviceID":"0dc68338-7f68-4e12-90b5-b88d982959c2"},"locale":"*","country":"","userAgent":"node","ip":"4.240.39.196","statsigEnvironment":{"tier":"production"}}}},"accountIneligible":false,"trpcStateCompressed":"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","_sentryTraceData":"efa6c0146f87438fab757abaa597686e-afc06d4a77a2a682-0","_sentryBaggage":"sentry-environment=production,sentry-release=ba78a6d3aeedef346915fc24f6715306d13f4c55,sentry-public_key=ec9642a19be21b8d99b816d70ffad372,sentry-trace_id=efa6c0146f87438fab757abaa597686e,sentry-sample_rate=0.001,sentry-transaction=%2F,sentry-sampled=false"},"__N_SSP":true},"page":"/","query":{},"buildId":"fLM9WbWi4SpM7aUCFSFEj","isFallback":false,"dynamicIds":[3216],"gssp":true,"customServer":true,"scriptLoader":[]}</script><script nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script async="" src="/_next/static/chunks/3216.659bfcf760618cdc.js"></script><script src="/_next/static/chunks/webpack-d6a17200e906e289.js" async=""></script><script src="/_next/static/chunks/framework-ed8cc3c33d3f647c.js" async=""></script><script src="/_next/static/chunks/main-6175319feaec779b.js" async=""></script><script src="/_next/static/chunks/pages/_app-d0a802f0d4bd58ca.js" async=""></script><script src="/_next/static/chunks/aeb74aa0-38e5e71941fdf07a.js" async=""></script><script src="/_next/static/chunks/8092-586fc6bb614207df.js" async=""></script><script src="/_next/static/chunks/pages/index-9c39f6ed38dcdbc6.js" async=""></script><script src="/_next/static/fLM9WbWi4SpM7aUCFSFEj/_buildManifest.js" async=""></script><script src="/_next/static/fLM9WbWi4SpM7aUCFSFEj/_ssgManifest.js" async=""></script></body></html>
Sorry for late.
Github restricting me because I'm exceeding the comment characters limit, so:
https://gist.github.com/PikaBotz/a316d1deb72ec44fac2f5ef990e3d68c
Edge rollout says NaN on the Termux output. Strange. I'll investigate further. Thank you.
…
On Thu, Dec 19, 2024, 9:15 PM Pika-Kun <3 @.> wrote: Github restricting me because I'm exceeding the comment characters limit, so: https://gist.github.com/PikaBotz/a316d1deb72ec44fac2f5ef990e3d68c — Reply to this email directly, view it on GitHub <#190 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AZ4WO5KEJM5QELAEKF654232GMSNPAVCNFSM6AAAAABT3RBFKKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNJVGY4TIOJWGA . You are receiving this because you commented.Message ID: @.>
Okay so now where should I deploy the express.js server?
Hello, I'm not sure to exactly understand your question.
Hello, I'm not sure to exactly understand your question.
You see koyeb is showing error, Vercel isn't compatible, idk why render isn't running with my github acc, just for one API buying heroku isn't worth it, termux - codespaces - vscodes - windows aren't maintainable. So now where should I deploy my express.js app to use your cai module as an API.
And one more question, if koyeb is showing edge rollout: 31 then why the error?
if koyeb is showing edge rollout: 31 then why the error?
Hmm. I am not entirely sure.
You see koyeb is showing error, Vercel isn't compatible, idk why render isn't running with my github acc, just for one API buying heroku isn't worth it, termux - codespaces - vscodes - windows aren't maintainable. So now where should I deploy my express.js app to use your cai module as an API.
You should consider hosting it somewhere on a VPS or any platform that can run node.js. There are many good services that can answer your case.
I am still investigating why this happens to you though.