Spaces:
Sleeping
Sleeping
from abc import ABC, abstractmethod | |
from typing import Any | |
class VectorStore(ABC): | |
def add_data(self, *args, **kwargs) -> Any: | |
""" | |
Add data to the vector store | |
""" | |
pass | |
def search(self, *args, **kwargs) -> Any: | |
""" | |
Search data from vector store | |
""" | |
pass |