Changes related to typo mistake in chat client documentation (#980)

Resolves https://github.com/spring-projects/spring-ai/issues/966
This commit is contained in:
ASHWIN KRISHNA K
2024-07-02 00:23:19 +05:30
committed by GitHub
parent 9e5eff18fb
commit a22e62d1fa

View File

@@ -115,7 +115,7 @@ There is also an overloaded `entity` method with the signature `entity(Parameter
List<ActorFilms> actorFilms = chatClient.prompt()
.user("Generate the filmography of 5 movies for Tom Hanks and Bill Murray.")
.call()
.entity(new ParameterizedTypeReference<List<ActorsFilms>>() {
.entity(new ParameterizedTypeReference<List<ActorFilms>>() {
});
----