From 00c64bab7b9c57a645504fde4f5b268e9aba6e88 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 26 Mar 2026 16:09:05 +0800 Subject: [PATCH] bugfix --- wwwroot/get_type_llms.dspy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wwwroot/get_type_llms.dspy b/wwwroot/get_type_llms.dspy index bb5a7f6..f729890 100644 --- a/wwwroot/get_type_llms.dspy +++ b/wwwroot/get_type_llms.dspy @@ -3,8 +3,11 @@ lt = '文生视频' if params_kw.type in ['文生视频', '参考生视频', '图生视频']: lt = params_kw.type async with get_sor_context(request._run_ns, 'llmage') as sor: - sql = '''select a.* from llm a, llmcatelog b + sql = '''select a.*, e.input_fields from llm a, llmcatelog b, upapp c, uapi d, uapiio e where a.llmcatelogid = b.id + and a.uappid = c.id + and c.apisetid = d.apisetid + and d.ioid = e.id and a.enabled_date <= ${biz_date}$ and ${biz_date}$ < a.expired_date and ppid is not NULL