Skip to content

Commit a478970

Browse files
author
ianrob
committed
3.15.3
1 parent 61a2dd6 commit a478970

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

byokg-rag/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pip install .
5858
```
5959
or
6060
```
61-
pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=byokg-rag
61+
pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=byokg-rag
6262
```
6363
(The version number will vary based on the latest GitHub release)
6464

docs/byokg-rag/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The system's performance has been evaluated across multiple knowledge graph benc
8383
You can get started with byokg-rag by installing the package and running the demo notebook:
8484

8585
```bash
86-
pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=byokg-rag
86+
pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=byokg-rag
8787
```
8888

8989
The repository includes several [example notebooks](../../examples/byokg-rag/) that demonstrate how to use the library with different graph stores and datasets:

docs/lexical-graph/graph-store-falkor-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can use FalkorDB as a graph store.
1818
The FalkorDB graph store is contained in a separate contributor package. To install it:
1919

2020
```
21-
!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=lexical-graph-contrib/falkordb
21+
!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=lexical-graph-contrib/falkordb
2222
```
2323

2424
### Registering FalkorDB as a graph store

examples/byokg-rag/byokg_rag_demo_local_graph.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"metadata": {},
4444
"outputs": [],
4545
"source": [
46-
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=byokg-rag"
46+
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=byokg-rag"
4747
]
4848
},
4949
{

examples/byokg-rag/byokg_rag_neptune_analytics_demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"metadata": {},
3535
"outputs": [],
3636
"source": [
37-
"# !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=byokg-rag"
37+
"# !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=byokg-rag"
3838
]
3939
},
4040
{

examples/byokg-rag/byokg_rag_neptune_analytics_embeddings.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"id": "fcbdac31-35e0-4cd3-9456-2d7ab58a172e",
3131
"metadata": {},
3232
"outputs": [],
33-
"source": "# !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=byokg-rag"
33+
"source": "# !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=byokg-rag"
3434
},
3535
{
3636
"cell_type": "code",

examples/byokg-rag/byokg_rag_neptune_db_cluster_demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"metadata": {},
3434
"outputs": [],
3535
"source": [
36-
"# !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=byokg-rag"
36+
"# !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=byokg-rag"
3737
]
3838
},
3939
{

examples/lexical-graph-hybrid-dev/notebooks/00-Setup.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"source": [
6767
"if not dev_mode:\n",
6868
" print('Installing lexical-graph package...')\n",
69-
" !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=lexical-graph\n",
69+
" !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=lexical-graph\n",
7070
"else:\n",
7171
" print('Development mode - will install from mounted source')"
7272
]

examples/lexical-graph-hybrid-dev/notebooks/02-Cloud-Setup.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"metadata": {},
2424
"outputs": [],
2525
"source": [
26-
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=lexical-graph"
26+
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=lexical-graph"
2727
]
2828
},
2929
{

examples/lexical-graph-local-dev/notebooks/00-Setup.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"source": [
6767
"if not dev_mode:\n",
6868
" print('Installing lexical-graph package...')\n",
69-
" !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.2.zip#subdirectory=lexical-graph\n",
69+
" !pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v3.15.3.zip#subdirectory=lexical-graph\n",
7070
"else:\n",
7171
" print('Development mode - will install from mounted source')"
7272
]

0 commit comments

Comments
 (0)