addDocument method
Add document to vector store (will compute embedding automatically).
Implementation
@override
Future<void> addDocument({
required String id,
required String content,
String? metadata,
}) async {
throw UnimplementedError('RAG is not supported on web platform yet');
}