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
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
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: "azure_ai_search"
|
|
url: ${AZURE_AI_SEARCH_URL_ENDPOINT}
|
|
api_key: ${AZURE_AI_SEARCH_API_KEY}
|
|
container_name: "simple_text_ci"
|
|
|
|
table_provider:
|
|
type: csv
|
|
|
|
community_reports:
|
|
prompt: "prompts/community_report.txt"
|
|
max_length: 2000
|
|
max_input_length: 8000
|
|
|
|
snapshots:
|
|
embeddings: true |