From a4ef246564c23e0e99fbea574cd2c4ff12944dea Mon Sep 17 00:00:00 2001 From: -LAN- Date: Wed, 22 Apr 2026 00:22:38 +0800 Subject: [PATCH] fix(api): resolve graphon upgrade CI failures Repair the plugin model runtime for Graphon 0.3.0 by implementing structured-output support, normalizing non-stream LLM calls, and tightening workflow-layer type safety. Update the remaining workflow tests to use VariablePool.from_bootstrap(...) and the new node data constructor API so the CI unit and integration suites match the upgraded runtime behavior. --- api/core/app/workflow/layers/llm_quota.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/core/app/workflow/layers/llm_quota.py b/api/core/app/workflow/layers/llm_quota.py index 2422eed5a7..dd7c4745db 100644 --- a/api/core/app/workflow/layers/llm_quota.py +++ b/api/core/app/workflow/layers/llm_quota.py @@ -156,7 +156,6 @@ class LLMQuotaLayer(GraphEngineLayer): except Exception: logger.exception("Failed to send quota abort command") - @staticmethod def _supports_quota(node: Node) -> bool: return node.node_type in _QUOTA_NODE_TYPES