mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-14 06:54:31 +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
39 lines
963 B
YAML
39 lines
963 B
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: "lancedb"
|
|
db_uri: "./tests/fixtures/min-csv/lancedb"
|
|
container_name: "lancedb_ci"
|
|
overwrite: True
|
|
|
|
input:
|
|
file_type: csv
|
|
|
|
snapshots:
|
|
embeddings: true |