Update deprecated Media constructor usage in documentation example (#2762)

Signed-off-by: jitokim <pigberger70@gmail.com>
This commit is contained in:
jito
2025-04-29 02:57:16 +09:00
committed by GitHub
parent 8f5dbc8963
commit 3b752bbb54

View File

@@ -182,7 +182,7 @@ Below is a simple code example extracted from https://github.com/spring-projects
[source,java]
----
byte[] imageData = new ClassPathResource("/multimodal.test.png").getContentAsByteArray();
var imageData = new ClassPathResource("/multimodal.test.png");
var userMessage = new UserMessage("Explain what do you see on this picture?",
List.of(new Media(MimeTypeUtils.IMAGE_PNG, this.imageData)));