fix Unicode Escape Characters (#15318)

This commit is contained in:
heyszt 2025-03-10 09:22:41 +08:00 committed by GitHub
parent fcd9fd8513
commit a8b600845e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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):