@@ -40,7 +40,7 @@ refer to `this example <https://github.com/neo4j/neo4j-genai-python/blob/main/ex
40
40
Knowledge Graph Builder Components
41
41
**********************************
42
42
43
- Below is a list of the different components available in this package, and how to use them.
43
+ Below is a list of the different components available in this package and how to use them.
44
44
45
45
Each of these components can be run individually:
46
46
@@ -95,7 +95,7 @@ To implement your own loader, use the `DataLoader` interface:
95
95
Document Splitter
96
96
=================
97
97
98
- Document splitters, as the name indicate, are splitting documents into smaller chunks
98
+ Document splitters, as the name indicate, split documents into smaller chunks
99
99
that can be processed within the LLM token limits. Wrappers for LangChain and LlamaIndex
100
100
text splitters are included in this package:
101
101
@@ -159,7 +159,7 @@ Example usage:
159
159
os.environ[" OPENAI_API_KEY" ] = " sk-..."
160
160
161
161
162
- If OpenAI is not an option, see :ref: `embedders ` to learn how to use sentence-transformer or create your own embedder.
162
+ If OpenAI is not an option, see :ref: `embedders ` to learn how to use sentence-transformers or create your own embedder.
163
163
164
164
The embeddings are added to each chunk metadata, and will be saved as a Chunk node property in the graph if
165
165
`create_lexical_graph ` is enabled in the `EntityRelationExtractor ` (keep reading).
0 commit comments