mirror of
https://github.com/microsoft/graphrag.git
synced 2026-01-14 00:57:23 +08:00
Some checks are pending
gh-pages / build (push) Waiting to run
Python CI / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python CI / python-ci (ubuntu-latest, 3.11) (push) Waiting to run
Python CI / python-ci (windows-latest, 3.10) (push) Waiting to run
Python CI / python-ci (windows-latest, 3.11) (push) Waiting to run
Python Integration Tests / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python Integration Tests / python-ci (windows-latest, 3.10) (push) Waiting to run
Python Notebook Tests / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python Notebook Tests / python-ci (windows-latest, 3.10) (push) Waiting to run
Python Publish (pypi) / Upload release to PyPI (push) Waiting to run
Python Smoke Tests / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python Smoke Tests / python-ci (windows-latest, 3.10) (push) Waiting to run
Spellcheck / spellcheck (push) Waiting to run
* Initial plan * Switch from Poetry to uv for package management Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * Clean up build artifacts and update gitignore Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * remove build artifacts * remove hardcoded version string * fix calls to pip in cicd * Update gh-pages.yml workflow to use uv instead of Poetry Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * ruff formatting fixes * update cicd workflow with latest uv action * fix command to retrieve package version * update development instructions * remove Poetry references * Replace deprecated azuright action with npm-based Azurite installation Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * skip api version check for azurite * add semversioner file * update more changes from switching to UV * Migrate unified-search-app from Poetry to uv package management Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * minor typo update * minor Dockerfile update * update cicd thresholds * update pytest thresholds * ruff fixes * ruff fixes * remove legacy npm settings that no longer apply * Update Unified Search App Readme --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> Co-authored-by: Josh Bradley <joshbradley@microsoft.com> Co-authored-by: Alonso Guevara <alonsog@microsoft.com>
108 lines
2.8 KiB
JSON
108 lines
2.8 KiB
JSON
{
|
|
"input_path": "./tests/fixtures/min-csv",
|
|
"input_file_type": "text",
|
|
"workflow_config": {
|
|
"load_input_documents": {
|
|
"max_runtime": 30
|
|
},
|
|
"create_base_text_units": {
|
|
"max_runtime": 30
|
|
},
|
|
"extract_covariates": {
|
|
"max_runtime": 10
|
|
},
|
|
"extract_graph": {
|
|
"max_runtime": 500
|
|
},
|
|
"finalize_graph": {
|
|
"row_range": [
|
|
1,
|
|
500
|
|
],
|
|
"nan_allowed_columns": [
|
|
"x",
|
|
"y"
|
|
],
|
|
"max_runtime": 30,
|
|
"expected_artifacts": [
|
|
"entities.parquet",
|
|
"relationships.parquet"
|
|
]
|
|
},
|
|
"create_communities": {
|
|
"row_range": [
|
|
10,
|
|
35
|
|
],
|
|
"max_runtime": 30,
|
|
"expected_artifacts": ["communities.parquet"]
|
|
},
|
|
"create_community_reports": {
|
|
"row_range": [
|
|
10,
|
|
35
|
|
],
|
|
"nan_allowed_columns": [
|
|
"title",
|
|
"summary",
|
|
"full_content",
|
|
"full_content_json",
|
|
"rank",
|
|
"rank_explanation",
|
|
"findings",
|
|
"period",
|
|
"size"
|
|
],
|
|
"max_runtime": 300,
|
|
"expected_artifacts": ["community_reports.parquet"]
|
|
},
|
|
"create_final_text_units": {
|
|
"row_range": [
|
|
10,
|
|
50
|
|
],
|
|
"nan_allowed_columns": [
|
|
"relationship_ids",
|
|
"entity_ids",
|
|
"covariate_ids"
|
|
],
|
|
"max_runtime": 30,
|
|
"expected_artifacts": ["text_units.parquet"]
|
|
},
|
|
"create_final_documents": {
|
|
"row_range": [
|
|
15,
|
|
15
|
|
],
|
|
"nan_allowed_columns": [
|
|
"metadata"
|
|
],
|
|
"max_runtime": 30,
|
|
"expected_artifacts": ["documents.parquet"]
|
|
},
|
|
"generate_text_embeddings": {
|
|
"row_range": [
|
|
1,
|
|
500
|
|
],
|
|
"max_runtime": 150,
|
|
"expected_artifacts": [
|
|
"embeddings.text_unit.text.parquet",
|
|
"embeddings.entity.description.parquet",
|
|
"embeddings.community.full_content.parquet"
|
|
]
|
|
}
|
|
},
|
|
"query_config": [
|
|
{
|
|
"query": "Who is Agent Alex Mercer and what are his goals?",
|
|
"method": "local"
|
|
},
|
|
{
|
|
"query": "What is the major conflict in this story and who are the protagonist and antagonist?",
|
|
"method": "global"
|
|
}
|
|
],
|
|
"slow": false
|
|
}
|