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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,37 @@
2
2
3
3
## Next
4
4
5
+
## 1.2.1
6
+
7
+
### Added
8
+
- Introduced optional lexical graph configuration for `SimpleKGPipeline`, enhancing flexibility in customizing node labels and relationship types in the lexical graph.
9
+
- Introduced optional `neo4j_database` parameter for `SimpleKGPipeline`, `Neo4jChunkReader`and `Text2CypherRetriever`.
10
+
- Ability to provide description and list of properties for entities and relations in the `SimpleKGPipeline` constructor.
11
+
12
+
### Fixed
13
+
-`neo4j_database` parameter is now used for all queries in the `Neo4jWriter`.
14
+
15
+
### Changed
16
+
- Updated all examples to use `neo4j_database` parameter instead of an undocumented neo4j driver constructor.
17
+
- All `READ` queries are now routed to a reader replica (for clusters). This impacts all retrievers, the `Neo4jChunkReader` and `SinglePropertyExactMatchResolver` components.
18
+
19
+
20
+
## 1.2.0
21
+
5
22
### Added
6
23
- Made `relations` and `potential_schema` optional in `SchemaBuilder`.
7
24
- Added a check to prevent the use of deprecated Cypher syntax for Neo4j versions 5.23.0 and above.
8
25
- Added a `LexicalGraphBuilder` component to enable the import of the lexical graph (document, chunks) without performing entity and relation extraction.
26
+
- Added a `Neo4jChunkReader` component to be able to read chunk text from the database.
9
27
10
28
### Changed
11
29
- Vector and Hybrid retrievers used with `return_properties` now also return the node labels (`nodeLabels`) and the node's element ID (`id`).
12
30
-`HybridRetriever` now filters out the embedding property index in `self.vector_index_name` from the retriever result by default.
13
31
- Removed support for neo4j.AsyncDriver in the KG creation pipeline, affecting Neo4jWriter and related components.
14
32
- Updated examples and unit tests to reflect the removal of async driver support.
15
33
34
+
### Fixed
35
+
- Resolved issue with `AzureOpenAIEmbeddings` incorrectly inheriting from `OpenAIEmbeddings`, now inherits from `BaseOpenAIEmbeddings`.
0 commit comments