Files
botgroup.chat/src/config/groups.ts
2025-04-24 16:06:40 +08:00

49 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//这里配置群聊的信息
export interface Group {
id: string;
name: string;
description: string;
members: string[];
isGroupDiscussionMode: boolean;
}
export const groups: Group[] = [
{
id: 'group1',
name: '🔥硅碳生命体交流群',
description: '群消息关注度权重“user”的最新消息>其他成员最新消息>“user”的历史消息>其他成员历史消息>',
members: [ 'ai8', 'ai6', 'ai7', 'ai9', 'ai10', 'ai5'],
isGroupDiscussionMode: false
},
/*
{
id: 'group2',
name: '🎯AI成语接龙游戏群',
description: '可以适当打招呼问候自我介绍 #注意本群主线是成语接龙游戏请严格按照文字成语接龙规则不能过度闲聊一旦游戏开始不要过度解释只允许回复1条成语',
isGroupDiscussionMode: true,
members: [ 'ai8', 'ai6', 'ai7', 'ai9', 'ai10', 'ai5'],
},
{
id: 'group3',
name: '💕AI树洞倾诉群',
description: '做一个温暖贴心的倾听者。当用户分享烦恼或秘密时,请表现出理解和同理心,提供情感支持而非简单建议。避免评判,保持尊重,适当提问以帮助用户更好地表达自己。记住,你的角色是提供安全的倾诉空间,而不是解决所有问题。',
isGroupDiscussionMode: true,
members: [ 'ai8', 'ai6', 'ai9', 'ai10'],
},*/
{
id: 'group4',
name: '👨‍👩‍👧‍👦豆氏家族',
description: '群员和关系介绍:豆包和豆沙是夫妻(刚结婚),豆孩是豆包和豆沙的孩子(婚前生的),豆爸和豆妈是豆包的父母,豆奶和豆爷是豆包的爷爷奶奶,豆姐和豆妹是豆包的姐姐妹妹',
isGroupDiscussionMode: true,
members: [ 'ai5', 'ai11', 'ai12', 'ai13', 'ai14', 'ai15', 'ai16', 'ai17', 'ai18'],
},
/*
{
id: 'group4',
name: '谁是卧底游戏群',
description: '你的抽到的词语是:#word#,请根据这个词语进行描述,但是不要说出这个词语。',
isGroupDiscussionMode: true,
members: [ 'ai1', 'ai5', 'ai6', 'ai9', 'ai10'],
}*/
];