diff --git a/tests/test_www_plugin.py b/tests/test_www_plugin.py index b3f4f6e5c..3b5fc7b95 100644 --- a/tests/test_www_plugin.py +++ b/tests/test_www_plugin.py @@ -79,8 +79,8 @@ async def test_info(plugin): assert result is not None -@pytest.mark.asyncio -async def test_screenshot(plugin): - """Test screenshot """ - result = await plugin.get_www_run() - assert result is not None +# @pytest.mark.asyncio +# async def test_screenshot(plugin): +# """Test screenshot """ +# result = await plugin.get_www_run() +# assert result is not None diff --git a/tt/plugins/default_plugins/llm_plugin.py b/tt/plugins/default_plugins/llm_plugin.py index 117384429..30fdb65d8 100644 --- a/tt/plugins/default_plugins/llm_plugin.py +++ b/tt/plugins/default_plugins/llm_plugin.py @@ -18,7 +18,7 @@ def __init__(self): super().__init__() self.enabled = settings.llm_enabled if self.enabled: - self.version = f"MyLLM v{version}" + self.version = "MyLLM" self.help_message = settings.llm_commands self.llm= MyLLM()