mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-14 06:54:31 +08:00
30 lines
795 B
YAML
30 lines
795 B
YAML
claim_extraction:
|
|
enabled: true
|
|
|
|
embeddings:
|
|
vector_store:
|
|
type: "azure_ai_search"
|
|
url: ${AZURE_AI_SEARCH_URL_ENDPOINT}
|
|
api_key: ${AZURE_AI_SEARCH_API_KEY}
|
|
collection_name: "simple_text_ci"
|
|
store_in_table: True
|
|
entity_name_description:
|
|
title_column: "name"
|
|
|
|
community_reports:
|
|
prompt: "prompts/community_report.txt"
|
|
max_length: 2000
|
|
max_input_length: 8000
|
|
|
|
|
|
storage:
|
|
type: file # or blob
|
|
base_dir: "output/${timestamp}/artifacts"
|
|
# connection_string: <azure_blob_storage_connection_string>
|
|
# container_name: <azure_blob_storage_container_name>
|
|
|
|
reporting:
|
|
type: file # or console, blob
|
|
base_dir: "output/${timestamp}/reports"
|
|
# connection_string: <azure_blob_storage_connection_string>
|
|
# container_name: <azure_blob_storage_container_name> |