docs : correct typo from "o" to "on" in vertexai-gemini-chat.adoc

This commit is contained in:
Sujin Kim
2024-10-16 08:13:40 +09:00
committed by Christian Tzolov
parent 94dc1a6d42
commit 1d6bcbcedf

View File

@@ -138,7 +138,7 @@ Below is a simple code example extracted from https://github.com/spring-projects
----
byte[] data = new ClassPathResource("/vertex-test.png").getContentAsByteArray();
var userMessage = new UserMessage("Explain what do you see o this picture?",
var userMessage = new UserMessage("Explain what do you see on this picture?",
List.of(new Media(MimeTypeUtils.IMAGE_PNG, data)));
ChatResponse response = chatModel.call(new Prompt(List.of(userMessage)));