6b7e6b44f1
gh-pages / build (push) Waiting to run
Python Publish (pypi) / Upload release to PyPI (push) Waiting to run
Spellcheck / spellcheck (push) Waiting to run
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
37 lines
907 B
YAML
37 lines
907 B
YAML
completion_models:
|
|
default_completion_model:
|
|
model_provider: azure
|
|
api_key: ${GRAPHRAG_API_KEY}
|
|
api_base: ${GRAPHRAG_API_BASE}
|
|
api_version: "2025-04-01-preview"
|
|
model: gpt-4.1
|
|
azure_deployment_name: gpt-4.1
|
|
rate_limit:
|
|
type: sliding_window
|
|
tokens_per_period: 250_000
|
|
requests_per_period: 250
|
|
embedding_models:
|
|
default_embedding_model:
|
|
model_provider: azure
|
|
api_key: ${GRAPHRAG_API_KEY}
|
|
api_base: ${GRAPHRAG_API_BASE}
|
|
api_version: "2025-04-01-preview"
|
|
model: text-embedding-3-large
|
|
azure_deployment_name: text-embedding-3-large
|
|
rate_limit:
|
|
type: sliding_window
|
|
tokens_per_period: 250_000
|
|
requests_per_period: 250
|
|
|
|
vector_store:
|
|
type: "lancedb"
|
|
db_uri: "./tests/fixtures/min-csv/lancedb"
|
|
overwrite: True
|
|
container_name: "lancedb_ci"
|
|
|
|
input:
|
|
type: csv
|
|
encoding: utf-8-sig
|
|
|
|
snapshots:
|
|
embeddings: true |