Skip to content

Commit

Permalink
Release v0.2.1 (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlonsoGuevara authored Aug 6, 2024
1 parent bd326d2 commit 5326840
Show file tree
Hide file tree
Showing 19 changed files with 90 additions and 65 deletions.
70 changes: 70 additions & 0 deletions .semversioner/0.2.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"changes": [
{
"description": "Added default columns for vector store at create_pipeline_config. No change for other cases.",
"type": "patch"
},
{
"description": "Change json parsing error in the map step of global search to warning",
"type": "patch"
},
{
"description": "Fix Local Search breaking when loading Embeddings input. Defaulting overwrite to True as in the rest of the vector store config",
"type": "patch"
},
{
"description": "Fix json parsing when LLM returns faulty responses",
"type": "patch"
},
{
"description": "Fix missing community reports and refactor community context builder",
"type": "patch"
},
{
"description": "Fixed a bug that erased the vector database, added a new parameter to specify the config file path, and updated the documentation accordingly.",
"type": "patch"
},
{
"description": "Try parsing json before even repairing",
"type": "patch"
},
{
"description": "Update Prompt Tuning meta prompts with finer examples",
"type": "patch"
},
{
"description": "Update default entity extraction and gleaning prompts to reduce hallucinations",
"type": "patch"
},
{
"description": "add encoding-model to entity/claim extraction config",
"type": "patch"
},
{
"description": "add encoding-model to text chunking config",
"type": "patch"
},
{
"description": "add user prompt to history-tracking llm",
"type": "patch"
},
{
"description": "update config reader to allow for zero gleans",
"type": "patch"
},
{
"description": "update config-reader to allow for empty chunk-by arrays",
"type": "patch"
},
{
"description": "update history-tracking LLm to use 'assistant' instead of 'system' in output history.",
"type": "patch"
},
{
"description": "use history argument in hash key computation; add history input to cache data",
"type": "patch"
}
],
"created_at": "2024-08-06T00:25:52+00:00",
"version": "0.2.1"
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20240729192605044649.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20240729193644620548.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20240801001005275591.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240726142042913643.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240726143138162263.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240726154054702667.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240726181256417715.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240726200425411495.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240726205654788488.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240729213924743880.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240730182018844333.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240730235138482202.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240802002107383210.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240805202258383139.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240805211407192658.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240805235645470141.json

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 0.2.1

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

## 0.2.0

- minor: Add content-based KNN for selecting prompt tune few shot examples
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
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.2.0"
version = "0.2.1"
description = ""
authors = [
"Alonso Guevara Fernández <[email protected]>",
Expand Down

0 comments on commit 5326840

Please sign in to comment.