Spaces:
Sleeping
Sleeping
File size: 3,652 Bytes
5081fcb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
export interface ChatBot {
id: string;
title: string;
description: string;
subject: string;
icon: string;
category: string;
popular?: boolean;
trending?: boolean;
}
export const CHATBOTS: ChatBot[] = [
// 精選 (最多人用)
{
id: "1",
title: "Code Tutor",
description: "Let's code together! I'm Khanmigo Lite, by Khan Academy.",
subject: "電腦科學",
category: "教育",
icon: "code-tutor.webp",
popular: true,
},
{
id: "2",
title: "Math Solver",
description: "數學解題助手,從基礎數學到高等微積分都能協助理解和解題。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
popular: true,
},
{
id: "3",
title: "Essay Writer",
description: "協助改進寫作技巧,提供建議和修改意見,適用於各種文體。",
subject: "國語文",
category: "寫作",
icon: "code-tutor.webp",
popular: true,
},
{
id: "4",
title: "English Master",
description: "全方位英語學習助手,提供聽說讀寫全面訓練。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
popular: true,
},
// 熱門 (近期熱門)
{
id: "5",
title: "Math Practice",
description: "針對各年級數學題目練習,提供詳細解答和步驟說明。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
trending: true,
},
{
id: "6",
title: "English Conversation",
description: "實用英語對話練習,提升口語和聽力能力。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
trending: true,
},
{
id: "7",
title: "Physics Tutor",
description: "物理概念解說和題目解析,讓物理學習更輕鬆。",
subject: "自然科學",
category: "教育",
icon: "code-tutor.webp",
trending: true,
},
{
id: "8",
title: "Chemistry Lab",
description: "虛擬化學實驗室,安全地探索化學反應和概念。",
subject: "自然科學",
category: "教育",
icon: "code-tutor.webp",
trending: true,
},
// 家教、數學、英文相關
{
id: "9",
title: "Personal Tutor",
description: "個人化學習規劃和指導,適應每個學生的學習步調。",
subject: "教學",
category: "教育",
icon: "code-tutor.webp",
},
{
id: "10",
title: "Math Concepts",
description: "深入淺出講解數學概念,建立紮實的數學基礎。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
},
{
id: "11",
title: "English Grammar",
description: "系統性學習英語文法,從基礎到進階全面掌握。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
},
{
id: "12",
title: "English Writing",
description: "英文寫作指導,從句子到文章的全方位訓練。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
},
{
id: "13",
title: "Math Problems",
description: "豐富的數學題庫,配合詳細解說和練習。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
},
{
id: "14",
title: "TOEIC Prep",
description: "針對多益考試的專業培訓和模擬測驗。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
},
];
export const getPopularBots = () => CHATBOTS.filter((bot) => bot.popular);
export const getTrendingBots = () => CHATBOTS.filter((bot) => bot.trending);
export const getAllBots = () => CHATBOTS;
|