undo vectstore memory bug (#8007)

pull/8014/head
Bagatur 1 year ago committed by GitHub
parent 453d4c3a99
commit ea028b66ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -64,7 +64,6 @@ class VectorStoreRetrieverMemory(BaseMemory):
texts = [
f"{k}: {v}"
for k, v in list(filtered_inputs.items()) + list(outputs.items())
if k not in exclude
]
page_content = "\n".join(texts)
return [Document(page_content=page_content)]

Loading…
Cancel
Save