Просмотр исходного кода

Fix: Set Output In Category Component (#8010)

### What problem does this PR solve?

https://github.com/infiniflow/ragflow/issues/8006
The category should work well, but the category's downstream seems to be
unable to get the upstream output.
Add the category's output as an attribute.
However, in base.py, there is logic
` if self.component_name.lower().find("switch") < 0 and
self.get_component_name(u) in ["relevant", "categorize"]:
                continue`
If goto this cases will not tried to get output from Category (but I do
not have full context about this if logic).



### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.19.1
Stephen Hu 5 месяцев назад
Родитель
Сommit
f56f7a5f94
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 6 добавлений и 2 удалений
  1. 6
    2
      agent/component/categorize.py

+ 6
- 2
agent/component/categorize.py Просмотреть файл

@@ -99,9 +99,13 @@ class Categorize(Generate, ABC):
# If a category is found, return the category with the highest count.
if any(category_counts.values()):
max_category = max(category_counts.items(), key=lambda x: x[1])
return Categorize.be_output(self._param.category_description[max_category[0]]["to"])
res = Categorize.be_output(self._param.category_description[max_category[0]]["to"])
self.set_output(res)
return res

return Categorize.be_output(list(self._param.category_description.items())[-1][1]["to"])
res = Categorize.be_output(list(self._param.category_description.items())[-1][1]["to"])
self.set_output(res)
return res

def debug(self, **kwargs):
df = self._run([], **kwargs)

Загрузка…
Отмена
Сохранить