-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5b4d2f
commit 9c6f5e0
Showing
10 changed files
with
46 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"description": "Add preflight check to check LLM connectivity.", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add streaming support for local/global search to query cli", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add support for both float and int on schema validation for community report generation", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Avoid running index on gh-pages publishing", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Implement Index API", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Improves filtering for data dir inferring", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Update to nltk 3.9.1", | ||
"type": "patch" | ||
} | ||
], | ||
"created_at": "2024-08-21T22:46:19+00:00", | ||
"version": "0.3.1" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "graphrag" | ||
# Maintainers: do not change the version here manually, use ./scripts/release.sh | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "" | ||
authors = [ | ||
"Alonso Guevara Fernández <[email protected]>", | ||
|
@@ -117,7 +117,7 @@ _convert_local_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/n | |
_convert_global_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/notebooks/ --output="{notebook_name}_nb" --template=docsite/nbdocsite_template --to markdown examples_notebooks/global_search.ipynb' | ||
_semversioner_release = "semversioner release" | ||
_semversioner_changelog = "semversioner changelog > CHANGELOG.md" | ||
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(semversioner current-version)" | ||
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(poetry run semversioner current-version)" | ||
coverage_report = 'coverage report --omit "**/tests/**" --show-missing' | ||
check_format = 'ruff format . --check --preview' | ||
fix = "ruff --preview check --fix ." | ||
|