diff --git a/examples/notebooks/01-Combined-Extract-and-Build.ipynb b/examples/notebooks/01-Combined-Extract-and-Build.ipynb index 9b288d7..bffb74d 100644 --- a/examples/notebooks/01-Combined-Extract-and-Build.ipynb +++ b/examples/notebooks/01-Combined-Extract-and-Build.ipynb @@ -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" ] }, { diff --git a/examples/notebooks/02-Separate-Extract-and-Build.ipynb b/examples/notebooks/02-Separate-Extract-and-Build.ipynb index a148aab..bb1370f 100644 --- a/examples/notebooks/02-Separate-Extract-and-Build.ipynb +++ b/examples/notebooks/02-Separate-Extract-and-Build.ipynb @@ -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" ] }, { diff --git a/examples/notebooks/03-Advanced-Construction.ipynb b/examples/notebooks/03-Advanced-Construction.ipynb index 891aec8..221f908 100644 --- a/examples/notebooks/03-Advanced-Construction.ipynb +++ b/examples/notebooks/03-Advanced-Construction.ipynb @@ -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" ] }, { diff --git a/examples/notebooks/04-Querying.ipynb b/examples/notebooks/04-Querying.ipynb index 5c59e54..799d610 100644 --- a/examples/notebooks/04-Querying.ipynb +++ b/examples/notebooks/04-Querying.ipynb @@ -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" ] }, { diff --git a/pyproject.toml b/pyproject.toml index 6bf1bdb..8127013 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/graphrag_toolkit/lexical_graph_index.py b/src/graphrag_toolkit/lexical_graph_index.py index 8ee3ae7..5e1bd31 100644 --- a/src/graphrag_toolkit/lexical_graph_index.py +++ b/src/graphrag_toolkit/lexical_graph_index.py @@ -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 @@ -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 diff --git a/src/setup.py b/src/setup.py index 4612341..e607309 100644 --- a/src/setup.py +++ b/src/setup.py @@ -21,5 +21,5 @@ ], python_requires=">=3.10", install_requires=deps, - version="2.1.0-SNAPSHOT" + version="2.0.1" ) \ No newline at end of file