diff --git a/.github/workflows/lmm-test.yml b/.github/workflows/lmm-test.yml index 79e4990883e..97ce11bea6b 100644 --- a/.github/workflows/lmm-test.yml +++ b/.github/workflows/lmm-test.yml @@ -7,9 +7,12 @@ on: pull_request: branches: ['main', 'dev/v0.2'] paths: - - 'autogen/**' - - 'test/agentchat/**' - - 'test/agentchat/contrib/llava_agent.py' + - 'autogen/img_utils.py' + - 'autogen/agentchat/multimodal_conversable_agent.py' + - 'autogen/agentchat/contrib/llava_agent.py' + - 'test/test_img_utils.py' + - 'test/agentchat/test_lmm.py' + - 'test/agentchat/contrib/test_llava.py' - '.github/workflows/lmm-test.yml' - 'setup.py' diff --git a/website/docs/Installation.md b/website/docs/Installation.md index 69f7bbb961a..be4e2439f96 100644 --- a/website/docs/Installation.md +++ b/website/docs/Installation.md @@ -114,5 +114,5 @@ Example notebooks: We support both GPT4-V and LLaVA now. See [this notebook](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_lmm_llava.ipynb) for an example of our LLaVA agent. ```bash -pip install "pyautogen[lmm]<0.2" +pip install "pyautogen[lmm]" ```