removeDocument method
Remove a single document from the vector store by ID. No-op if absent.
Implementation
@override
Future<void> removeDocument({required String id}) async {
await ServiceRegistry.instance.vectorStoreRepository.removeDocument(id: id);
}