refactor(api): set default value for EasyUIBasedAppGenerateEntity.query (#27712)

This commit is contained in:
-LAN-
2025-11-04 10:22:43 +08:00
committed by GitHub
parent 471cd760d7
commit c8e9edc024
5 changed files with 7 additions and 7 deletions

View File

@@ -144,7 +144,7 @@ class AgentChatAppRunner(AppRunner):
prompt_template_entity=app_config.prompt_template,
inputs=dict(inputs),
files=list(files),
query=query or "",
query=query,
memory=memory,
)
@@ -172,7 +172,7 @@ class AgentChatAppRunner(AppRunner):
prompt_template_entity=app_config.prompt_template,
inputs=dict(inputs),
files=list(files),
query=query or "",
query=query,
memory=memory,
)