Spaces:
Sleeping
Sleeping
import { ChatBot } from "@/app/(audiences)/for-students/data/chatbots"; | |
export const CHATBOTS: ChatBot[] = [ | |
// 精選 (最多人用) | |
{ | |
id: "1", | |
title: "Lesson Planner", | |
description: "智能課程規劃助手,協助教師設計有效的教學計劃。", | |
subject: "教學", | |
category: "教育", | |
icon: "lesson-planner.webp", | |
popular: true, | |
}, | |
{ | |
id: "2", | |
title: "Assignment Creator", | |
description: "自動生成作業和測驗,節省備課時間。", | |
subject: "教學", | |
category: "教育", | |
icon: "assignment-creator.webp", | |
popular: true, | |
}, | |
{ | |
id: "3", | |
title: "Grading Assistant", | |
description: "智能評分助手,提供客觀的評分建議和回饋。", | |
subject: "評量", | |
category: "教育", | |
icon: "grading-assistant.webp", | |
popular: true, | |
}, | |
{ | |
id: "4", | |
title: "Student Analytics", | |
description: "學生學習數據分析,掌握學習成效。", | |
subject: "分析", | |
category: "研究與分析", | |
icon: "student-analytics.webp", | |
popular: true, | |
}, | |
// 熱門 (近期熱門) | |
{ | |
id: "5", | |
title: "Content Creator", | |
description: "教材內容生成助手,快速製作教學素材。", | |
subject: "教學", | |
category: "生產力", | |
icon: "content-creator.webp", | |
trending: true, | |
}, | |
{ | |
id: "6", | |
title: "Classroom Manager", | |
description: "課堂管理助手,提升教學效率。", | |
subject: "管理", | |
category: "教育", | |
icon: "classroom-manager.webp", | |
trending: true, | |
}, | |
// Add more teacher-specific chatbots... | |
]; | |
export const getPopularBots = () => CHATBOTS.filter((bot) => bot.popular); | |
export const getTrendingBots = () => CHATBOTS.filter((bot) => bot.trending); | |
export const getAllBots = () => CHATBOTS; | |