From bbf717aa0e45cf7f2a59a5a493506e0eec62956a Mon Sep 17 00:00:00 2001 From: zahid-syed <zahid.s2618@gmail.com> Date: Thu, 14 Mar 2024 12:35:17 -0400 Subject: [PATCH] fix llama cpp test --- tests/unit/llms/test_llm_llamacpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/llms/test_llm_llamacpp.py b/tests/unit/llms/test_llm_llamacpp.py index bd3e8879..63d92ee8 100644 --- a/tests/unit/llms/test_llm_llamacpp.py +++ b/tests/unit/llms/test_llm_llamacpp.py @@ -23,7 +23,7 @@ class TestLlamaCppLLM: assert ( "Please install LlamaCPP to use Llama CPP llm. " "You can install it with: " - "`pip install 'semantic-router[llama-cpp-python]'`" in str(error.value) + "`pip install 'semantic-router[local]'`" in str(error.value) ) def test_llamacpp_llm_init_success(self, llamacpp_llm): -- GitLab