Files
param-hub-python/data/categories.json
T
hz4th_coder 9005a48bf3 GPU显卡公共参数字段全面升级为66字段+字段类别支持
- 按显卡规格9大类别整理66个公共参数字段(全部文本类型):
  图形处理器芯片基础信息(14)/显卡产品信息(12)/渲染硬件配置(8)/理论算力(5)/显存规格(5)/矩阵算力(8)/数值格式支持(2)/图形API与特性(6)/板卡设计(6)
- 每个字段新增 category 字段类别属性(对应#开头的参数类别中文名)
- 保留平台必备结构字段: name/manufacturer/official_urls/reference_urls/description
- 后台字段编辑弹框新增「字段类别」输入,字段列表显示📁类别徽标
- 子类别关键特性映射到新字段(显存容量/着色单元/首发价/FP32等)
- 修复重复FP16: 理论算力=fp16, 矩阵算力=fp16_matrix
2026-09-10 01:32:21 +08:00

2108 lines
55 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_size",
"shading_units",
"launch_price",
"fp32"
],
"feature_labels": {
"memory_size": "显存容量",
"shading_units": "着色单元",
"launch_price": "首发价格",
"fp32": "FP32算力"
},
"extra_fields": []
},
{
"id": "professional",
"name": "专业显卡",
"icon": "ri-building-line",
"key_features": [
"memory_size",
"tensor_cores",
"bandwidth",
"launch_price"
],
"feature_labels": {
"memory_size": "显存容量",
"tensor_cores": "Tensor核心",
"bandwidth": "带宽",
"launch_price": "首发价格"
},
"extra_fields": []
},
{
"id": "datacenter",
"name": "数据中心",
"icon": "ri-server-line",
"key_features": [
"memory_size",
"tensor_cores",
"bandwidth",
"fp16_matrix"
],
"feature_labels": {
"memory_size": "显存容量",
"tensor_cores": "Tensor核心",
"bandwidth": "带宽",
"fp16_matrix": "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",
"category": "图形处理器芯片基础信息"
},
{
"key": "gpu_name",
"label": "GPU名称",
"type": "text",
"description": "GPU芯片代号,核心芯片型号",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "gpu_variant",
"label": "GPU变体型号",
"type": "text",
"description": "芯片具体版本编号",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "architecture",
"label": "架构",
"type": "text",
"description": "GPU微架构",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "foundry",
"label": "晶圆厂",
"type": "text",
"description": "芯片制造工厂",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "process_type",
"label": "工艺类型",
"type": "text",
"description": "晶体管工艺类型",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "process_size",
"label": "工艺节点",
"type": "text",
"description": "芯片制造制程,x纳米工艺",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "transistors",
"label": "晶体管数量",
"type": "text",
"description": "芯片内晶体管总数",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "density",
"label": "晶体管密度",
"type": "text",
"description": "每平方毫米裸片上晶体管数量",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "die_size",
"label": "裸片面积",
"type": "text",
"description": "GPU核心硅片面积",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "chip_package",
"label": "芯片封装",
"type": "text",
"description": "芯片封装形式",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "package_size",
"label": "封装尺寸",
"type": "text",
"description": "芯片封装外壳长宽尺寸",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "base_clock",
"label": "基础频率",
"type": "text",
"description": "GPU核心默认基础工作频率",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "boost_clock",
"label": "加速频率",
"type": "text",
"description": "GPU核心可达到的最高睿频",
"required": false,
"input_style": "normal",
"category": "图形处理器芯片基础信息"
},
{
"key": "manufacturer",
"label": "厂商",
"type": "text",
"description": "显卡制造商(NVIDIA/AMD等)",
"required": true,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "release_date",
"label": "发布日期",
"type": "text",
"description": "产品正式上市发布时间",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "announced",
"label": "官宣日期",
"type": "text",
"description": "产品对外公布的时间",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "generation",
"label": "产品世代",
"type": "text",
"description": "产品系列",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "production",
"label": "生产状态",
"type": "text",
"description": "当前生产状态",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "driver_support",
"label": "驱动支持状态",
"type": "text",
"description": "厂商仍持续维护更新驱动程序",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "launch_price",
"label": "首发价格",
"type": "text",
"description": "产品上市首发售价",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "current_price",
"label": "当前售价",
"type": "text",
"description": "可购买渠道",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "bus_interface",
"label": "总线接口",
"type": "text",
"description": "主机与显卡通信总线",
"required": false,
"input_style": "normal",
"category": "显卡产品信息"
},
{
"key": "official_urls",
"label": "官网地址",
"type": "json",
"description": "产品官网链接,JSON数组格式:[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long",
"category": "显卡产品信息"
},
{
"key": "reference_urls",
"label": "数据参考",
"type": "json",
"description": "参数来源链接,JSON数组格式:[{\"url\":\"https://...\",\"title\":\"...\"}]",
"required": false,
"input_style": "long",
"category": "显卡产品信息"
},
{
"key": "description",
"label": "描述",
"type": "text",
"description": "GPU简介",
"required": false,
"input_style": "long",
"category": "显卡产品信息"
},
{
"key": "shading_units",
"label": "着色单元",
"type": "text",
"description": "GPU着色运算单元总数",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "tmus",
"label": "纹理映射单元",
"type": "text",
"description": "纹理贴图采样单元数量",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "rops",
"label": "光栅输出单元",
"type": "text",
"description": "光栅化像素输出单元数量",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "sm_count",
"label": "流式多处理器数量",
"type": "text",
"description": "CUDA流式多处理器SM总数",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "tensor_cores",
"label": "张量核心数量",
"type": "text",
"description": "AI张量运算专用核心数量",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "rt_cores",
"label": "光线追踪核心数量",
"type": "text",
"description": "实时光线追踪专用核心数量",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "l1_cache",
"label": "一级缓存",
"type": "text",
"description": "每个SM独立配备",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "l2_cache",
"label": "二级缓存",
"type": "text",
"description": "GPU全局二级缓存总容量",
"required": false,
"input_style": "normal",
"category": "渲染硬件配置"
},
{
"key": "pixel_rate",
"label": "像素填充率",
"type": "text",
"description": "图形渲染时每秒可输出像素数量",
"required": false,
"input_style": "normal",
"category": "理论算力"
},
{
"key": "texture_rate",
"label": "纹理填充率",
"type": "text",
"description": "图形渲染时每秒可采样纹理单元数量",
"required": false,
"input_style": "normal",
"category": "理论算力"
},
{
"key": "fp16",
"label": "FP16理论算力",
"type": "text",
"description": "FP16浮点通用理论算力,1:1为完整精度",
"required": false,
"input_style": "normal",
"category": "理论算力"
},
{
"key": "fp32",
"label": "FP32理论算力",
"type": "text",
"description": "FP32单精度浮点通用理论算力",
"required": false,
"input_style": "normal",
"category": "理论算力"
},
{
"key": "fp64",
"label": "FP64理论算力",
"type": "text",
"description": "FP64双精度浮点通用理论算力,1:64为性能比例",
"required": false,
"input_style": "normal",
"category": "理论算力"
},
{
"key": "memory_size",
"label": "显存容量",
"type": "text",
"description": "板载显存总容量",
"required": false,
"input_style": "normal",
"category": "显存规格"
},
{
"key": "memory_type",
"label": "显存类型",
"type": "text",
"description": "显存型号,第7代图形显存",
"required": false,
"input_style": "normal",
"category": "显存规格"
},
{
"key": "memory_bus",
"label": "显存位宽",
"type": "text",
"description": "显存与GPU之间的数据总线位宽",
"required": false,
"input_style": "normal",
"category": "显存规格"
},
{
"key": "bandwidth",
"label": "显存带宽",
"type": "text",
"description": "显存理论最大数据吞吐带宽",
"required": false,
"input_style": "normal",
"category": "显存规格"
},
{
"key": "memory_clock",
"label": "显存频率",
"type": "text",
"description": "显存物理时钟,等效数据速率",
"required": false,
"input_style": "normal",
"category": "显存规格"
},
{
"key": "fp4",
"label": "FP4矩阵算力",
"type": "text",
"description": "FP4精度下张量矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "fp6",
"label": "FP6矩阵算力",
"type": "text",
"description": "FP6精度下张量矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "int8",
"label": "INT8矩阵算力",
"type": "text",
"description": "INT8整数精度张量矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "fp8",
"label": "FP8矩阵算力",
"type": "text",
"description": "FP8精度下张量矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "fp16_matrix",
"label": "FP16矩阵算力",
"type": "text",
"description": "FP16精度下张量矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "bf16",
"label": "BF16矩阵算力",
"type": "text",
"description": "BF16浮点数精度张量矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "tf32",
"label": "TF32矩阵算力",
"type": "text",
"description": "TF32张量浮点精度矩阵理论运算性能",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "sparse_matrix",
"label": "稀疏矩阵算力",
"type": "text",
"description": "稀疏权重时算力可翻倍",
"required": false,
"input_style": "normal",
"category": "矩阵算力"
},
{
"key": "vector",
"label": "向量计算支持格式",
"type": "text",
"description": "向量运算支持的数据精度类型",
"required": false,
"input_style": "normal",
"category": "数值格式支持"
},
{
"key": "matrix",
"label": "矩阵计算支持格式",
"type": "text",
"description": "矩阵/张量运算支持的数据精度类型",
"required": false,
"input_style": "normal",
"category": "数值格式支持"
},
{
"key": "directx",
"label": "DirectX支持版本",
"type": "text",
"description": "支持的DirectX版本",
"required": false,
"input_style": "normal",
"category": "图形API与特性"
},
{
"key": "opengl",
"label": "OpenGL版本",
"type": "text",
"description": "支持OpenGL图形接口版本",
"required": false,
"input_style": "normal",
"category": "图形API与特性"
},
{
"key": "opencl",
"label": "OpenCL版本",
"type": "text",
"description": "支持OpenCL通用计算接口版本",
"required": false,
"input_style": "normal",
"category": "图形API与特性"
},
{
"key": "vulkan",
"label": "Vulkan版本",
"type": "text",
"description": "支持Vulkan跨平台图形API版本",
"required": false,
"input_style": "normal",
"category": "图形API与特性"
},
{
"key": "cuda",
"label": "CUDA版本",
"type": "text",
"description": "支持CUDA计算平台版本",
"required": false,
"input_style": "normal",
"category": "图形API与特性"
},
{
"key": "shader_model",
"label": "着色器模型",
"type": "text",
"description": "支持Shader Model着色器规范版本",
"required": false,
"input_style": "normal",
"category": "图形API与特性"
},
{
"key": "slot_width",
"label": "插槽占用宽度",
"type": "text",
"description": "显卡槽位,占用主板PCIe挡板位个数",
"required": false,
"input_style": "normal",
"category": "板卡设计"
},
{
"key": "tdp",
"label": "功耗上限",
"type": "text",
"description": "板卡设计热功耗",
"required": false,
"input_style": "normal",
"category": "板卡设计"
},
{
"key": "suggested_psu",
"label": "推荐电源",
"type": "text",
"description": "整机配套推荐电源功率",
"required": false,
"input_style": "normal",
"category": "板卡设计"
},
{
"key": "outputs",
"label": "视频输出接口",
"type": "text",
"description": "视频输出接口",
"required": false,
"input_style": "normal",
"category": "板卡设计"
},
{
"key": "power_connectors",
"label": "供电接口",
"type": "text",
"description": "供电接口",
"required": false,
"input_style": "normal",
"category": "板卡设计"
},
{
"key": "board_number",
"label": "板卡型号编号",
"type": "text",
"description": "PCB板卡内部编号",
"required": false,
"input_style": "normal",
"category": "板卡设计"
}
]
},
{
"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"
}
]
}
]