fix sample code in bedrock-converse.adoc

Signed-off-by: jonghoon park <dev@jonghoonpark.com>
This commit is contained in:
jonghoon park
2025-02-19 18:00:06 +09:00
committed by Ilayaperumal Gopinathan
parent 8e23422dc0
commit b97531bc25

View File

@@ -110,8 +110,8 @@ var options = ToolCallingChatOptions.builder()
String response = ChatClient.create(this.chatModel)
.prompt("What is current weather in Amsterdam?")
.options()
.call(options)
.options(options)
.call()
.content();
----