接入 豆包 千问 和元宝

This commit is contained in:
maojindao55
2025-02-17 19:58:37 +08:00
parent 8b55424150
commit 8d2c21bdc8
4 changed files with 170 additions and 58 deletions

22
src/config/groups.ts Normal file
View File

@@ -0,0 +1,22 @@
//这里配置群聊的信息
export interface Group {
id: string;
name: string;
description: string;
members: string[];
}
export const groups: Group[] = [
{
id: 'group1',
name: '硅碳摸鱼交流群',
description: '硅碳摸鱼交流群',
members: ['ai1', 'ai2', 'ai3']
},
{
id: 'group2',
name: '硅碳生命体交流群',
description: '硅碳生命体交流群',
members: ['ai4', 'ai5', 'ai6']
}
];