fix: template transform node output length

This commit is contained in:
Yeuoly 2024-03-27 11:51:12 +08:00
parent 1c05d2ef7f
commit 17d1e2e5b7
No known key found for this signature in database
GPG Key ID: A66E7E320FB19F61
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from core.workflow.nodes.base_node import BaseNode
from core.workflow.nodes.template_transform.entities import TemplateTransformNodeData
from models.workflow import WorkflowNodeExecutionStatus
MAX_TEMPLATE_TRANSFORM_OUTPUT_LENGTH = 1000
MAX_TEMPLATE_TRANSFORM_OUTPUT_LENGTH = 50000
class TemplateTransformNode(BaseNode):
_node_data_cls = TemplateTransformNodeData