You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the existing issues and this bug is not already filed.
My model is hosted on OpenAI or Azure. If not, please look at the "model providers" issue and don't file a new one here.
I believe this is a legitimate bug, not just a question. If this is a question, please use the Discussions area.
Describe the bug
The adjustment of the arguments is causing errors during indexing for the blob storage settings.
For example:#1482 line 39 (return create_blob_storage(**kwargs)). Where kwargs contains the property 'type', which is not expected by the function.
Ran into multiple locations, that this causes an error during indexing.
Steps to reproduce
#1482 line 39 (return create_blob_storage(**kwargs)).
Expected Behavior
Should be handled like:
defcreate_file_storage(**kwargs: Any) ->PipelineStorage:
"""Create a file based storage."""**base_dir=kwargs["base_dir"]**log.info("Creating file storage at %s", base_dir)
returnFilePipelineStorage(root_dir=base_dir)
GraphRAG Config Used
# Paste your config herestorage:
type: blob # or blobbase_dir: "output"connection_string: "${GRAPHRAG_STORAGE_CONNECTION_STRING}"storage_account_blob_url: "${GRAPHRAG_STORAGE_ACCOUNT_BLOB_URL}"container_name: "${GRAPHRAG_STORAGE_CONTAINER_NAME}"
Do you need to file an issue?
Describe the bug
The adjustment of the arguments is causing errors during indexing for the blob storage settings.
For example: #1482 line 39 (return create_blob_storage(**kwargs)). Where kwargs contains the property 'type', which is not expected by the function.
Ran into multiple locations, that this causes an error during indexing.
Steps to reproduce
#1482 line 39 (return create_blob_storage(**kwargs)).
Expected Behavior
Should be handled like:
GraphRAG Config Used
Logs and screenshots
No response
Additional Information
The text was updated successfully, but these errors were encountered: