fix: fix some bugs in quant scen (#1026)

* fix some  bugs

* fix ci

* fix

* refine

* fix ci
This commit is contained in:
Yuante Li
2025-07-07 19:21:05 +08:00
committed by GitHub
parent 508b75f884
commit f2cb3ce909
3 changed files with 52 additions and 45 deletions
+3 -2
View File
@@ -73,8 +73,9 @@ class ExperimentFeedback(Feedback):
def __str__(self) -> str:
res = f"Decision: {self.decision}\nReason: {self.reason}"
if self.code_change_summary is not None:
res += "\nCode Change Summary: " + self.code_change_summary
code_change_summary = getattr(self, "code_change_summary", None)
if code_change_summary is not None:
res += "\nCode Change Summary: " + code_change_summary
return res
@classmethod