def index_from_nodes(client:WeaviateClient, nodes: List[Node], index_name:str) -> VectorStoreIndex: vector_store = WeaviateVectorStore(weaviate_client = client, index_name = index_name) storage_context = StorageContext.from_defaults(vector_store = vector_store) return VectorStoreIndex(nodes = nodes, storage_context = storage_context)
index_name
?