add new node to vector_df Parameters ---------- document Returns -------
(self, document: Union[Document, List[Document]])
| 75 | """ |
| 76 | |
| 77 | def add(self, document: Union[Document, List[Document]]): |
| 78 | """ |
| 79 | add new node to vector_df |
| 80 | Parameters |
| 81 | ---------- |
| 82 | document |
| 83 | |
| 84 | Returns |
| 85 | ------- |
| 86 | |
| 87 | """ |
| 88 | pass |
| 89 | |
| 90 | def search(self, content: str, topk_k: int | None = None, similarity_threshold: float = 0) -> List[Document]: |
| 91 | """ |
no outgoing calls
no test coverage detected