You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Lexical graph component - code copied
* User nex LexicalGraphBuilder component in entity_relation_extractor.py
* Add tests for LexicalGraphBuilder
* Update documentation and CHANGELOG.md
* Create LexicalGraphConfig model
* Deprecate 'create_lexical_graph' parameter in ERExtractor - add e2e tests
* Fix imports in example - remove constants file (imported only from one location)
* Fix example
* Ruffify
* Ruff
* Reorder constant definition to match the config below
* There is no need to deprecate things at this stage - to be discussed
* Fix e2e test
* Fix links in doc
* Renaming
* Add optional lexical graph config parameter for KG writer
* Fix examples
* Update doc
* Update changelog
* Update docs/source/user_guide_kg_builder.rst
Co-authored-by: willtai <wtaisen@gmail.com>
* Copyright header was missing
* Improve doc
* Typo
* Improve description of lexical graph
* ChatGPT-fy the doc + remove duplicates by adding links to the user guide when appropriate
---------
Co-authored-by: willtai <wtaisen@gmail.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
### Added
6
6
- Made `relations` and `potential_schema` optional in `SchemaBuilder`.
7
7
- Added a check to prevent the use of deprecated Cypher syntax for Neo4j versions 5.23.0 and above.
8
+
- Added a `LexicalGraphBuilder` component to enable the import of the lexical graph (document, chunks) without performing entity and relation extraction.
8
9
9
10
### Changed
10
11
- Vector and Hybrid retrievers used with `return_properties` now also return the node labels (`nodeLabels`) and the node's element ID (`id`).
@@ -100,7 +101,8 @@
100
101
### IMPORTANT NOTICE
101
102
- The `neo4j-genai` package is now deprecated. Users are advised to switch to the new package `neo4j-graphrag`.
102
103
### Added
103
-
- Ability to visualise pipeline with `my_pipeline.draw("pipeline.png")`
104
+
- Ability to visualise pipeline with `my_pipeline.draw("pipeline.png")`.
105
+
-`LexicalGraphBuilder` component to create the lexical graph without entity-relation extraction.
104
106
105
107
### Fixed
106
108
- Pipelines now return correct results when the same pipeline is run in parallel.
0 commit comments