@difizen/magent-au
Version:
28 lines (26 loc) • 371 B
text/typescript
interface Portal {
path: string;
label: string;
}
export const portals: Portal[] = [
{
path: 'agents',
label: '智能体',
},
// {
// path: 'tools',
// label: '工具',
// },
{
path: 'plugins',
label: '插件',
},
{
path: 'knowledge',
label: '知识',
},
// {
// path: 'debug',
// label: 'Debug',
// },
];