Skip to content

Commit

Permalink
Spelling mistake fixed for condition of setting node_properties (#1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaustubh-darekar authored Jan 14, 2025
1 parent 8049c3d commit 1247a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async def get_graph_document_list(
if "diffbot_api_key" in dir(llm):
llm_transformer = llm
else:
if "get_name" in dir(llm) and llm.get_name() != "ChatOenAI" or llm.get_name() != "ChatVertexAI" or llm.get_name() != "AzureChatOpenAI":
if "get_name" in dir(llm) and llm.get_name() != "ChatOpenAI" or llm.get_name() != "ChatVertexAI" or llm.get_name() != "AzureChatOpenAI":
node_properties = False
relationship_properties = False
else:
Expand Down

0 comments on commit 1247a21

Please sign in to comment.