addDocumentWithEmbedding method
Add document to vector store with pre-computed embedding.
Implementation
@override
Future<void> addDocumentWithEmbedding({
required String id,
required String content,
required List<double> embedding,
String? metadata,
}) async {
throw UnimplementedError('RAG is not supported on web platform yet');
}