升级套餐
同频会员
150万 Token / 月 ¥29 / 月
同频 Pro
400万 Token / 月 ¥59 / 月
选择你的 AI 人生搭子
不只是聊天,而是慢慢认识你。
我的记忆
同频 AI 会记住一些对你有帮助的信息。
正在加载...
border-radius:16px;
padding:0 16px;
font-size:15px;
outline:none;
box-sizing:border-box;
}
#xiaomanChatPage .xiaoman-input button{
width:70px;
border:0;
border-radius:16px;
background:#222;
color:#fff;
font-size:15px;
}
function openXiaomanChat(){
localStorage.setItem("currentPage","xiaomanChat");
document.body.classList.add("xiaoman-chat-open");
document.getElementById("oldChatArea").style.display="none";
document.getElementById("xiaomanChatPage").style.display="flex";
}
function closeXiaomanChat(){
localStorage.setItem("currentPage","home");
document.documentElement.classList.remove("xiaoman-loading");
document.getElementById("xiaomanChatPage").style.display="none";
document.getElementById("oldChatArea").style.display="none";
document.body.classList.remove("xiaoman-chat-open");
}