From 75c725612df74483a1e9dfaae4adce8425789b22 Mon Sep 17 00:00:00 2001 From: Beibin Li Date: Fri, 3 Nov 2023 10:18:34 -0700 Subject: [PATCH] Update installation note and test setup --- .github/workflows/lmm-test.yml | 9 ++++++--- website/docs/Installation.md | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) 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]" ```