From 3791b6523674425eea4c99807e77ebd7ac0cc587 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 19 May 2026 16:07:33 +0800 Subject: [PATCH] bugfix --- wwwroot/API.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/wwwroot/API.md b/wwwroot/API.md index 8c9f171..110cf16 100644 --- a/wwwroot/API.md +++ b/wwwroot/API.md @@ -441,3 +441,32 @@ return } } ``` +## 获取模型类型列表 +* path /llmage/list_llmcatelogs +* method GET +* params 无 +* return +``` +{ + id + name +} +``` + +## 获得模型列表 +* path /llmage/list_llms +* method GET +* params +``` +{ + lctype # 模型类型, 缺省较为全部 + orderby # 排序列, 缺省为privoderid +} +``` +* return +``` +[ + { # 模型信息 + } +] +```