graphrag/tests/fixtures/min-csv/settings.yml
Nathan Evans eb0dfe376b
Remove strategy dicts (#2090)
* 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
2025-10-10 12:15:23 -07:00

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