mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 21:09:04 +08:00
fix: remove error message $ symbol (#19587)
Co-authored-by: 刘江波 <jiangbo721@163.com> Co-authored-by: crazywoola <427733928@qq.com>
This commit is contained in:
parent
10a724cc62
commit
fabfc7d4d8
@ -127,7 +127,7 @@ class CodeNode(BaseNode[CodeNodeData]):
|
||||
depth: int = 1,
|
||||
):
|
||||
if depth > dify_config.CODE_MAX_DEPTH:
|
||||
raise DepthLimitError(f"Depth limit ${dify_config.CODE_MAX_DEPTH} reached, object too deep.")
|
||||
raise DepthLimitError(f"Depth limit {dify_config.CODE_MAX_DEPTH} reached, object too deep.")
|
||||
|
||||
transformed_result: dict[str, Any] = {}
|
||||
if output_schema is None:
|
||||
|
Loading…
x
Reference in New Issue
Block a user