Skip to content

Commit 5326840

Browse files
Release v0.2.1 (#835)
1 parent bd326d2 commit 5326840

19 files changed

+90
-65
lines changed

.semversioner/0.2.1.json

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"changes": [
3+
{
4+
"description": "Added default columns for vector store at create_pipeline_config. No change for other cases.",
5+
"type": "patch"
6+
},
7+
{
8+
"description": "Change json parsing error in the map step of global search to warning",
9+
"type": "patch"
10+
},
11+
{
12+
"description": "Fix Local Search breaking when loading Embeddings input. Defaulting overwrite to True as in the rest of the vector store config",
13+
"type": "patch"
14+
},
15+
{
16+
"description": "Fix json parsing when LLM returns faulty responses",
17+
"type": "patch"
18+
},
19+
{
20+
"description": "Fix missing community reports and refactor community context builder",
21+
"type": "patch"
22+
},
23+
{
24+
"description": "Fixed a bug that erased the vector database, added a new parameter to specify the config file path, and updated the documentation accordingly.",
25+
"type": "patch"
26+
},
27+
{
28+
"description": "Try parsing json before even repairing",
29+
"type": "patch"
30+
},
31+
{
32+
"description": "Update Prompt Tuning meta prompts with finer examples",
33+
"type": "patch"
34+
},
35+
{
36+
"description": "Update default entity extraction and gleaning prompts to reduce hallucinations",
37+
"type": "patch"
38+
},
39+
{
40+
"description": "add encoding-model to entity/claim extraction config",
41+
"type": "patch"
42+
},
43+
{
44+
"description": "add encoding-model to text chunking config",
45+
"type": "patch"
46+
},
47+
{
48+
"description": "add user prompt to history-tracking llm",
49+
"type": "patch"
50+
},
51+
{
52+
"description": "update config reader to allow for zero gleans",
53+
"type": "patch"
54+
},
55+
{
56+
"description": "update config-reader to allow for empty chunk-by arrays",
57+
"type": "patch"
58+
},
59+
{
60+
"description": "update history-tracking LLm to use 'assistant' instead of 'system' in output history.",
61+
"type": "patch"
62+
},
63+
{
64+
"description": "use history argument in hash key computation; add history input to cache data",
65+
"type": "patch"
66+
}
67+
],
68+
"created_at": "2024-08-06T00:25:52+00:00",
69+
"version": "0.2.1"
70+
}

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22
Note: version releases in the 0.x.y range may introduce breaking changes.
33

4+
## 0.2.1
5+
6+
- patch: Added default columns for vector store at create_pipeline_config. No change for other cases.
7+
- patch: Change json parsing error in the map step of global search to warning
8+
- patch: Fix Local Search breaking when loading Embeddings input. Defaulting overwrite to True as in the rest of the vector store config
9+
- patch: Fix json parsing when LLM returns faulty responses
10+
- patch: Fix missing community reports and refactor community context builder
11+
- patch: Fixed a bug that erased the vector database, added a new parameter to specify the config file path, and updated the documentation accordingly.
12+
- patch: Try parsing json before even repairing
13+
- patch: Update Prompt Tuning meta prompts with finer examples
14+
- patch: Update default entity extraction and gleaning prompts to reduce hallucinations
15+
- patch: add encoding-model to entity/claim extraction config
16+
- patch: add encoding-model to text chunking config
17+
- patch: add user prompt to history-tracking llm
18+
- patch: update config reader to allow for zero gleans
19+
- patch: update config-reader to allow for empty chunk-by arrays
20+
- patch: update history-tracking LLm to use 'assistant' instead of 'system' in output history.
21+
- patch: use history argument in hash key computation; add history input to cache data
22+
423
## 0.2.0
524

625
- minor: Add content-based KNN for selecting prompt tune few shot examples

pyproject.toml

+1-1
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.2.0"
4+
version = "0.2.1"
55
description = ""
66
authors = [
77
"Alonso Guevara Fernández <[email protected]>",

0 commit comments

Comments
 (0)