From 9177955a4ffef65646a2b519415daacd3551fea5 Mon Sep 17 00:00:00 2001 From: ai-modelscope Date: Wed, 25 Jun 2025 00:24:26 +0800 Subject: [PATCH] Fixed a Closing Quote Typo (#3) - Fixed a Closing Quote Typo (5d8e9cf89f5a2f09d2299d0a9eba4b66c1a41666) Co-authored-by: Praveen Kumar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 630977c..0856493 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,7 @@ messages = [ "role": "user", "content": [ {"type": "image", "image": image_path} for image_path in image_paths - ] + [{"type": "text", "text": ""What kind of cat is this? Answer with one word."}], + ] + [{"type": "text", "text": "What kind of cat is this? Answer with one word."}], }, ] text = processor.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")