diff --git a/libs/kuzu/langchain_kuzu/chains/graph_qa/prompts.py b/libs/kuzu/langchain_kuzu/chains/graph_qa/prompts.py index d28737f..c2e82f2 100644 --- a/libs/kuzu/langchain_kuzu/chains/graph_qa/prompts.py +++ b/libs/kuzu/langchain_kuzu/chains/graph_qa/prompts.py @@ -43,7 +43,7 @@ KUZU_EXTRA_INSTRUCTIONS = """ Instructions: Generate the Kùzu dialect of Cypher with the following rules in mind: -1. Do not omit the relationship pattern. Always use `()-[]->()` instead of `()->()`. +1. When matching on a property, use the `LOWER()` function to match the property value. 2. Do not include triple backticks ``` in your response. Return only Cypher. 3. Do not return any notes or comments in your response. \n""" diff --git a/libs/kuzu/pyproject.toml b/libs/kuzu/pyproject.toml index 9bb422d..5ca90a9 100644 --- a/libs/kuzu/pyproject.toml +++ b/libs/kuzu/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain-kuzu" -version = "0.2.0" +version = "0.3.0" description = "An integration package connecting Kùzu, an embedded graph database, and LangChain" authors = ["prrao87", "mewim"] readme = "README.md"