fix: Allow advanced chat app to get workflow run detail (#18753) (#18758)

This commit is contained in:
1betatsu 2025-04-25 17:48:38 +09:00 committed by GitHub
parent ec82534a1e
commit 9a3ecc1ac8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,7 +59,7 @@ class WorkflowRunDetailApi(Resource):
Get a workflow task running detail
"""
app_mode = AppMode.value_of(app_model.mode)
if app_mode != AppMode.WORKFLOW:
if app_mode not in [AppMode.WORKFLOW, AppMode.ADVANCED_CHAT]:
raise NotWorkflowAppError()
workflow_run = db.session.query(WorkflowRun).filter(WorkflowRun.id == workflow_run_id).first()