Procházet zdrojové kódy

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 před 10 měsíci
rodič
revize
9fa73771ee
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      agent/component/invoke.py

+ 1
- 1
agent/component/invoke.py Zobrazit soubor

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

Načítá se…
Zrušit
Uložit