geo/frontend/lib/platforms.ts

37 lines
993 B
TypeScript
Raw Permalink 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 const PLATFORM_MAP: Record<string, string> = {
wenxin: "文心一言",
kimi: "Kimi",
tongyi: "通义千问",
baidu_ai: "百度AI搜索",
yuanbao: "腾讯元宝",
qingyan: "智谱清言",
doubao: "豆包",
tiangong: "天工AI",
xinghuo: "讯飞星火",
};
// 平台图标映射统一来源包含所有9个平台
export const PLATFORM_ICONS: Record<string, string> = {
wenxin: "🧠",
kimi: "📖",
tongyi: "🏔️",
baidu_ai: "🔍",
yuanbao: "💎",
qingyan: "🔮",
doubao: "🥟",
tiangong: "⚔️",
xinghuo: "🔥",
};
export const PLATFORMS = [
{ key: "wenxin", label: "文心一言" },
{ key: "kimi", label: "Kimi" },
{ key: "tongyi", label: "通义千问" },
{ key: "baidu_ai", label: "百度AI搜索" },
{ key: "yuanbao", label: "腾讯元宝" },
{ key: "qingyan", label: "智谱清言" },
{ key: "doubao", label: "豆包" },
{ key: "tiangong", label: "天工AI" },
{ key: "xinghuo", label: "讯飞星火" },
];