Spaces:
Sleeping
Sleeping
| from typing import List, Iterator | |
| from phi.document import Document | |
| from phi.knowledge.agent import AgentKnowledge | |
| class DocumentKnowledgeBase(AgentKnowledge): | |
| documents: List[Document] | |
| def document_lists(self) -> Iterator[List[Document]]: | |
| """Iterate over documents and yield lists of documents. | |
| Each object yielded by the iterator is a list of documents. | |
| Returns: | |
| Iterator[List[Document]]: Iterator yielding list of documents | |
| """ | |
| for _document in self.documents: | |
| yield [_document] | |