Add data to memory. Args: **kwargs: Other keyword arguments that subclasses might use.
(
self,
*args: Any,
**kwargs: Any,
)
| 60 | |
| 61 | @abc.abstractmethod |
| 62 | def add( |
| 63 | self, |
| 64 | *args: Any, |
| 65 | **kwargs: Any, |
| 66 | ) -> None: |
| 67 | """Add data to memory. |
| 68 | |
| 69 | Args: |
| 70 | **kwargs: Other keyword arguments that subclasses might use. |
| 71 | """ |
| 72 | pass |
| 73 | |
| 74 | @abc.abstractmethod |
| 75 | def similarity_search( |
no outgoing calls
no test coverage detected