Release v0.2.1 (#835)

This commit is contained in:
Alonso Guevara 2024-08-05 18:45:28 -06:00 committed by GitHub
parent bd326d2614
commit 53268406fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
19 changed files with 90 additions and 65 deletions

70
.semversioner/0.2.1.json Normal file
View File

@ -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"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Added default columns for vector store at create_pipeline_config. No change for other cases."
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Fixed a bug that erased the vector database, added a new parameter to specify the config file path, and updated the documentation accordingly."
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Update Prompt Tuning meta prompts with finer examples"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "add user prompt to history-tracking llm"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "update config reader to allow for zero gleans"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "use history argument in hash key computation; add history input to cache data"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "add encoding-model to entity/claim extraction config"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "update config-reader to allow for empty chunk-by arrays"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "add encoding-model to text chunking config"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "update history-tracking LLm to use 'assistant' instead of 'system' in output history."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Update default entity extraction and gleaning prompts to reduce hallucinations"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix missing community reports and refactor community context builder"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix json parsing when LLM returns faulty responses"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix Local Search breaking when loading Embeddings input. Defaulting overwrite to True as in the rest of the vector store config"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Change json parsing error in the map step of global search to warning"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Try parsing json before even repairing"
}

View File

@ -1,6 +1,25 @@
# Changelog # Changelog
Note: version releases in the 0.x.y range may introduce breaking changes. 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 ## 0.2.0
- minor: Add content-based KNN for selecting prompt tune few shot examples - minor: Add content-based KNN for selecting prompt tune few shot examples

View File

@ -1,7 +1,7 @@
[tool.poetry] [tool.poetry]
name = "graphrag" name = "graphrag"
# Maintainers: do not change the version here manually, use ./scripts/release.sh # Maintainers: do not change the version here manually, use ./scripts/release.sh
version = "0.2.0" version = "0.2.1"
description = "" description = ""
authors = [ authors = [
"Alonso Guevara Fernández <alonsog@microsoft.com>", "Alonso Guevara Fernández <alonsog@microsoft.com>",