BenjaminLiu commited on
Commit
49029c7
·
verified ·
1 Parent(s): 144bfb9

Fixed a syntax error in code for "From transformers>=v4.48...."

Browse files

The original code forgot a comma after "{"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"}"

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -109,7 +109,7 @@ messages = [
109
  {
110
  "role": "user",
111
  "content": [
112
- {"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"}
113
  {"type": "text", "text": "What is shown in this image?"},
114
  ],
115
  },
 
109
  {
110
  "role": "user",
111
  "content": [
112
+ {"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"},
113
  {"type": "text", "text": "What is shown in this image?"},
114
  ],
115
  },