mirror of https://github.com/langgenius/dify.git
fix Unicode Escape Characters (#15318)
This commit is contained in:
parent
fcd9fd8513
commit
a8b600845e
|
|
@ -136,7 +136,7 @@ class ArrayStringSegment(ArraySegment):
|
|||
|
||||
@property
|
||||
def text(self) -> str:
|
||||
return json.dumps(self.value)
|
||||
return json.dumps(self.value, ensure_ascii=False)
|
||||
|
||||
|
||||
class ArrayNumberSegment(ArraySegment):
|
||||
|
|
|
|||
Loading…
Reference in New Issue