We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DocumentWriter
Blocked by #5261
DocumentWriter is a tiny, document-store-agnostic component that simply takes one list of documents and writes it to the document store.
Example of such component:
@component class WriteToStore(StoreAwareMixin): @component.input def input(self): class Input: documents: List[Document] return Input @component.output def output(self): class Output: ... return Output def run(self, data): self.store.write_documents(data.documents) return self.output()
The text was updated successfully, but these errors were encountered:
julian-risch
Successfully merging a pull request may close this issue.
Blocked by #5261
DocumentWriter
is a tiny, document-store-agnostic component that simply takes one list of documents and writes it to the document store.Example of such component:
The text was updated successfully, but these errors were encountered: