mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-13 22:44:30 +08:00
* Remove "strategy" from community reports config/workflow * Remove extraction strategy from extract_graph * Remove summarization strategy from extract_graph * Remove strategy from claim extraction * Strongly type prompt templates * Remove strategy from embed_text * Push hydrated params into community report workflows * Push hyrdated params into extract covariates * Push hydrated params into extract graph NLP * Push hydrated params into extract graph * Push hydrated params into text embeddings * Remove a few more low-level defaults * Semver * Remove configurable prompt delimiters * Update smoke tests
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
models:
|
|
default_chat_model:
|
|
azure_auth_type: api_key
|
|
type: chat
|
|
model_provider: azure
|
|
api_key: ${GRAPHRAG_API_KEY}
|
|
api_base: ${GRAPHRAG_API_BASE}
|
|
api_version: "2025-04-01-preview"
|
|
model: gpt-4.1
|
|
retry_strategy: exponential_backoff
|
|
tokens_per_minute: null
|
|
requests_per_minute: null
|
|
model_supports_json: true
|
|
concurrent_requests: 25
|
|
default_embedding_model:
|
|
azure_auth_type: api_key
|
|
type: embedding
|
|
model_provider: azure
|
|
api_key: ${GRAPHRAG_API_KEY}
|
|
api_base: ${GRAPHRAG_API_BASE}
|
|
api_version: "2025-04-01-preview"
|
|
model: text-embedding-3-large
|
|
retry_strategy: exponential_backoff
|
|
tokens_per_minute: null
|
|
requests_per_minute: null
|
|
concurrent_requests: 25
|
|
|
|
vector_store:
|
|
default_vector_store:
|
|
type: "azure_ai_search"
|
|
url: ${AZURE_AI_SEARCH_URL_ENDPOINT}
|
|
api_key: ${AZURE_AI_SEARCH_API_KEY}
|
|
container_name: "simple_text_ci"
|
|
|
|
extract_claims:
|
|
enabled: true
|
|
|
|
community_reports:
|
|
prompt: "prompts/community_report.txt"
|
|
max_length: 2000
|
|
max_input_length: 8000
|
|
|
|
snapshots:
|
|
embeddings: true |