mirror of
https://github.com/microsoft/graphrag.git
synced 2025-06-26 23:19:58 +00:00

* Move covariate run conditional * All pipeline registration * Fix method name construction * Rename context storage -> output_storage * Rename OutputConfig as generic StorageConfig * Reuse Storage model under InputConfig * Move input storage creation out of document loading * Move document loading into workflows * Semver * Fix smoke test config for new workflows * Fix unit tests --------- Co-authored-by: Alonso Guevara <alonsog@microsoft.com>
37 lines
781 B
YAML
37 lines
781 B
YAML
extract_claims:
|
|
enabled: true
|
|
|
|
vector_store:
|
|
default_vector_store:
|
|
type: "azure_ai_search"
|
|
url: ${AZURE_AI_SEARCH_URL_ENDPOINT}
|
|
api_key: ${AZURE_AI_SEARCH_API_KEY}
|
|
container_name: "azure_ci"
|
|
|
|
input:
|
|
storage:
|
|
type: blob
|
|
connection_string: ${LOCAL_BLOB_STORAGE_CONNECTION_STRING}
|
|
container_name: azurefixture
|
|
base_dir: input
|
|
file_type: text
|
|
|
|
|
|
cache:
|
|
type: blob
|
|
connection_string: ${BLOB_STORAGE_CONNECTION_STRING}
|
|
container_name: cicache
|
|
base_dir: cache_azure_ai
|
|
|
|
output:
|
|
type: blob
|
|
connection_string: ${LOCAL_BLOB_STORAGE_CONNECTION_STRING}
|
|
container_name: azurefixture
|
|
base_dir: output
|
|
|
|
reporting:
|
|
type: blob
|
|
connection_string: ${LOCAL_BLOB_STORAGE_CONNECTION_STRING}
|
|
container_name: azurefixture
|
|
base_dir: reports
|