A workaround would be to do:
MATCH (n:Movie|Person)
SET n:MultiLabel;
CREATE VECTOR INDEX multiLabelIndex
IF NOT EXISTS
FOR (n:MultiLabel) ON (n.text)
OPTIONS {
indexConfig: {
'vector.dimensions': 1536,
'vector.similarity_function': 'cosine'
}
};