mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-22 22:01:41 +03:00
19 lines
477 B
Python
19 lines
477 B
Python
|
from modules.brain.knowledge_brain_qa import KnowledgeBrainQA
|
||
|
|
||
|
|
||
|
class NotionBrain(KnowledgeBrainQA):
|
||
|
"""This is the Notion brain class. it is a KnowledgeBrainQA has the data is stored locally.
|
||
|
It is going to call the Data Store internally to get the data.
|
||
|
|
||
|
Args:
|
||
|
KnowledgeBrainQA (_type_): A brain that store the knowledge internaly
|
||
|
"""
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
**kwargs,
|
||
|
):
|
||
|
super().__init__(
|
||
|
**kwargs,
|
||
|
)
|