1
1
mirror of https://github.com/QuivrHQ/quivr.git synced 2024-12-25 08:04:19 +03:00
quivr/backend/modules/ingestion/repository/ingestion_interface.py

17 lines
378 B
Python
Raw Normal View History

from abc import ABC, abstractmethod
from typing import List
from modules.ingestion.entity.ingestion import IngestionEntity
class IngestionInterface(ABC):
@abstractmethod
def get_all_ingestions(self) -> List[IngestionEntity]:
"""
Get all the knowledge in a brain
Args:
brain_id (UUID): The id of the brain
"""
pass