(self)
| 967 | self._conn.commit() |
| 968 | |
| 969 | def count(self) -> int: |
| 970 | return self._conn.execute("SELECT COUNT(*) FROM embeddings").fetchone()[0] |
| 971 | |
| 972 | |
| 973 | def embed_all_nodes(graph_store: GraphStore, embedding_store: EmbeddingStore) -> int: |
no outgoing calls