mirror of https://github.com/langgenius/dify.git
fix: handle list content type in Parameter Extraction node (#30070)
This commit is contained in:
parent
3cbbb06dc4
commit
9000fa1a88
|
|
@ -281,7 +281,7 @@ class ParameterExtractorNode(Node[ParameterExtractorNodeData]):
|
|||
|
||||
# handle invoke result
|
||||
|
||||
text = invoke_result.message.content or ""
|
||||
text = invoke_result.message.get_text_content()
|
||||
if not isinstance(text, str):
|
||||
raise InvalidTextContentTypeError(f"Invalid text content type: {type(text)}. Expected str.")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue