Spaces:
Runtime error
Runtime error
File size: 924 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
from typing import Iterator, List
from phi.document import Document
from phi.knowledge.base import AssistantKnowledge
try:
import wikipedia # noqa: F401
except ImportError:
raise ImportError("The `wikipedia` package is not installed. Please install it via `pip install wikipedia`.")
class WikipediaKnowledgeBase(AssistantKnowledge):
topics: List[str] = []
@property
def document_lists(self) -> Iterator[List[Document]]:
"""Iterate over urls 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 topic in self.topics:
yield [
Document(
name=topic,
meta_data={"topic": topic},
content=wikipedia.summary(topic),
)
]
|