Browse Source

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 months ago
parent
commit
9fa73771ee
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      agent/component/invoke.py

+ 1
- 1
agent/component/invoke.py View File

@@ -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:

Loading…
Cancel
Save