The community member is asking how to specify the chunk size for testing the performance of different chunk sizes with multiple VectorStoreIndex, now that the ServiceContext is deprecated in favor of Settings. The comments provide two solutions:
1. Set the chunk size globally using globalSettings.chunk_size = 512.
2. Specify the node parser/text splitter and pass it into the index, using SentenceSplitter(chunk_size=512).
The community members also note that the index takes a transformations array, similar to the ingestion pipeline.
Now that the ServiceContext is deprecated in favor of Settings, I want to test the performance of different chunk sizes with multiple VectorStoreIndex, where do I have to specify now the chunk_size for this to work?