Fix DP load for embedding (#9165)

This commit is contained in:
Brayden Zhong
2025-08-16 02:58:44 -04:00
committed by GitHub
parent eff4eb3fdd
commit bc938ea13f
2 changed files with 5 additions and 1 deletions

View File

@@ -54,7 +54,7 @@ class SessionReqNode:
prefix += " -- " + self.childs[0].req.rid
ret = self.childs[0]._str_helper(prefix)
for child in self.childs[1:]:
prefix = " " * len(origin_prefix) + " \- " + child.req.rid
prefix = " " * len(origin_prefix) + " \\- " + child.req.rid
ret += child._str_helper(prefix)
return ret