fix ChatModel docs (#2605)

Fixed deprecated getContent() to getText() in ChatModel documentation.

Signed-off-by: jongin <jonginwon1203@gmail.com>
This commit is contained in:
JongIn Won
2025-03-31 19:38:05 +09:00
committed by GitHub
parent 457a106d77
commit 1795d85fb3

View File

@@ -85,7 +85,7 @@ The interface is defined as follows:
```java
public interface Content {
String getContent();
String getText();
Map<String, Object> getMetadata();
}