mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
fix Unicode Escape Characters (#15318)
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user