Hi everyone! I'm getting started with LlamaIndex and really liking it so far. I was wondering if anyone has been successful creating a storage_context with an azure container blob? I was able to persist() the index no problem using an fsspec instance and can list the files using the fsspec instance. however, when I try to create a storage context with the fsspec instance it only returns an HttpError (no resource). fs1 = fsspec.filesystem("abfs", account_name="name", account_key="key")AZURE_CONTAINER = "report-stores"sentence_index.storage_context.persist(persist_dir=f'{AZURE_CONTAINER}', fs=fs1)print(fs1.ls(AZURE_CONTAINER))['report-stores/docstore.json', 'report-stores/graph_store.json', 'report-stores/index_store.json', 'report-stores/vector_store.json']sc = StorageContext.from_defaults(persist_dir=f'{AZURE_CONTAINER}', fs=fs1) <-- HttpResponseError Does anyone have any recommendations? cheers!
I'm not sure what that means. how do I create a storage context without passing the fsspec instance? I can use the fsspec instance to list the files in the blob and it works fine. I also tried using fs2 = AzureBlobFileSystem(account_name="name", account_key="key") but that didn't work either.