Skip to content

Commit

Permalink
Merge branch 'main' into kennyzhang/cosmosdb-vector-store
Browse files Browse the repository at this point in the history
  • Loading branch information
KennyZhang1 authored Jan 8, 2025
2 parents 2512b58 + 6eca5ec commit db8e3b8
Show file tree
Hide file tree
Showing 18 changed files with 80 additions and 54 deletions.
58 changes: 58 additions & 0 deletions .semversioner/1.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"changes": [
{
"description": "Make gleanings independent of encoding",
"type": "minor"
},
{
"description": "Remove DataShaper (first steps).",
"type": "minor"
},
{
"description": "Remove old pipeline runner.",
"type": "minor"
},
{
"description": "new search implemented as a new option for the api",
"type": "minor"
},
{
"description": "Fix gleanings loop check",
"type": "patch"
},
{
"description": "Implement cosmosdb storage option for cache and output",
"type": "patch"
},
{
"description": "Move extractor code to co-locate with operations.",
"type": "patch"
},
{
"description": "Remove config input models.",
"type": "patch"
},
{
"description": "Ruff update",
"type": "patch"
},
{
"description": "Simplify and streamline internal config.",
"type": "patch"
},
{
"description": "Simplify callbacks model.",
"type": "patch"
},
{
"description": "Streamline flows.",
"type": "patch"
},
{
"description": "fix instantiation of storage classes.",
"type": "patch"
}
],
"created_at": "2025-01-07T20:25:57+00:00",
"version": "1.1.0"
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20241227205339264730.json

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20250107205718575866.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Increase LOCAL_SEARCH_COMMUNITY_PROP to 15%"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 1.1.0

- minor: Make gleanings independent of encoding
- minor: Remove DataShaper (first steps).
- minor: Remove old pipeline runner.
- minor: new search implemented as a new option for the api
- patch: Fix gleanings loop check
- patch: Implement cosmosdb storage option for cache and output
- patch: Move extractor code to co-locate with operations.
- patch: Remove config input models.
- patch: Ruff update
- patch: Simplify and streamline internal config.
- patch: Simplify callbacks model.
- patch: Streamline flows.
- patch: fix instantiation of storage classes.

## 1.0.1

- patch: Fix encoding model config parsing
Expand Down
2 changes: 1 addition & 1 deletion graphrag/config/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@

# Local Search
LOCAL_SEARCH_TEXT_UNIT_PROP = 0.5
LOCAL_SEARCH_COMMUNITY_PROP = 0.1
LOCAL_SEARCH_COMMUNITY_PROP = 0.15
LOCAL_SEARCH_CONVERSATION_HISTORY_MAX_TURNS = 5
LOCAL_SEARCH_TOP_K_MAPPED_ENTITIES = 10
LOCAL_SEARCH_TOP_K_RELATIONSHIPS = 10
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 = "1.0.1"
version = "1.1.0"
description = "GraphRAG: A graph-based retrieval-augmented generation (RAG) system."
authors = [
"Alonso Guevara Fernández <[email protected]>",
Expand Down

0 comments on commit db8e3b8

Please sign in to comment.