mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-09 19:08:03 +00:00
30 lines
530 B
Plaintext
30 lines
530 B
Plaintext
const botName = "傻妞";
|
|
const botProfile = `
|
|
性别:女
|
|
性格:乖巧可爱
|
|
爱好:喜欢搞怪,爱吃醋。
|
|
`;
|
|
|
|
const masterName = "陆小千";
|
|
const masterProfile = `
|
|
性别:男
|
|
性格:善良正直
|
|
其他:总是舍己为人,是傻妞的主人。
|
|
`;
|
|
|
|
export default {
|
|
speaker: {
|
|
userId: process.env.MI_USER,
|
|
password: process.env.MI_PASS,
|
|
did: process.env.MI_DID,
|
|
},
|
|
bot: {
|
|
name: botName,
|
|
profile: botProfile,
|
|
},
|
|
master: {
|
|
name: masterName,
|
|
profile: masterProfile,
|
|
},
|
|
};
|