diff --git a/docs/en/multi_modal/xcomposer2d5.md b/docs/en/multi_modal/xcomposer2d5.md index 91b088f08f..81903c128e 100644 --- a/docs/en/multi_modal/xcomposer2d5.md +++ b/docs/en/multi_modal/xcomposer2d5.md @@ -29,7 +29,7 @@ from lmdeploy.vl.constants import IMAGE_TOKEN pipe = pipeline('internlm/internlm-xcomposer2d5-7b') image = load_image('https://raw.githubusercontent.com/open-mmlab/mmdeploy/main/tests/data/tiger.jpeg') -response = pipe((f'describe this image {IMAGE_TOKEN}', image)) +response = pipe((f'describe this image', image)) print(response) ``` diff --git a/docs/zh_cn/multi_modal/xcomposer2d5.md b/docs/zh_cn/multi_modal/xcomposer2d5.md index e01734cfdc..551ac5f026 100644 --- a/docs/zh_cn/multi_modal/xcomposer2d5.md +++ b/docs/zh_cn/multi_modal/xcomposer2d5.md @@ -29,7 +29,7 @@ from lmdeploy.vl.constants import IMAGE_TOKEN pipe = pipeline('internlm/internlm-xcomposer2d5-7b') image = load_image('https://raw.githubusercontent.com/open-mmlab/mmdeploy/main/tests/data/tiger.jpeg') -response = pipe((f'describe this image {IMAGE_TOKEN}', image)) +response = pipe((f'describe this image', image)) print(response) ```