Files
param-hub-python/data/categories.json
hubian 2c981cb363 feat: 手机类别字段全面重构
- 删除原有简单字段(processor/ram_gb/storage_gb/screen_size/battery_mah)
- 新增52个详细字段,覆盖手机完整参数:
  - 基本信息:型号、品牌、发布日期、上市时间、产品级别、价格
  - 系统与处理器:操作系统、处理器(SoC)、GPU
  - 存储与内存:运行内存、存储空间、存储扩展
  - 屏幕:尺寸、类型、分辨率、刷新率、LTPO、亮度、屏幕特色
  - 摄像头:后置主摄、超广角、长焦、前置、视频录制、摄像头特色
  - 电池与充电:电池容量、有线快充、无线充电、电池特色
  - 连接与网络:运营商网络、Wi-Fi、蓝牙、NFC、红外遥控、定位、USB、SIM卡
  - 机身与外观:指纹识别、防水等级、面部识别、重量、厚度、材质、颜色、中框
  - 其他功能:扬声器、耳机接口、震动反馈
  - 特色与链接:特色、官网地址、数据参考、描述
- 字段名不带单位,数据提取时保留原始单位
- 更新子类别关键特性配置
- 智能添加prompt自动包含新字段配置
2026-04-30 13:00:48 +08:00

1682 lines
42 KiB
JSON
Raw 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.
[
{
"id": "ai-models",
"name": "AI模型",
"icon": "ri-robot-line",
"color": "blue",
"description": "大语言模型、图像模型等AI模型参数",
"order": 1,
"subcategories": [
{
"id": "chat",
"name": "对话模型",
"icon": "ri-chat-3-line",
"key_features": [
"context_length",
"mmlu",
"input_price",
"output_price"
],
"feature_labels": {
"context_length": "上下文",
"mmlu": "MMLU",
"input_price": "输入价",
"output_price": "输出价"
},
"extra_fields": []
},
{
"id": "code",
"name": "代码模型",
"icon": "ri-code-line",
"key_features": [
"humaneval",
"context_length",
"input_price"
],
"feature_labels": {
"humaneval": "HumanEval",
"context_length": "上下文",
"input_price": "输入价"
},
"extra_fields": []
},
{
"id": "reasoning",
"name": "推理模型",
"icon": "ri-lightbulb-line",
"key_features": [
"reasoning_capability",
"mmlu",
"context_length"
],
"feature_labels": {
"reasoning_capability": "推理能力",
"mmlu": "MMLU",
"context_length": "上下文"
},
"extra_fields": [
{
"key": "reasoning_capability",
"label": "推理能力",
"type": "text",
"description": "是否专门推理模型",
"required": false,
"input_style": "normal"
},
{
"key": "thinking_mode",
"label": "思考模式",
"type": "text",
"description": "思考模式类型",
"required": false,
"input_style": "normal"
}
]
},
{
"id": "vision",
"name": "视觉模型",
"icon": "ri-image-line",
"key_features": [
"vision_capability",
"multimodal",
"context_length"
],
"feature_labels": {
"vision_capability": "视觉能力",
"multimodal": "多模态",
"context_length": "上下文"
},
"extra_fields": [
{
"key": "vision_capability",
"label": "视觉能力",
"type": "text",
"description": "是否支持图像输入",
"required": false,
"input_style": "normal"
},
{
"key": "multimodal",
"label": "多模态",
"type": "text",
"description": "是否多模态模型",
"required": false,
"input_style": "normal"
}
]
}
],
"fields": [
{
"key": "name",
"label": "名称",
"type": "text",
"description": "模型名称",
"required": true,
"input_style": "normal"
},
{
"key": "organization",
"label": "厂商",
"type": "text",
"description": "开发公司/组织",
"required": true,
"input_style": "normal"
},
{
"key": "parameters",
"label": "参数量(B)",
"type": "text",
"description": "模型参数量单位B十亿",
"required": true,
"input_style": "normal"
},
{
"key": "architecture",
"label": "架构",
"type": "text",
"description": "模型架构如Transformer、MoE",
"required": false,
"input_style": "normal"
},
{
"key": "context_length",
"label": "上下文长度",
"type": "text",
"description": "最大上下文窗口",
"required": false,
"input_style": "normal"
},
{
"key": "is_open_source",
"label": "开源",
"type": "text",
"description": "是否开源模型",
"required": false,
"input_style": "normal"
},
{
"key": "mmlu",
"label": "MMLU分数",
"type": "text",
"description": "MMLU基准测试分数",
"required": false,
"input_style": "normal"
},
{
"key": "humaneval",
"label": "HumanEval分数",
"type": "text",
"description": "HumanEval代码能力分数",
"required": false,
"input_style": "normal"
},
{
"key": "input_price",
"label": "输入价格($/1K)",
"type": "text",
"description": "每1K输入token价格",
"required": false,
"input_style": "normal"
},
{
"key": "output_price",
"label": "输出价格($/1K)",
"type": "text",
"description": "每1K输出token价格",
"required": false,
"input_style": "normal"
},
{
"key": "license",
"label": "许可证",
"type": "text",
"description": "使用许可证类型",
"required": false,
"input_style": "normal"
},
{
"key": "publish_date",
"label": "发布日期",
"type": "text",
"description": "模型发布日期",
"required": false,
"input_style": "normal"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点,简短描述",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "description",
"label": "描述",
"type": "text",
"description": "模型简介",
"required": false,
"input_style": "long"
},
{
"key": "views",
"label": "热度",
"type": "text",
"description": "浏览次数",
"required": false,
"input_style": "normal"
}
]
},
{
"id": "gpus",
"name": "GPU显卡",
"icon": "ri-cpu-line",
"color": "green",
"description": "NVIDIA、AMD等GPU显卡规格参数",
"order": 2,
"subcategories": [
{
"id": "gaming",
"name": "游戏显卡",
"icon": "ri-gamepad-line",
"key_features": [
"memory_gb",
"cuda_cores",
"price_usd",
"fp16_tflops"
],
"feature_labels": {
"memory_gb": "显存",
"cuda_cores": "CUDA核心",
"price_usd": "价格",
"fp16_tflops": "FP16性能"
},
"extra_fields": []
},
{
"id": "professional",
"name": "专业显卡",
"icon": "ri-building-line",
"key_features": [
"memory_gb",
"tensor_cores",
"memory_bandwidth_gbs",
"price_usd"
],
"feature_labels": {
"memory_gb": "显存",
"tensor_cores": "Tensor核心",
"memory_bandwidth_gbs": "带宽",
"price_usd": "价格"
},
"extra_fields": []
},
{
"id": "datacenter",
"name": "数据中心",
"icon": "ri-server-line",
"key_features": [
"memory_gb",
"tensor_cores",
"memory_bandwidth_gbs",
"fp16_tflops"
],
"feature_labels": {
"memory_gb": "显存",
"tensor_cores": "Tensor核心",
"memory_bandwidth_gbs": "带宽",
"fp16_tflops": "FP16性能"
},
"extra_fields": [
{
"key": "nvlink",
"label": "NVLink",
"type": "text",
"description": "是否支持NVLink互联",
"required": false,
"input_style": "normal"
},
{
"key": "multi_instance",
"label": "MIG",
"type": "text",
"description": "是否支持多实例GPU",
"required": false,
"input_style": "normal"
}
]
}
],
"fields": [
{
"key": "name",
"label": "名称",
"type": "text",
"description": "GPU名称",
"required": true,
"input_style": "normal"
},
{
"key": "manufacturer",
"label": "厂商",
"type": "text",
"description": "制造商",
"required": true,
"input_style": "normal"
},
{
"key": "architecture",
"label": "架构",
"type": "text",
"description": "GPU架构如Ampere、Hopper",
"required": false,
"input_style": "normal"
},
{
"key": "memory_gb",
"label": "显存(GB)",
"type": "text",
"description": "显存容量",
"required": true,
"input_style": "normal"
},
{
"key": "cuda_cores",
"label": "CUDA核心",
"type": "text",
"description": "CUDA核心数量",
"required": false,
"input_style": "normal"
},
{
"key": "tensor_cores",
"label": "Tensor核心",
"type": "text",
"description": "Tensor核心数量",
"required": false,
"input_style": "normal"
},
{
"key": "memory_bandwidth_gbs",
"label": "显存带宽(GB/s)",
"type": "text",
"description": "显存带宽",
"required": false,
"input_style": "normal"
},
{
"key": "fp32_tflops",
"label": "FP32性能(TF)",
"type": "text",
"description": "FP32浮点性能",
"required": false,
"input_style": "normal"
},
{
"key": "fp16_tflops",
"label": "FP16性能(TF)",
"type": "text",
"description": "FP16半精度性能",
"required": false,
"input_style": "normal"
},
{
"key": "int8_perf_tops",
"label": "INT8性能(TOPS)",
"type": "text",
"description": "INT8整数性能",
"required": false,
"input_style": "normal"
},
{
"key": "price_usd",
"label": "价格($)",
"type": "text",
"description": "参考价格(美元)",
"required": false,
"input_style": "normal"
},
{
"key": "currency",
"label": "币种",
"type": "text",
"description": "价格币种",
"required": false,
"input_style": "normal"
},
{
"key": "min_price",
"label": "最低价",
"type": "text",
"description": "最低价格",
"required": false,
"input_style": "normal"
},
{
"key": "max_price",
"label": "最高价",
"type": "text",
"description": "最高价格",
"required": false,
"input_style": "normal"
},
{
"key": "price_unit",
"label": "价格单位",
"type": "text",
"description": "价格单位,如万",
"required": false,
"input_style": "normal"
},
{
"key": "release_year",
"label": "发布年份",
"type": "text",
"description": "发布年份",
"required": false,
"input_style": "normal"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点,简短描述",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "description",
"label": "描述",
"type": "text",
"description": "GPU简介",
"required": false,
"input_style": "long"
},
{
"key": "publish_date",
"label": "发布日期",
"type": "text",
"description": "产品发布日期,格式 YYYY-MM-DD",
"required": false,
"input_style": "normal"
}
]
},
{
"id": "cpus",
"name": "CPU处理器",
"icon": "ri-cpu-line",
"color": "purple",
"description": "Intel、AMD等CPU处理器参数",
"order": 3,
"subcategories": [
{
"id": "desktop",
"name": "桌面CPU",
"icon": "ri-computer-line",
"key_features": [
"cores",
"threads",
"boost_clock_ghz",
"price_usd"
],
"feature_labels": {
"cores": "核心",
"threads": "线程",
"boost_clock_ghz": "加速频率",
"price_usd": "价格"
},
"extra_fields": []
},
{
"id": "server",
"name": "服务器CPU",
"icon": "ri-server-line",
"key_features": [
"cores",
"threads",
"l3_cache_mb",
"tdp_watts"
],
"feature_labels": {
"cores": "核心",
"threads": "线程",
"l3_cache_mb": "L3缓存",
"tdp_watts": "功耗"
},
"extra_fields": [
{
"key": "pcie_gen",
"label": "PCIe版本",
"type": "text",
"description": "PCIe代数",
"required": false,
"input_style": "normal"
},
{
"key": "max_memory",
"label": "最大内存(GB)",
"type": "text",
"description": "支持最大内存容量",
"required": false,
"input_style": "normal"
}
]
},
{
"id": "mobile",
"name": "移动CPU",
"icon": "ri-smartphone-line",
"key_features": [
"cores",
"threads",
"base_clock_ghz",
"tdp_watts"
],
"feature_labels": {
"cores": "核心",
"threads": "线程",
"base_clock_ghz": "基础频率",
"tdp_watts": "功耗"
},
"extra_fields": [
{
"key": "integrated_gpu",
"label": "集成显卡",
"type": "text",
"description": "集成GPU型号",
"required": false,
"input_style": "normal"
},
{
"key": "tdp_range",
"label": "功耗范围(W)",
"type": "text",
"description": "功耗范围",
"required": false,
"input_style": "normal"
}
]
}
],
"fields": [
{
"key": "name",
"label": "名称",
"type": "text",
"description": "CPU名称",
"required": true,
"input_style": "normal"
},
{
"key": "manufacturer",
"label": "厂商",
"type": "text",
"description": "制造商",
"required": true,
"input_style": "normal"
},
{
"key": "architecture",
"label": "架构",
"type": "text",
"description": "CPU架构如Zen 4",
"required": false,
"input_style": "normal"
},
{
"key": "cores",
"label": "核心数",
"type": "text",
"description": "物理核心数",
"required": true,
"input_style": "normal"
},
{
"key": "threads",
"label": "线程数",
"type": "text",
"description": "逻辑线程数",
"required": true,
"input_style": "normal"
},
{
"key": "base_clock_ghz",
"label": "基础频率(GHz)",
"type": "text",
"description": "基础频率",
"required": false,
"input_style": "normal"
},
{
"key": "boost_clock_ghz",
"label": "加速频率(GHz)",
"type": "text",
"description": "加速频率",
"required": false,
"input_style": "normal"
},
{
"key": "l3_cache_mb",
"label": "L3缓存(MB)",
"type": "text",
"description": "三级缓存大小",
"required": false,
"input_style": "normal"
},
{
"key": "tdp_watts",
"label": "TDP功耗(W)",
"type": "text",
"description": "热设计功耗",
"required": false,
"input_style": "normal"
},
{
"key": "price_usd",
"label": "价格($)",
"type": "text",
"description": "参考价格(美元)",
"required": false,
"input_style": "normal"
},
{
"key": "currency",
"label": "币种",
"type": "text",
"description": "价格币种",
"required": false,
"input_style": "normal"
},
{
"key": "release_year",
"label": "发布年份",
"type": "text",
"description": "发布年份",
"required": false,
"input_style": "normal"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点,简短描述",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "description",
"label": "描述",
"type": "text",
"description": "CPU简介",
"required": false,
"input_style": "long"
},
{
"key": "publish_date",
"label": "发布日期",
"type": "text",
"description": "产品发布日期,格式 YYYY-MM-DD",
"required": false,
"input_style": "normal"
}
]
},
{
"id": "phones",
"name": "手机",
"icon": "ri-smartphone-line",
"color": "orange",
"description": "各品牌手机参数规格",
"order": 4,
"visible": true,
"subcategories": [
{
"feature_labels": {
"soc": "处理器",
"ram": "内存",
"rom": "存储",
"screen_size": "屏幕",
"battery": "电池",
"fast_charge": "快充",
"rear_main_cam": "主摄",
"price": "价格"
},
"icon": "ri-star-line",
"id": "flagship",
"key_features": [
"soc",
"ram",
"rom",
"screen_size",
"battery",
"fast_charge",
"rear_main_cam",
"price"
],
"name": "旗舰手机"
},
{
"feature_labels": {
"soc": "处理器",
"ram": "内存",
"rom": "存储",
"battery": "电池",
"rear_main_cam": "主摄",
"price": "价格"
},
"icon": "ri-price-tag-3-line",
"id": "midrange",
"key_features": [
"soc",
"ram",
"rom",
"battery",
"rear_main_cam",
"price"
],
"name": "中端手机"
}
],
"fields": [
{
"key": "name",
"label": "型号",
"type": "text",
"description": "手机型号名称",
"required": true,
"input_style": "normal"
},
{
"key": "brand",
"label": "品牌",
"type": "text",
"description": "小米/华为/Apple/荣耀等",
"required": true,
"input_style": "normal"
},
{
"key": "release_date",
"label": "发布日期",
"type": "text",
"description": "产品发布日期格式YYYY年MM月DD日",
"required": false,
"input_style": "normal"
},
{
"key": "market_date",
"label": "上市时间",
"type": "text",
"description": "产品上市日期格式YYYY年MM月DD日",
"required": false,
"input_style": "normal"
},
{
"key": "product_level",
"label": "产品级别",
"type": "text",
"description": "入门/中端/旗舰等",
"required": false,
"input_style": "normal"
},
{
"key": "price",
"label": "价格",
"type": "text",
"description": "参考价格",
"required": false,
"input_style": "normal"
},
{
"key": "os",
"label": "操作系统",
"type": "text",
"description": "Android/iOS/HarmonyOS等",
"required": false,
"input_style": "normal"
},
{
"key": "soc",
"label": "处理器",
"type": "text",
"description": "SoC/CPU型号如骁龙8至尊版、天玑9400、A18 Pro",
"required": false,
"input_style": "normal"
},
{
"key": "gpu",
"label": "GPU",
"type": "text",
"description": "图形处理芯片",
"required": false,
"input_style": "normal"
},
{
"key": "ram",
"label": "运行内存",
"type": "text",
"description": "如8GB/12GB/16GB",
"required": false,
"input_style": "normal"
},
{
"key": "rom",
"label": "存储空间",
"type": "text",
"description": "如128GB/256GB/512GB/1TB",
"required": false,
"input_style": "normal"
},
{
"key": "storage_expand",
"label": "存储扩展",
"type": "text",
"description": "TF卡等扩展方式",
"required": false,
"input_style": "normal"
},
{
"key": "screen_size",
"label": "屏幕尺寸",
"type": "text",
"description": "如6.3英寸",
"required": false,
"input_style": "normal"
},
{
"key": "screen_type",
"label": "屏幕类型",
"type": "text",
"description": "OLED/LCD/AMOLED",
"required": false,
"input_style": "normal"
},
{
"key": "resolution",
"label": "分辨率",
"type": "text",
"description": "1080P/1.5K/2K",
"required": false,
"input_style": "normal"
},
{
"key": "refresh_rate",
"label": "刷新率",
"type": "text",
"description": "60Hz/90Hz/120Hz/144Hz",
"required": false,
"input_style": "normal"
},
{
"key": "ltpo",
"label": "LTPO",
"type": "text",
"description": "自适应刷新率,省电",
"required": false,
"input_style": "normal"
},
{
"key": "brightness",
"label": "亮度",
"type": "text",
"description": "峰值亮度nit",
"required": false,
"input_style": "normal"
},
{
"key": "screen_feature",
"label": "屏幕特色",
"type": "text",
"description": "直屏/曲面屏、护眼调光等",
"required": false,
"input_style": "normal"
},
{
"key": "rear_main_cam",
"label": "后置主摄",
"type": "text",
"description": "像素、传感器型号、光圈",
"required": false,
"input_style": "normal"
},
{
"key": "rear_ultra_wide",
"label": "超广角",
"type": "text",
"description": "像素、视角",
"required": false,
"input_style": "normal"
},
{
"key": "rear_telephoto",
"label": "长焦",
"type": "text",
"description": "倍率3x/5x/10x",
"required": false,
"input_style": "normal"
},
{
"key": "front_cam",
"label": "前置摄像头",
"type": "text",
"description": "像素",
"required": false,
"input_style": "normal"
},
{
"key": "video_record",
"label": "视频录制",
"type": "text",
"description": "4K/8K、帧率",
"required": false,
"input_style": "normal"
},
{
"key": "cam_feature",
"label": "摄像头特色",
"type": "text",
"description": "徕卡/蔡司/哈苏、OIS光学防抖等",
"required": false,
"input_style": "normal"
},
{
"key": "battery",
"label": "电池容量",
"type": "text",
"description": "mAh4000-7000+",
"required": false,
"input_style": "normal"
},
{
"key": "fast_charge",
"label": "有线快充",
"type": "text",
"description": "功率33W/67W/100W/120W+",
"required": false,
"input_style": "normal"
},
{
"key": "wireless_charge",
"label": "无线充电",
"type": "text",
"description": "功率15W/50W等",
"required": false,
"input_style": "normal"
},
{
"key": "battery_feature",
"label": "电池特色",
"type": "text",
"description": "反向充电等",
"required": false,
"input_style": "normal"
},
{
"key": "network",
"label": "运营商网络",
"type": "text",
"description": "5G/4G支持",
"required": false,
"input_style": "normal"
},
{
"key": "wifi",
"label": "Wi-Fi",
"type": "text",
"description": "Wi-Fi 6/6E/7",
"required": false,
"input_style": "normal"
},
{
"key": "bluetooth",
"label": "蓝牙",
"type": "text",
"description": "5.3/5.4",
"required": false,
"input_style": "normal"
},
{
"key": "nfc",
"label": "NFC",
"type": "text",
"description": "刷公交、门禁、支付",
"required": false,
"input_style": "normal"
},
{
"key": "ir_remote",
"label": "红外遥控",
"type": "text",
"description": "是/否",
"required": false,
"input_style": "normal"
},
{
"key": "gps",
"label": "定位系统",
"type": "text",
"description": "GPS等",
"required": false,
"input_style": "normal"
},
{
"key": "usb_interface",
"label": "USB接口",
"type": "text",
"description": "Type-C/USB 3.0/2.0",
"required": false,
"input_style": "normal"
},
{
"key": "sim_card",
"label": "SIM卡",
"type": "text",
"description": "单卡/双卡",
"required": false,
"input_style": "normal"
},
{
"key": "fingerprint",
"label": "指纹识别",
"type": "text",
"description": "侧边/屏下超声波/屏下光学",
"required": false,
"input_style": "normal"
},
{
"key": "waterproof",
"label": "防水防尘等级",
"type": "text",
"description": "IP68/IP69/IP54等",
"required": false,
"input_style": "normal"
},
{
"key": "face_id",
"label": "面部识别",
"type": "text",
"description": "Face ID/3D结构光",
"required": false,
"input_style": "normal"
},
{
"key": "weight",
"label": "重量",
"type": "text",
"description": "克g",
"required": false,
"input_style": "normal"
},
{
"key": "thickness",
"label": "厚度",
"type": "text",
"description": "毫米mm",
"required": false,
"input_style": "normal"
},
{
"key": "body_material",
"label": "机身材质",
"type": "text",
"description": "玻璃/陶瓷/金属/素皮",
"required": false,
"input_style": "normal"
},
{
"key": "colors",
"label": "颜色",
"type": "text",
"description": "可选颜色",
"required": false,
"input_style": "normal"
},
{
"key": "frame_material",
"label": "中框材质",
"type": "text",
"description": "铝合金/钛合金",
"required": false,
"input_style": "normal"
},
{
"key": "speaker",
"label": "扬声器",
"type": "text",
"description": "单扬声器/立体声双扬声器",
"required": false,
"input_style": "normal"
},
{
"key": "headphone_jack",
"label": "耳机接口",
"type": "text",
"description": "3.5mm耳机孔",
"required": false,
"input_style": "normal"
},
{
"key": "vibration",
"label": "震动反馈",
"type": "text",
"description": "X轴线性马达",
"required": false,
"input_style": "normal"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接",
"required": false,
"input_style": "long"
},
{
"key": "description",
"label": "描述",
"type": "text",
"description": "产品简介",
"required": false,
"input_style": "long"
}
],
"updated_at": "2026-04-28 18:28:01"
},
{
"id": "laptops",
"name": "电脑",
"icon": "ri-macbook-line",
"color": "teal",
"description": "笔记本电脑、台式机参数",
"order": 5,
"subcategories": [
{
"feature_labels": {
"gpu": "显卡",
"price": "价格",
"processor": "处理器",
"ram_gb": "内存"
},
"icon": "ri-gamepad-line",
"id": "gaming-laptop",
"key_features": [
"processor",
"gpu",
"ram_gb",
"price"
],
"name": "游戏笔记本"
},
{
"feature_labels": {
"price": "价格",
"processor": "处理器",
"ram_gb": "内存",
"weight_kg": "重量"
},
"icon": "ri-briefcase-line",
"id": "business-laptop",
"key_features": [
"processor",
"ram_gb",
"weight_kg",
"price"
],
"name": "商务笔记本"
},
{
"id": "5d6fe10bbada",
"name": "台式主机",
"icon": "ri-folder-line",
"key_features": [],
"feature_labels": {},
"extra_fields": [
{
"key": "power",
"label": "电源",
"type": "text",
"description": "",
"required": false
}
]
}
],
"fields": [
{
"description": "电脑型号",
"input_style": "normal",
"key": "name",
"label": "名称",
"required": true,
"type": "text"
},
{
"description": "品牌",
"input_style": "normal",
"key": "brand",
"label": "品牌",
"required": true,
"type": "text"
},
{
"description": "CPU型号",
"input_style": "normal",
"key": "processor",
"label": "处理器",
"required": false,
"type": "text"
},
{
"description": "GPU型号",
"input_style": "normal",
"key": "gpu",
"label": "显卡",
"required": false,
"type": "text"
},
{
"description": "RAM容量",
"input_style": "normal",
"key": "ram_gb",
"label": "内存(GB)",
"required": false,
"type": "text"
},
{
"description": "存储容量",
"input_style": "normal",
"key": "storage_gb",
"label": "存储(GB)",
"required": false,
"type": "text"
},
{
"description": "屏幕尺寸",
"input_style": "normal",
"key": "screen_size",
"label": "屏幕尺寸",
"required": false,
"type": "text"
},
{
"description": "重量",
"input_style": "normal",
"key": "weight_kg",
"label": "重量(kg)",
"required": false,
"type": "text"
},
{
"description": "参考价格",
"input_style": "normal",
"key": "price",
"label": "价格",
"required": false,
"type": "text"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点,简短描述",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"description": "产品简介",
"input_style": "long",
"key": "description",
"label": "描述",
"required": false,
"type": "text"
},
{
"description": "产品发布日期,格式 YYYY-MM-DD",
"input_style": "normal",
"key": "publish_date",
"label": "发布日期",
"required": false,
"type": "text"
}
],
"visible": true,
"updated_at": "2026-04-29 12:21:23"
},
{
"id": "021dc76d36be",
"name": "汽车",
"icon": "ri-car-line",
"color": "red",
"order": 6,
"description": "汽车方面",
"created_at": "2026-04-09 10:09:01",
"subcategories": [
{
"feature_labels": {
"engine": "发动机",
"power_kw": "功率",
"price": "价格"
},
"icon": "ri-car-line",
"id": "sedan",
"key_features": [
"engine",
"power_kw",
"price"
],
"name": "轿车"
},
{
"feature_labels": {
"engine": "发动机",
"price": "价格",
"seats": "座位数"
},
"icon": "ri-truck-line",
"id": "suv",
"key_features": [
"engine",
"seats",
"price"
],
"name": "SUV"
},
{
"id": "df938b1c0d81",
"name": "房车",
"icon": "ri-folder-line",
"key_features": [],
"feature_labels": {},
"extra_fields": []
}
],
"fields": [
{
"description": "车型名称",
"input_style": "normal",
"key": "name",
"label": "名称",
"required": true,
"type": "text"
},
{
"description": "汽车品牌",
"input_style": "normal",
"key": "brand",
"label": "品牌",
"required": true,
"type": "text"
},
{
"description": "参考价格(万元)",
"input_style": "normal",
"key": "price",
"label": "价格(万)",
"required": false,
"type": "text"
},
{
"description": "生产年份",
"input_style": "normal",
"key": "year",
"label": "年份",
"required": false,
"type": "text"
},
{
"description": "详细规格参数",
"input_style": "long",
"key": "specs",
"label": "参数",
"required": false,
"type": "text"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点,简短描述",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"description": "车型简介",
"input_style": "long",
"key": "description",
"label": "描述",
"required": false,
"type": "text"
},
{
"description": "产品发布日期,格式 YYYY-MM-DD",
"input_style": "normal",
"key": "publish_date",
"label": "发布日期",
"required": false,
"type": "text"
}
],
"visible": true,
"updated_at": "2026-04-29 13:09:39"
},
{
"id": "71fa2b4d818f",
"name": "摄像",
"icon": "ri-camera-line",
"color": "blue",
"order": 9,
"visible": true,
"description": "相机、摄像机等",
"created_at": "2026-04-25 16:38:47",
"subcategories": [
{
"feature_labels": {
"megapixels": "像素",
"price": "价格",
"sensor": "传感器",
"video_resolution": "视频"
},
"icon": "ri-camera-line",
"id": "mirrorless",
"key_features": [
"sensor",
"megapixels",
"video_resolution",
"price"
],
"name": "无反相机"
},
{
"feature_labels": {
"lens_mount": "卡口",
"megapixels": "像素",
"price": "价格",
"sensor": "传感器"
},
"icon": "ri-camera-2-line",
"id": "dslr",
"key_features": [
"sensor",
"megapixels",
"lens_mount",
"price"
],
"name": "单反相机"
},
{
"id": "90ce312b560d",
"name": "口袋云台相机",
"icon": "ri-folder-line",
"key_features": [],
"feature_labels": {}
}
],
"updated_at": "2026-04-28 10:55:02",
"fields": [
{
"key": "name",
"label": "名称",
"type": "text",
"description": "产品名称",
"required": true,
"input_style": "normal"
},
{
"key": "brand",
"label": "品牌",
"type": "text",
"description": "品牌",
"required": true,
"input_style": "normal"
},
{
"key": "sensor",
"label": "传感器",
"type": "text",
"description": "传感器类型/尺寸",
"required": false,
"input_style": "normal"
},
{
"key": "megapixels",
"label": "像素",
"type": "text",
"description": "有效像素MP",
"required": false,
"input_style": "normal"
},
{
"key": "video_resolution",
"label": "视频分辨率",
"type": "text",
"description": "最高视频分辨率",
"required": false,
"input_style": "normal"
},
{
"key": "lens_mount",
"label": "镜头卡口",
"type": "text",
"description": "镜头卡口类型",
"required": false,
"input_style": "normal"
},
{
"key": "price",
"label": "价格",
"type": "text",
"description": "参考价格",
"required": false,
"input_style": "normal"
},
{
"key": "specs",
"label": "参数",
"type": "text",
"description": "详细规格参数",
"required": false,
"input_style": "long"
},
{
"key": "features",
"label": "特色",
"type": "text",
"description": "产品特色/亮点,简短描述",
"required": false,
"input_style": "normal"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接JSON数组格式[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long"
},
{
"key": "description",
"label": "描述",
"type": "text",
"description": "产品简介",
"required": false,
"input_style": "long"
},
{
"key": "publish_date",
"label": "发布日期",
"type": "text",
"description": "产品发布日期,格式 YYYY-MM-DD",
"required": false,
"input_style": "normal"
}
]
}
]