mirror of
https://github.com/microsoft/graphrag.git
synced 2025-08-15 12:11:44 +00:00
Release v0.2.1 (#835)
This commit is contained in:
parent
bd326d2614
commit
53268406fe
70
.semversioner/0.2.1.json
Normal file
70
.semversioner/0.2.1.json
Normal 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"
|
||||||
|
}
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "minor",
|
|
||||||
"description": "Added default columns for vector store at create_pipeline_config. No change for other cases."
|
|
||||||
}
|
|
@ -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."
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "minor",
|
|
||||||
"description": "Update Prompt Tuning meta prompts with finer examples"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "add user prompt to history-tracking llm"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "update config reader to allow for zero gleans"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "use history argument in hash key computation; add history input to cache data"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "add encoding-model to entity/claim extraction config"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "update config-reader to allow for empty chunk-by arrays"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "add encoding-model to text chunking config"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "update history-tracking LLm to use 'assistant' instead of 'system' in output history."
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "Update default entity extraction and gleaning prompts to reduce hallucinations"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "Fix missing community reports and refactor community context builder"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "Fix json parsing when LLM returns faulty responses"
|
|
||||||
}
|
|
@ -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"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "Change json parsing error in the map step of global search to warning"
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "patch",
|
|
||||||
"description": "Try parsing json before even repairing"
|
|
||||||
}
|
|
19
CHANGELOG.md
19
CHANGELOG.md
@ -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
|
||||||
|
@ -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>",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user