pipeline-llm/json/llm_call_trace_list.json

77 lines
1.7 KiB
JSON

{
"tblname": "llm_call_trace",
"title": "模型调用原文追踪",
"params": {
"sortby": "created_at desc",
"noedit": true,
"browserfields": {
"exclouded": [
"id",
"req_path",
"resp_path",
"org_id"
],
"alters": {
"url": {
"cwidth": 40
},
"note": {
"cwidth": 25
},
"kind": {
"uitype": "code",
"data": [
{"value": "chat", "text": "对话"},
{"value": "gen", "text": "同步生成"},
{"value": "submit", "text": "异步提交"},
{"value": "query", "text": "任务轮询"}
],
"valueField": "value",
"textField": "text"
},
"method": {
"uitype": "code",
"data": [
{"value": "POST", "text": "POST"},
{"value": "GET", "text": "GET"}
],
"valueField": "value",
"textField": "text"
}
}
},
"editexclouded": [
"id",
"org_id",
"created_at"
],
"toolbar": {
"tools": [
{
"name": "view_io",
"label": "查看IO",
"selected_row": true,
"icon": "{{entire_url('/bricks/imgs/chat-user.svg')}}"
}
]
},
"binds": [
{
"wid": "self",
"event": "view_io",
"actiontype": "urlwidget",
"target": "PopupWindow",
"popup_options": {
"title": "调用原文详情",
"width": "85%",
"height": "85%",
"resizable": true
},
"options": {
"url": "{{entire_url('../api/llm_call_trace_io.dspy')}}?id=${id}$"
}
}
]
}
}