Skip to content

Commit

Permalink
fix spellchecker errors
Browse files Browse the repository at this point in the history
  • Loading branch information
piizei committed Feb 22, 2024
1 parent 62bb793 commit 2559af9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/community/langchain_community/graphs/gremlin_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class GremlinGraph(GraphStore):
See https://python.langchain.com/docs/security for more information.
*Implementation detais*:
*Implementation details*:
The Gremlin queries are designed to work with Azure CosmosDB limitations
"""

Expand Down Expand Up @@ -96,7 +96,7 @@ def refresh_schema(self) -> None:
",".join(vertex_schema),
"Edge labes are the following:",
",".join(edge_schema),
f"Vertexes have following properties:\n{vertex_properties}",
f"Vertices have following properties:\n{vertex_properties}",
]
)

Expand All @@ -121,7 +121,7 @@ def add_graph_documents(
doc_id = hashlib.md5(document.source.page_content.encode()).hexdigest()
doc_node = self.add_node("Document", doc_id, doc_props, node_cache)

# Import nodes to vertexes
# Import nodes to vertices
for el in document.nodes:
node = self.add_node(el)
if include_source:
Expand Down

0 comments on commit 2559af9

Please sign in to comment.