浏览代码

Fixed invoke component parameters #4236 (#4237)

### What problem does this PR solve?

to fixed issue https://github.com/infiniflow/ragflow/issues/4236

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/nightly
Hayden Zhou 10 个月前
父节点
当前提交
9fa73771ee
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      agent/component/invoke.py

+ 1
- 1
agent/component/invoke.py 查看文件

@@ -57,7 +57,7 @@ class Invoke(ComponentBase, ABC):
_, out = cpn.output(allow_partial=False)
args[para["key"]] = "\n".join(out["content"])
else:
args[para["key"]] = "\n".join(para["value"])
args[para["key"]] = para["value"]

url = self._param.url.strip()
if url.find("http") != 0:

正在加载...
取消
保存