Fixed a syntax error in code for "From transformers>=v4.48...."
Browse filesThe original code forgot a comma after "{"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"}"
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 |
},
|