import { aiPlatformCatalog } from "@geo/shared-types"; export interface KolPlatformOption { label: string; value: string; } export function buildKolPlatformOptions(defaultLabel: string): KolPlatformOption[] { return [ { label: defaultLabel, value: "通用" }, ...aiPlatformCatalog.map((item) => ({ label: item.label, value: item.id })), ]; }