From 334dcc594798b80738242fcd873bfa38cb0fd49e Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 20 May 2026 16:41:28 +0800 Subject: [PATCH] fix: update llm_api_map field lengths to 32 (getID() standard) --- json/llm_api_map.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/json/llm_api_map.json b/json/llm_api_map.json index a608dba..12a24d9 100644 --- a/json/llm_api_map.json +++ b/json/llm_api_map.json @@ -1,13 +1,13 @@ { "summary": [{"name": "llm_api_map", "title": "模型能力映射表", "primary": ["id"], "catelog": "relation"}], "fields": [ - {"name": "id", "title": "主键", "type": "str", "length": 21, "nullable": "no"}, - {"name": "llmid", "title": "模型ID", "type": "str", "length": 21, "nullable": "no"}, + {"name": "id", "title": "主键", "type": "str", "length": 32, "nullable": "no"}, + {"name": "llmid", "title": "模型ID", "type": "str", "length": 32, "nullable": "no"}, {"name": "llmcatelogid", "title": "类目ID", "type": "str", "length": 32, "nullable": "no"}, {"name": "apiname", "title": "API接口名", "type": "str", "length": 100, "nullable": "no"}, {"name": "query_apiname", "title": "结果查询API名", "type": "str", "length": 100}, {"name": "query_period", "title": "查询间隔(秒)", "type": "int"}, - {"name": "ppid", "title": "定价项目ID", "type": "str", "length": 21} + {"name": "ppid", "title": "定价项目ID", "type": "str", "length": 32} ], "indexes": [ {"name": "idx_llm_api_llm", "idxtype": "index", "idxfields": ["llmid"]},