Skip to content

Commit c8aefb2

Browse files
v0.2.0 (#700)
* v0.2.0 * Update 0.2.0.json * Update CHANGELOG.md
1 parent ac6f240 commit c8aefb2

25 files changed

+127
-90
lines changed

.semversioner/0.2.0.json

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"changes": [
3+
{
4+
"description": "Add content-based KNN for selecting prompt tune few shot examples",
5+
"type": "minor"
6+
},
7+
{
8+
"description": "Add dynamic community report rating to the prompt tuning engine",
9+
"type": "minor"
10+
},
11+
{
12+
"description": "Add Minute-based Rate Limiting and fix rpm, tpm settings",
13+
"type": "patch"
14+
},
15+
{
16+
"description": "Add N parameter support",
17+
"type": "patch"
18+
},
19+
{
20+
"description": "Add cli flag to overlay default values onto a provided config.",
21+
"type": "patch"
22+
},
23+
{
24+
"description": "Add exception handling on file load",
25+
"type": "patch"
26+
},
27+
{
28+
"description": "Add language support to prompt tuning",
29+
"type": "patch"
30+
},
31+
{
32+
"description": "Add llm params to local and global search",
33+
"type": "patch"
34+
},
35+
{
36+
"description": "Fix broken prompt tuning link on docs",
37+
"type": "patch"
38+
},
39+
{
40+
"description": "Fix delta none on query calls",
41+
"type": "patch"
42+
},
43+
{
44+
"description": "Fix docsite base url",
45+
"type": "patch"
46+
},
47+
{
48+
"description": "Fix encoding model parameter on prompt tune",
49+
"type": "patch"
50+
},
51+
{
52+
"description": "Fix for --limit exceeding the dataframe length",
53+
"type": "patch"
54+
},
55+
{
56+
"description": "Fix for Ruff 0.5.2",
57+
"type": "patch"
58+
},
59+
{
60+
"description": "Fixed an issue where base OpenAI embeddings can't work with Azure OpenAI LLM",
61+
"type": "patch"
62+
},
63+
{
64+
"description": "Modify defaults for CHUNK_SIZE, CHUNK_OVERLAP and GLEANINGS to reduce time and LLM calls",
65+
"type": "patch"
66+
},
67+
{
68+
"description": "fix community_report doesn't work in settings.yaml",
69+
"type": "patch"
70+
},
71+
{
72+
"description": "fix llm response content is None in query",
73+
"type": "patch"
74+
},
75+
{
76+
"description": "fix the organization parameter is ineffective during queries",
77+
"type": "patch"
78+
},
79+
{
80+
"description": "remove duplicate file read",
81+
"type": "patch"
82+
},
83+
{
84+
"description": "support non-open ai model config to prompt tune",
85+
"type": "patch"
86+
},
87+
{
88+
"description": "use binary io processing for all file io operations",
89+
"type": "patch"
90+
}
91+
],
92+
"created_at": "2024-07-25T02:01:38+00:00",
93+
"version": "0.2.0"
94+
}

.semversioner/next-release/minor-20240710183748086411.json

-4
This file was deleted.

.semversioner/next-release/minor-20240712152937651350.json

-4
This file was deleted.

.semversioner/next-release/patch-20240701233152787373.json

-4
This file was deleted.

.semversioner/next-release/patch-20240703152422358587.json

-4
This file was deleted.

.semversioner/next-release/patch-20240703182750529114.json

-4
This file was deleted.

.semversioner/next-release/patch-20240704181236015699.json

-4
This file was deleted.

.semversioner/next-release/patch-20240705184142723331.json

-4
This file was deleted.

.semversioner/next-release/patch-20240705235656897489.json

-4
This file was deleted.

.semversioner/next-release/patch-20240707063053679262.json

-4
This file was deleted.

.semversioner/next-release/patch-20240709225514193665.json

-4
This file was deleted.

.semversioner/next-release/patch-20240710114442871595.json

-4
This file was deleted.

.semversioner/next-release/patch-20240710165603516866.json

-4
This file was deleted.

.semversioner/next-release/patch-20240711004716103302.json

-4
This file was deleted.

.semversioner/next-release/patch-20240711092703710242.json

-4
This file was deleted.

.semversioner/next-release/patch-20240711223132221685.json

-4
This file was deleted.

.semversioner/next-release/patch-20240712035356859335.json

-4
This file was deleted.

.semversioner/next-release/patch-20240712210400518089.json

-4
This file was deleted.

.semversioner/next-release/patch-20240712235357550877.json

-4
This file was deleted.

.semversioner/next-release/patch-20240716225953784804.json

-4
This file was deleted.

.semversioner/next-release/patch-20240718121358935484.json

-4
This file was deleted.

.semversioner/next-release/patch-20240721063703879643.json

-4
This file was deleted.

.semversioner/next-release/patch-20240724150548966311.json

-4
This file was deleted.

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Changelog
2+
Note: version releases in the 0.x.y range may introduce breaking changes.
3+
4+
## 0.2.0
5+
6+
- minor: Add content-based KNN for selecting prompt tune few shot examples
7+
- minor: Add dynamic community report rating to the prompt tuning engine
8+
- patch: Add Minute-based Rate Limiting and fix rpm, tpm settings
9+
- patch: Add N parameter support
10+
- patch: Add cli flag to overlay default values onto a provided config.
11+
- patch: Add exception handling on file load
12+
- patch: Add language support to prompt tuning
13+
- patch: Add llm params to local and global search
14+
- patch: Fix broken prompt tuning link on docs
15+
- patch: Fix delta none on query calls
16+
- patch: Fix docsite base url
17+
- patch: Fix encoding model parameter on prompt tune
18+
- patch: Fix for --limit exceeding the dataframe length
19+
- patch: Fix for Ruff 0.5.2
20+
- patch: Fixed an issue where base OpenAI embeddings can't work with Azure OpenAI LLM
21+
- patch: Modify defaults for CHUNK_SIZE, CHUNK_OVERLAP and GLEANINGS to reduce time and LLM calls
22+
- patch: fix community_report doesn't work in settings.yaml
23+
- patch: fix llm response content is None in query
24+
- patch: fix the organization parameter is ineffective during queries
25+
- patch: remove duplicate file read
26+
- patch: support non-open ai model config to prompt tune
27+
- patch: use binary io processing for all file io operations
28+
29+
## 0.1.0
30+
31+
- minor: Initial Release

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "graphrag"
33
# Maintainers: do not change the version here manually, use ./scripts/release.sh
4-
version = "0.1.1"
4+
version = "0.2.0"
55
description = ""
66
authors = [
77
"Alonso Guevara Fernández <[email protected]>",
@@ -114,7 +114,7 @@ _convert_local_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/n
114114
_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'
115115
_semversioner_release = "semversioner release"
116116
_semversioner_changelog = "semversioner changelog > CHANGELOG.md"
117-
_semversioner_update_toml_version = "update-toml --path tool.poetry.version --value \"$(semversioner current-version)\" pyproject.toml"
117+
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value \"$(semversioner current-version)\" pyproject.toml"
118118
coverage_report = 'coverage report --omit "**/tests/**" --show-missing'
119119
check_format = 'ruff format . --check --preview'
120120
fix = "ruff --preview check --fix ."

0 commit comments

Comments
 (0)