From 15c7e3c18f733435be1d11370af656ff6c3afbe2 Mon Sep 17 00:00:00 2001 From: mraniki <8766259+mraniki@users.noreply.github.com> Date: Sun, 6 Aug 2023 12:58:13 +0200 Subject: [PATCH] Update test_llm_plugin.py --- tests/test_llm_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_llm_plugin.py b/tests/test_llm_plugin.py index 03b9c23dd..70833dded 100644 --- a/tests/test_llm_plugin.py +++ b/tests/test_llm_plugin.py @@ -82,6 +82,6 @@ async def test_info(plugin): @pytest.mark.asyncio async def test_llm_request(plugin): """Test llm """ - result = await plugin.get_llm_run(llm_request="tell me a story") + result = await plugin.get_llm_run(prompt="tell me a story") print(result) assert result is not None