-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
• Added Knowledge Graph (KG) tests (#1351) - CLI tests - SDK tests - Workflow ordering changes • Added collection integration tests (#1352) - Fixed SDK test port - Fixed delete collection return check • Fixed document info serialization (#1353) • Added GraphRAG documentation (#1362) • Implemented concurrent index creation (#1363) - Allow -1 for paginated entries • Updated webdev-template for current Next.js and r2r-js SDK (#1218) • Extended integration tests (#1361) - Cleaned up and simplified CLI - Added new workflows and actions - Implemented matrix test flow - Docker setup and configuration • Rebased to r2r vars (#1364) - Updated Windows workflow - Revived full workflow and tests • Fixed typos (#1366) • Added ingestion concurrency limit (#1367) • Fixed Ollama Tool Calling (#1372) • Cleaned up Docker Compose (#1368) • Fixed bug in deletion, improved validation error handling (#1374) • Added vector index creation endpoint (#1373) • Modified KG Endpoints and updated API spec (#1369) • Implemented new Docker setup (#1371) - Updated actions and scripts • Cleaned up ingest chunks, added to JS SDK (#1375) • Various updates and fixes (#1376, #1378, #1379) - Increased entity limit - Changed Aristotle back to v2 - Added test_ingest_sample_file_2_sdk • Added GraphRAG documentation and refined code (#1382) - Added Python SDK documentation • Added R2R_ prefix to env vars (#1383) - Cleaned up docker compose - Bumped Python and JS package versions - Updated form-data --------- Co-authored-by: Shreyas Pimpalgaonkar <shreyas.gp.7@gmail.com> Co-authored-by: Nolan Tremelling <34580718+NolanTrem@users.noreply.github.com> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: FutureProofTechOps <operations@theobald.nz> Co-authored-by: Simeon <simeon@theobald.nz> Co-authored-by: --global=Shreyas Pimpalgaonkar <--global=shreyas.gp.7@gmail.com>
- Loading branch information
1 parent
b5b6328
commit a640fb2
Showing
88 changed files
with
2,466 additions
and
1,244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 'Login Docker' | ||
description: 'Sets up Docker for running R2R' | ||
inputs: | ||
docker_username: | ||
description: 'Docker Hub username' | ||
required: true | ||
docker_password: | ||
description: 'Docker Hub password or token' | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ inputs.docker_username }} | ||
password: ${{ inputs.docker_password }} |
12 changes: 6 additions & 6 deletions
12
.github/actions/run-cli-graphrag/action.yml → ...actions/run-cli-graphrag-tests/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: 'Run SDK Ingestion Tests' | ||
description: 'Runs SDK ingestion tests for R2R' | ||
name: 'Run CLI Graphrag Tests' | ||
description: 'Runs CLI graphrag tests for R2R' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Ingest sample file (SDK) | ||
working-directory: ./py | ||
shell: bash | ||
run: poetry run python tests/integration/runner_sdk.py test_remove_all_files_and_ingest_sample_file_cli | ||
run: poetry run python tests/integration/runner_cli.py test_ingest_sample_file_2_cli | ||
|
||
- name: Create the graph (SDK) | ||
working-directory: ./py | ||
shell: bash | ||
run: poetry run python tests/integration/runner_sdk.py test_kg_create_graph_sample_file_cli | ||
run: poetry run python tests/integration/runner_cli.py test_kg_create_graph_sample_file_cli | ||
|
||
- name: Enrich the graph (SDK) | ||
working-directory: ./py | ||
shell: bash | ||
run: poetry run python tests/integration/runner_sdk.py test_kg_enrich_graph_sample_file_cli | ||
run: poetry run python tests/integration/runner_cli.py test_kg_enrich_graph_sample_file_cli | ||
|
||
- name: Search over the graph (SDK) | ||
working-directory: ./py | ||
shell: bash | ||
run: poetry run python tests/integration/runner_sdk.py test_kg_search_sample_file_cli | ||
run: poetry run python tests/integration/runner_cli.py test_kg_search_sample_file_cli |
6 changes: 3 additions & 3 deletions
6
.github/actions/run-sdk-graphrag/action.yml → ...actions/run-sdk-graphrag-tests/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: 'Communities' | ||
openapi: 'GET /v2/communities' | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Create Vector Index | ||
openapi: 'POST /v2/create_vector_index' | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: 'Entities' | ||
openapi: 'GET /v2/entities' | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: 'Triples' | ||
openapi: 'GET /v2/triples' | ||
--- |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.