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 UnsupportedError('VectorStore not yet supported on desktop');
}