diff --git a/newrelic/config.py b/newrelic/config.py index 8e10218f9..4448a23b1 100644 --- a/newrelic/config.py +++ b/newrelic/config.py @@ -2582,6 +2582,12 @@ def _process_module_builtin_defaults(): "instrument_langchain_vectorstore_similarity_search", ) + _process_module_definition( + "langchain_community.vectorstores.vlite", + "newrelic.hooks.mlmodel_langchain", + "instrument_langchain_vectorstore_similarity_search", + ) + _process_module_definition( "langchain_community.vectorstores.weaviate", "newrelic.hooks.mlmodel_langchain", diff --git a/newrelic/hooks/mlmodel_langchain.py b/newrelic/hooks/mlmodel_langchain.py index 0a24c5eea..d234b4d3d 100644 --- a/newrelic/hooks/mlmodel_langchain.py +++ b/newrelic/hooks/mlmodel_langchain.py @@ -111,6 +111,7 @@ "langchain_community.vectorstores.vearch": "Vearch", "langchain_community.vectorstores.vectara": "Vectara", "langchain_community.vectorstores.vespa": "VespaStore", + "langchain_community.vectorstores.vlite": "VLite", "langchain_community.vectorstores.weaviate": "Weaviate", "langchain_community.vectorstores.xata": "XataVectorStore", "langchain_community.vectorstores.yellowbrick": "Yellowbrick",