Parcourir la source

refine the warning message for rewrite component (#2429)

### What problem does this PR solve?


### Type of change

- [x] Performance Improvement
tags/v0.11.0
Kevin Hu il y a 1 an
Parent
révision
d3262ca378
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      agent/component/rewrite.py

+ 1
- 1
agent/component/rewrite.py Voir le fichier

@@ -54,7 +54,7 @@ class RewriteQuestion(Generate, ABC):
setattr(self, "_loop", 0)
if self._loop >= self._param.loop:
self._loop = 0
raise Exception("Maximum loop time exceeds. Can't find relevant information.")
raise Exception("Sorry! Nothing relevant found.")
self._loop += 1
q = "Question: "
for r, c in self._canvas.history[::-1]:

Chargement…
Annuler
Enregistrer