Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrob committed Feb 24, 2025
1 parent b554ef6 commit f39f488
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/notebooks/01-Combined-Extract-and-Build.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.0.zip"
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.1.zip"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/02-Separate-Extract-and-Build.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.0.zip"
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.1.zip"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/03-Advanced-Construction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.0.zip"
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.1.zip"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/04-Querying.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.0.zip"
"!pip install https://github.com/awslabs/graphrag-toolkit/archive/refs/tags/v2.0.1.zip"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "graphrag_toolkit"
version = "2.1.0-SNAPSHOT"
version = "2.0.1"
description = "A Python toolkit for building GraphRAG applications"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
4 changes: 2 additions & 2 deletions src/graphrag_toolkit/lexical_graph_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from graphrag_toolkit.indexing.build import VectorIndexing
from graphrag_toolkit.indexing.build import GraphConstruction
from graphrag_toolkit.indexing.build import Checkpoint
from graphrag_toolkit.indexing.build import BuildFilter, DEFAULT_BUILD_FILTER
from graphrag_toolkit.indexing.build import BuildFilter
from graphrag_toolkit.indexing.build.null_builder import NullBuilder

from llama_index.core.node_parser import SentenceSplitter, NodeParser
Expand All @@ -42,7 +42,7 @@ def __init__(self,

class BuildConfig():
def __init__(self,
filter:Optional[BuildFilter]=DEFAULT_BUILD_FILTER,
filter:Optional[BuildFilter]=None,
include_domain_labels:Optional[bool]=None):
self.filter = filter
self.include_domain_labels = include_domain_labels
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
],
python_requires=">=3.10",
install_requires=deps,
version="2.1.0-SNAPSHOT"
version="2.0.1"
)

0 comments on commit f39f488

Please sign in to comment.