Skip to content

Commit 7124d62

Browse files
Spelling mistake fixed for condition of setting node_properties (#1004)
1 parent 9190169 commit 7124d62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ async def get_graph_document_list(
168168
if "diffbot_api_key" in dir(llm):
169169
llm_transformer = llm
170170
else:
171-
if "get_name" in dir(llm) and llm.get_name() != "ChatOenAI" or llm.get_name() != "ChatVertexAI" or llm.get_name() != "AzureChatOpenAI":
171+
if "get_name" in dir(llm) and llm.get_name() != "ChatOpenAI" or llm.get_name() != "ChatVertexAI" or llm.get_name() != "AzureChatOpenAI":
172172
node_properties = False
173173
relationship_properties = False
174174
else:

0 commit comments

Comments
 (0)